ETH Price: $2,549.85 (-3.47%)

Transaction Decoder

Block:
21723269 at Jan-28-2025 01:17:35 PM +UTC
Transaction Fee:
0.000169708790363112 ETH $0.43
Gas Used:
46,599 Gas / 3.641897688 Gwei

Emitted Events:

308 SUZUME.Approval( owner=[Sender] 0x066bff26c4887e322c89c3f6c8832906dd9f03ba, spender=0x00000000...072C22734, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x066bFF26...6dd9F03ba
0.0131981352421508 Eth
Nonce: 6
0.013028426451787688 Eth
Nonce: 7
0.000169708790363112
0x0B452278...e373e7E43
(beaverbuild)
12.119767894201382802 Eth12.119768085257282802 Eth0.0000001910559

Execution Trace

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