ETH Price: $2,502.04 (-9.89%)

Transaction Decoder

Block:
22547277 at May-23-2025 06:12:59 PM +UTC
Transaction Fee:
0.00019756621376899 ETH $0.49
Gas Used:
46,577 Gas / 4.24171187 Gwei

Emitted Events:

5 ROBOT.Approval( owner=[Sender] 0x892f2abb67657a6581c53683017d94766abbbee3, spender=0x055C4865...Fdc718058, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(quasarbuilder)
22.402422894990792006 Eth22.402520694885432163 Eth0.000097799894640157
0x892F2AbB...66ABbBEE3
2.444858110532257198 Eth
Nonce: 3395
2.444660544318488208 Eth
Nonce: 3396
0.00019756621376899
0xcC9d0F21...5A3caF637

Execution Trace

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