ETH Price: $2,514.40 (-5.13%)

Transaction Decoder

Block:
21390695 at Dec-13-2024 02:46:47 AM +UTC
Transaction Fee:
0.000373228240886282 ETH $0.94
Gas Used:
26,459 Gas / 14.105908798 Gwei

Emitted Events:

362 SUZUME.Approval( owner=[Sender] 0xee68218e0fe52ec4dabf0e3bbb317e067c6781da, spender=0x00000000...43aC78BA3, value=1619349924066670000000000000 )

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
9.49737401667510326 Eth9.497402990906088187 Eth0.000028974230984927
0xee68218e...67c6781da
0.008265262112076133 Eth
Nonce: 243
0.007892033871189851 Eth
Nonce: 244
0.000373228240886282

Execution Trace

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