ETH Price: $2,735.75 (-2.79%)

Transaction Decoder

Block:
22442363 at May-09-2025 12:28:59 AM +UTC
Transaction Fee:
0.000154992022854614 ETH $0.42
Gas Used:
46,541 Gas / 3.330225454 Gwei

Emitted Events:

99 ROBOT.Approval( owner=[Sender] 0x8974e845184da04b5ef55ae1533de36808ce3a25, spender=0x00000047...1EE0b1A34, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
3.324842932113054894 Eth3.324888053466928105 Eth0.000045121353873211
0x8974e845...808Ce3a25
0.015677968314724072 Eth
Nonce: 269
0.015522976291869458 Eth
Nonce: 270
0.000154992022854614
0xcC9d0F21...5A3caF637

Execution Trace

ROBOT.approve( spender=0x00000047bB99ea4D791bb749D970DE71EE0b1A34, 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