ETH Price: $2,815.22 (+1.47%)

Transaction Decoder

Block:
21988573 at Mar-06-2025 02:53:59 PM +UTC
Transaction Fee:
0.000095865412233889 ETH $0.27
Gas Used:
66,089 Gas / 1.450550201 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
5.190694895368871499 Eth5.190700116399871499 Eth0.000005221031
0x4d9665C4...8245F2b92
0.013311428700512475 Eth
Nonce: 6
0.013215563288278586 Eth
Nonce: 7
0.000095865412233889
0xcC9d0F21...5A3caF637

Execution Trace

ROBOT.transfer( recipient=0x4cBc43239120Ed12D8EcD41B04BDAD1e1F71a82D, amount=3425550899118743849124 ) => ( 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
/*
This will be one for the history books
https://x.com/elonmusk/status/1839124331709751451?s=46
https://t.me/Robot_eth
https://x.com/robot_token
*/
// SPDX-License-Identifier: MIT
pragma solidity 0.8.23;
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);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX