Transaction Hash:
Block:
21196208 at Nov-15-2024 10:55:11 PM +UTC
Transaction Fee:
0.001766701763963952 ETH
$4.78
Gas Used:
67,979 Gas / 25.988934288 Gwei
Emitted Events:
43 |
GameFinity.Transfer( from=[Sender] 0xdfc9a7514282dd12eadd479a97cc14d742a7d41d, to=0xb60f91Eccab88139867bd4af89a86E7FfB2beD2A, value=376598070440820398732 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 5.370212690728661697 Eth | 5.370661352128661697 Eth | 0.0004486614 | ||
0xDfC9a751...742a7d41D |
0.349671508391799798 Eth
Nonce: 220
|
0.347904806627835846 Eth
Nonce: 221
| 0.001766701763963952 | ||
0xf90924B4...85C01B9B7 |
Execution Trace
GameFinity.transfer( recipient=0xb60f91Eccab88139867bd4af89a86E7FfB2beD2A, amount=376598070440820398732 ) => ( True )
transfer[ERC20 (ln:318)]
_transfer[ERC20 (ln:319)]
_beforeTokenTransfer[ERC20 (ln:434)]
Transfer[ERC20 (ln:443)]
_afterTokenTransfer[ERC20 (ln:445)]
_msgSender[ERC20 (ln:319)]
1234567891011121314151617181920212223242526/**GameFinityWebsite: https://gamefinity.tech/Twitter: https://x.com/gamefinity_ethTelegram: https://t.me/GamefinityETH**/// SPDX-License-Identifier: MITpragma solidity 0.8.20;pragma experimental ABIEncoderV2;/*** @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;}