ETH Price: $2,570.02 (+1.49%)
Gas: 1.22 Gwei

Transaction Decoder

Block:
22409093 at May-04-2025 08:04:23 AM +UTC
Transaction Fee:
0.000039198411125211 ETH $0.10
Gas Used:
46,241 Gas / 0.847698171 Gwei

Emitted Events:

132 ROBOT.Approval( owner=[Sender] 0x0808e5786e037c934ac3baef409fcdd66418240b, spender=0x00000000...43aC78BA3, value=1006468519969871288560 )

Account State Difference:

  Address   Before After State Difference Code
0x0808e578...66418240b
0.000241666780756764 Eth
Nonce: 23
0.000202468369631553 Eth
Nonce: 24
0.000039198411125211
(Titan Builder)
126.777278425620565045 Eth126.777301546120565045 Eth0.0000231205
0xcC9d0F21...5A3caF637

Execution Trace

ROBOT.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=1006468519969871288560 ) => ( 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