ETH Price: $2,518.34 (-8.46%)

Transaction Decoder

Block:
22335378 at Apr-24-2025 12:45:35 AM +UTC
Transaction Fee:
0.000029608923318078 ETH $0.07
Gas Used:
46,671 Gas / 0.634418018 Gwei

Emitted Events:

356 SUZUME.Approval( owner=[Sender] 0xe12e483ef9ddf913dab84f829db3bb0da684ec89, spender=0xBcb4E4BC...8dA5D46E4, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x0B452278...e373e7E43
(beaverbuild)
9.981448573765492222 Eth9.981453418246655134 Eth0.000004844481162912
0xe12e483e...Da684Ec89
0.01 Eth
Nonce: 32
0.009970391076681922 Eth
Nonce: 33
0.000029608923318078

Execution Trace

SUZUME.approve( spender=0xBcb4E4BCc41aB1494A3eb3456ed4Edb8dA5D46E4, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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