Transaction Hash:
Block:
21348106 at Dec-07-2024 04:03:23 AM +UTC
Transaction Fee:
0.000878192741075784 ETH
$2.31
Gas Used:
50,879 Gas / 17.260416696 Gwei
Emitted Events:
915 |
GameFinity.Transfer( from=[Sender] 0xb60f91eccab88139867bd4af89a86e7ffb2bed2a, to=0xFFB9926310b291E17D7Df846cdED66cDA2C68228, value=376598070440820398732 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 11.858185242724496042 Eth | 11.8584973467012062 Eth | 0.000312103976710158 | |
0xb60f91Ec...FfB2beD2A |
0.278758183612022744 Eth
Nonce: 18
|
0.27787999087094696 Eth
Nonce: 19
| 0.000878192741075784 | ||
0xf90924B4...85C01B9B7 |
Execution Trace
GameFinity.transfer( recipient=0xFFB9926310b291E17D7Df846cdED66cDA2C68228, 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;}