Transaction Hash:
Block:
22308190 at Apr-20-2025 05:42:11 AM +UTC
Transaction Fee:
0.000010180155 ETH
$0.03
Gas Used:
34,509 Gas / 0.295 Gwei
Emitted Events:
652 |
SimpleToken.Transfer( from=[Sender] 0x31d35dc17db0f35ff2b85183d0005f415d491033, to=0x41Fc802E01Bcf85D91E5708B42d41C2EAf01f375, value=5502940529999999999 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x31d35Dc1...15D491033 |
0.0001 Eth
Nonce: 0
|
0.000089819845 Eth
Nonce: 1
| 0.000010180155 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 20.630981883455243349 Eth | 20.630981953214634705 Eth | 0.000000069759391356 | |
0x4d224452...b5D594381 |
Execution Trace
SimpleToken.transfer( recipient=0x41Fc802E01Bcf85D91E5708B42d41C2EAf01f375, amount=5502940529999999999 ) => ( True )
transfer[ERC20 (ln:229)]
_transfer[ERC20 (ln:230)]
_beforeTokenTransfer[ERC20 (ln:335)]
Transfer[ERC20 (ln:342)]
_afterTokenTransfer[ERC20 (ln:343)]
_msgSender[ERC20 (ln:230)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.10;import "@openzeppelin/contracts/token/ERC20/ERC20.sol";contract SimpleToken is ERC20 {constructor(string memory name,string memory symbol,uint256 totalSupply_) ERC20(name, symbol) {_mint(msg.sender, totalSupply_);}}// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragma solidity ^0.8.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 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 {