ETH Price: $2,514.00 (-9.01%)

Transaction Decoder

Block:
21620646 at Jan-14-2025 05:31:23 AM +UTC
Transaction Fee:
0.000128277952812009 ETH $0.32
Gas Used:
46,431 Gas / 2.762765239 Gwei

Emitted Events:

339 SUZUME.Approval( owner=[Sender] 0x330c2a62af136f26e27f859d20d827d7d51c41fa, spender=0x40aA958d...a374bcD7f, value=947652702516582562568001278 )

Account State Difference:

  Address   Before After State Difference Code
0x0B452278...e373e7E43
0x330C2A62...7D51C41Fa
0.002198389255218678 Eth
Nonce: 50
0.002070111302406669 Eth
Nonce: 51
0.000128277952812009
(beaverbuild)
17.769346824918599926 Eth17.769370040418599926 Eth0.0000232155

Execution Trace

SUZUME.approve( spender=0x40aA958dd87FC8305b97f2BA922CDdCa374bcD7f, amount=947652702516582562568001278 ) => ( True )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// www.medium.com/@0xsuzume
// https://twitter.com/s_shitakiri
// SPDX-License-Identifier: MIT
pragma 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/2691
return 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);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX