ETH Price: $2,519.66 (-0.36%)

Transaction Decoder

Block:
20832461 at Sep-26-2024 04:41:23 AM +UTC
Transaction Fee:
0.000607025022495615 ETH $1.53
Gas Used:
46,577 Gas / 13.032720495 Gwei

Emitted Events:

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

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
10.727345705236071857 Eth10.727443113010453533 Eth0.000097407774381676
0x90d84586...834e2De33
0.242910061366186999 Eth
Nonce: 2070
0.242303036343691384 Eth
Nonce: 2071
0.000607025022495615
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