Transaction Hash:
Block:
21009095 at Oct-20-2024 08:11:35 PM +UTC
Transaction Fee:
0.000243672810409998 ETH
$0.62
Gas Used:
29,781 Gas / 8.182156758 Gwei
Emitted Events:
796 |
SushiToken.Transfer( from=[Sender] 0x06fd4ba7973a0d39a91734bbc35bc2bcaa99e3b0, to=0x28C6c06298d514Db089934071355E5743bf21d60, value=116377670000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x06FD4bA7...Caa99E3B0 | (Binance Dep: 0x06FD4bA7973a0d39a91734bbc35bC2bCaa99E3B0) |
0.031092346509976935 Eth
Nonce: 15791
|
0.030848673699566937 Eth
Nonce: 15792
| 0.000243672810409998 | |
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 5.036443612378551888 Eth | 5.036453310692833908 Eth | 0.00000969831428202 | |
0x6B359506...F09C90fE2 |
Execution Trace
SushiToken.transfer( recipient=0x28C6c06298d514Db089934071355E5743bf21d60, amount=116377670000000000000000 ) => ( True )
transfer[ERC20 (ln:531)]
_transfer[ERC20 (ln:532)]
_beforeTokenTransfer[ERC20 (ln:627)]
sub[ERC20 (ln:629)]
add[ERC20 (ln:630)]
Transfer[ERC20 (ln:631)]
_msgSender[ERC20 (ln:532)]
1234567891011121314151617181920212223242526// File: @openzeppelin/contracts/GSN/Context.solpragma solidity ^0.6.0;/** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with GSN meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address payable) {return msg.sender;}function _msgData() internal view virtual returns (bytes memory) {this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691return msg.data;}}