Transaction Hash:
Block:
21601801 at Jan-11-2025 02:20:47 PM +UTC
Transaction Fee:
0.000179733768293934 ETH
$0.48
Gas Used:
46,611 Gas / 3.856037594 Gwei
Emitted Events:
235 |
SUZUME.Approval( owner=[Sender] 0x63492d295b9fd92656775a531da878bbba855a3f, spender=0x00000000...43aC78BA3, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0B452278...e373e7E43 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 14.482893752344270949 Eth | 14.482940363344270949 Eth | 0.000046611 | |
0x63492D29...bBa855a3f |
0.018278795044974711 Eth
Nonce: 16
|
0.018099061276680777 Eth
Nonce: 17
| 0.000179733768293934 |
Execution Trace
SUZUME.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, 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);