ETH Price: $2,570.23 (-2.31%)

Transaction Decoder

Block:
22385327 at May-01-2025 12:06:47 AM +UTC
Transaction Fee:
0.00011422959640839 ETH $0.29
Gas Used:
46,323 Gas / 2.46593693 Gwei

Emitted Events:

85 SUZUME.Approval( owner=[Sender] 0xde1fec43e9e68ed924911e7b72e99837a6e7bec4, spender=0x00000000...43aC78BA3, value=640000000000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x0B452278...e373e7E43
(Titan Builder)
62.603783375625622319 Eth62.603876021625622319 Eth0.000092646
0xde1Fec43...7a6e7bec4
0.001376233965399427 Eth
Nonce: 81
0.001262004368991037 Eth
Nonce: 82
0.00011422959640839

Execution Trace

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