ETH Price: $2,741.43 (-1.01%)
Gas: 2.62 Gwei

Transaction Decoder

Block:
20832305 at Sep-26-2024 04:10:11 AM +UTC
Transaction Fee:
0.00064272485260189 ETH $1.76
Gas Used:
46,577 Gas / 13.79918957 Gwei

Emitted Events:

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

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
9.958456276425044927 Eth9.958529762452321395 Eth0.000073486027276468
0xAC89e96c...65210a646
0.031183631808900194 Eth
Nonce: 836
0.030540906956298304 Eth
Nonce: 837
0.00064272485260189
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