ETH Price: $2,532.42 (-1.85%)

Transaction Decoder

Block:
22451878 at May-10-2025 08:43:59 AM +UTC
Transaction Fee:
0.000225923438603538 ETH $0.57
Gas Used:
46,371 Gas / 4.872084678 Gwei

Emitted Events:

567 SUZUME.Approval( owner=[Sender] 0x281fe69a496fba401d85aa1374d7e401660bb674, spender=0x6A000F20...040001068, value=52370972378521821773023891 )

Account State Difference:

  Address   Before After State Difference Code
0x0B452278...e373e7E43
0x281fe69a...1660Bb674
0.024413879618499192 Eth
Nonce: 410
0.024187956179895654 Eth
Nonce: 411
0.000225923438603538
(beaverbuild)
7.968299500314056715 Eth7.968299535185048715 Eth0.000000034870992

Execution Trace

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