ETH Price: $2,551.00 (-7.22%)

Transaction Decoder

Block:
18334764 at Oct-12-2023 01:54:11 PM +UTC
Transaction Fee:
0.000790685301516627 ETH $2.02
Gas Used:
47,707 Gas / 16.573779561 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x0D59869F...5A7b0778d
0.001672023201669906 Eth
Nonce: 8
0.000881337900153279 Eth
Nonce: 9
0.000790685301516627
1.733883757128970892 Eth1.733888480121970892 Eth0.000004722993
0xB94AcDF8...5c87b57B4

Execution Trace

MONATOKEN.transfer( recipient=0x05A2623E9960DFDc668c4a97E2183587112d3335, amount=2213142257565908203741443756 ) => ( 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
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
interface IERC20 {
function totalSupply() external view returns (uint256);
function balanceOf(address account) external view returns (uint256);
function transfer(address recipient, uint256 amount) external returns (bool);
function allowance(address owner, address spender) external view returns (uint256);
function approve(address spender, uint256 amount) external returns (bool);
function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
interface IERC20Metadata is IERC20 {
function name() external view returns (string memory);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX