ETH Price: $2,651.85 (+5.30%)

Transaction Decoder

Block:
21601801 at Jan-11-2025 02:20:47 PM +UTC
Transaction Fee:
0.000179733768293934 ETH $0.48
Gas Used:
46,611 Gas / 3.856037594 Gwei

Emitted Events:

235 SUZUME.Approval( owner=[Sender] 0x63492d295b9fd92656775a531da878bbba855a3f, spender=0x00000000...43aC78BA3, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x0B452278...e373e7E43
(Titan Builder)
14.482893752344270949 Eth14.482940363344270949 Eth0.000046611
0x63492D29...bBa855a3f
0.018278795044974711 Eth
Nonce: 16
0.018099061276680777 Eth
Nonce: 17
0.000179733768293934

Execution Trace

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