ETH Price: $4,631.73 (-3.04%)

Transaction Decoder

Block:
22001079 at Mar-08-2025 08:51:23 AM +UTC
Transaction Fee:
0.000072267597072194 ETH $0.33
Gas Used:
46,289 Gas / 1.561226146 Gwei

Emitted Events:

298 ROBOT.Approval( owner=[Sender] 0x0fe28525cf72a81d24cde3458e5790b1c4847e87, spender=0x11111112...0f8842A65, value=1927593492797285340400 )

Account State Difference:

  Address   Before After State Difference Code
0x0fe28525...1C4847E87
0.000331049369431096 Eth
Nonce: 17
0.000258781772358902 Eth
Nonce: 18
0.000072267597072194
(beaverbuild)
13.452099237970683995 Eth13.452145526970683995 Eth0.000046289
0xcC9d0F21...5A3caF637

Execution Trace

ROBOT.approve( spender=0x111111125421cA6dc452d289314280a0f8842A65, amount=1927593492797285340400 ) => ( 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