ETH Price: $2,574.06 (+1.69%)
Gas: 0.32 Gwei

Transaction Decoder

Block:
21606503 at Jan-12-2025 06:05:35 AM +UTC
Transaction Fee:
0.000126032111018352 ETH $0.32
Gas Used:
46,431 Gas / 2.714395792 Gwei

Emitted Events:

340 SUZUME.Approval( owner=[Sender] 0x4193c01ecedb58b6a273845c8f6ad8067625d9bf, spender=0xf2614A23...3f1eb2c55, value=1000172641219525366252463372 )

Account State Difference:

  Address   Before After State Difference Code
0x0B452278...e373e7E43
0x4193c01e...67625D9Bf
0.001268713432163607 Eth
Nonce: 339
0.001142681321145255 Eth
Nonce: 340
0.000126032111018352
(Titan Builder)
12.47855827192194776 Eth12.47858148742194776 Eth0.0000232155

Execution Trace

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