ETH Price: $2,527.65 (-0.49%)

Transaction Decoder

Block:
22548034 at May-23-2025 08:45:47 PM +UTC
Transaction Fee:
0.000147527279937488 ETH $0.37
Gas Used:
46,541 Gas / 3.169834768 Gwei

Emitted Events:

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

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
5.999355001496460427 Eth5.999387091330122214 Eth0.000032089833661787
0xb2D50099...93036d08A
0.132089343659949454 Eth
Nonce: 473
0.131941816380011966 Eth
Nonce: 474
0.000147527279937488
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