ETH Price: $2,648.84 (+5.18%)

Transaction Decoder

Block:
22267708 at Apr-14-2025 02:05:11 PM +UTC
Transaction Fee:
0.000179050522210556 ETH $0.47
Gas Used:
46,577 Gas / 3.844183228 Gwei

Emitted Events:

297 ROBOT.Approval( owner=[Sender] 0xa60b32eefdc8622fe312911f837fcaf39adf6e80, spender=0x4313C378...03096b27f, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
7.224077446022758855 Eth7.224118680305970225 Eth0.00004123428321137
0xa60b32eE...39adf6E80
0.113471211293607442 Eth
Nonce: 2743
0.113292160771396886 Eth
Nonce: 2744
0.000179050522210556
0xcC9d0F21...5A3caF637

Execution Trace

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