Transaction Hash:
Block:
22644844 at Jun-06-2025 10:04:47 AM +UTC
Transaction Fee:
0.000157103227477988 ETH
$0.48
Gas Used:
51,601 Gas / 3.044577188 Gwei
Emitted Events:
55 |
AdventureGold.Transfer( from=[Sender] 0x33a12790ffa9826557f910259f4fac5077cfc5bf, to=0x41fbBa5CB38D22B2D80606406944cEdd7c97f6F9, value=46592004344950000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x32353A6C...9A2489A20 | |||||
0x33a12790...077cFc5Bf |
3.535182873560656757 Eth
Nonce: 2325
|
3.535025770333178769 Eth
Nonce: 2326
| 0.000157103227477988 | ||
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 94.750451166566878599 Eth | 94.750554368566878599 Eth | 0.000103202 |
Execution Trace
AdventureGold.transfer( recipient=0x41fbBa5CB38D22B2D80606406944cEdd7c97f6F9, amount=46592004344950000000000 ) => ( 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