ETH Price: $2,616.79 (+3.94%)

Transaction Decoder

Block:
22511032 at May-18-2025 04:22:35 PM +UTC
Transaction Fee:
0.000079549802322636 ETH $0.21
Gas Used:
46,577 Gas / 1.707920268 Gwei

Emitted Events:

755 ROBOT.Approval( owner=[Sender] 0x1834e198df074fcf4349897c1e38532b0a730a3c, spender=0x40aA958d...a374bcD7f, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
0x1834E198...B0A730A3c
0.007255204789468651 Eth
Nonce: 144
0.007175654987146015 Eth
Nonce: 145
0.000079549802322636
(beaverbuild)
11.386587863663755444 Eth11.386611152163755444 Eth0.0000232885
0xcC9d0F21...5A3caF637

Execution Trace

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