Transaction Hash:
Block:
21723269 at Jan-28-2025 01:17:35 PM +UTC
Transaction Fee:
0.000169708790363112 ETH
$0.43
Gas Used:
46,599 Gas / 3.641897688 Gwei
Emitted Events:
308 |
SUZUME.Approval( owner=[Sender] 0x066bff26c4887e322c89c3f6c8832906dd9f03ba, spender=0x00000000...072C22734, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x066bFF26...6dd9F03ba |
0.0131981352421508 Eth
Nonce: 6
|
0.013028426451787688 Eth
Nonce: 7
| 0.000169708790363112 | ||
0x0B452278...e373e7E43 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 12.119767894201382802 Eth | 12.119768085257282802 Eth | 0.0000001910559 |
Execution Trace
SUZUME.approve( spender=0x0000000000001fF3684f28c67538d4D072C22734, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[SUZUME (ln:466)]
_approve[SUZUME (ln:467)]
Approval[SUZUME (ln:652)]
_msgSender[SUZUME (ln:467)]
1234567891011121314151617181920212223242526// www.medium.com/@0xsuzume// https://twitter.com/s_shitakiri// SPDX-License-Identifier: MITpragma solidity >=0.6.0 <0.9.0;abstract contract Context {function _msgSender() internal view returns (address payable) {return payable(msg.sender);}function _msgData() internal view returns (bytes memory) {this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691return msg.data;}}/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20Upgradeable {/*** @dev Returns the amount of tokens in existence.*/function totalSupply() external view returns (uint256);