Transaction Hash:
Block:
22646596 at Jun-06-2025 03:59:59 PM +UTC
Transaction Fee:
0.000154726711328735 ETH
$0.53
Gas Used:
34,489 Gas / 4.486262615 Gwei
Emitted Events:
681 |
AdventureGold.Transfer( from=[Sender] 0x21a31ee1afc51d94c2efccaa2092ad1028285549, to=0xB3AE318126ee6cb604Fb72BC4A366F499B1Ad343, value=5436570000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x21a31Ee1...028285549 | (Binance 15) |
37,316.070491879309875487 Eth
Nonce: 12133081
|
37,316.070337152598546752 Eth
Nonce: 12133082
| 0.000154726711328735 | |
0x32353A6C...9A2489A20 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 14.899832747616341036 Eth | 14.899901725616341036 Eth | 0.000068978 |
Execution Trace
AdventureGold.transfer( recipient=0xB3AE318126ee6cb604Fb72BC4A366F499B1Ad343, amount=5436570000000000000000 ) => ( True )
transfer[ERC20 (ln:315)]
_transfer[ERC20 (ln:321)]
_beforeTokenTransfer[ERC20 (ln:465)]
Transfer[ERC20 (ln:477)]
_afterTokenTransfer[ERC20 (ln:479)]
_msgSender[ERC20 (ln:321)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma 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 {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}}/*** @dev Contract module which provides a basic access control mechanism, where