ETH Price: $2,488.93 (-1.01%)
Gas: 0.67 Gwei

Transaction Decoder

Block:
21705861 at Jan-26-2025 02:59:35 AM +UTC
Transaction Fee:
0.00044356046151725 ETH $1.10
Gas Used:
121,058 Gas / 3.664032625 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0B452278...e373e7E43
(Titan Builder)
8.971860758754142882 Eth8.971921287754142882 Eth0.000060529
0x843f21C2...B7Fa90cDB
0.010383351133360127 Eth
Nonce: 5
0.009939790671842877 Eth
Nonce: 6
0.00044356046151725

Execution Trace

SUZUME.transfer( recipient=0xAAe3e95E5F29bbD091Abbf4f27d490d932809201, amount=1000000000000000000000000000 ) => ( True )
transfer[SUZUME (ln:461)]
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