ETH Price: $2,513.09 (-9.04%)

Transaction Decoder

Block:
21340119 at Dec-06-2024 01:17:35 AM +UTC
Transaction Fee:
0.001277320362757425 ETH $3.21
Gas Used:
48,965 Gas / 26.086395645 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x127d3BCC...67b4DC9C5
0.184214828187714746 Eth
Nonce: 6
0.182937507824957321 Eth
Nonce: 7
0.001277320362757425
(beaverbuild)
18.187309857263686186 Eth18.187596584572553556 Eth0.00028672730886737
0xcC9d0F21...5A3caF637

Execution Trace

ROBOT.transfer( recipient=0xFFB9926310b291E17D7Df846cdED66cDA2C68228, amount=894021355645527916544 ) => ( 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