ETH Price: $2,466.19 (-4.31%)

Transaction Decoder

Block:
21687942 at Jan-23-2025 02:59:11 PM +UTC
Transaction Fee:
0.00180474817949412 ETH $4.45
Gas Used:
59,028 Gas / 30.57444229 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
10.54771490817303144 Eth10.54782598706343144 Eth0.0001110788904
0x812Ba41e...f6fA853Ee
0x83Ea4eED...1fF084dCd
0.00823327806646052 Eth
Nonce: 171
0.0064285298869664 Eth
Nonce: 172
0.00180474817949412

Execution Trace

Neiro.transfer( recipient=0xF1be041023554351F7A5fE686bE90917A5B05B57, amount=201502083379844 ) => ( 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
/*
https://x.com/kabosumama/status/1817304824431657271
https://t.me/neiro_portal
*/
pragma solidity 0.8.25;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
}
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);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX