ETH Price: $2,531.74 (-7.27%)

Transaction Decoder

Block:
20832299 at Sep-26-2024 04:08:59 AM +UTC
Transaction Fee:
0.00081842876185737 ETH $2.07
Gas Used:
46,373 Gas / 17.64882069 Gwei

Emitted Events:

200 ROBOT.Approval( owner=[Sender] 0xc802cacccef0b5e822cf88ff113c09cc8ba20920, spender=0x00000000...43aC78BA3, value=1461501637330902918203684832716283019655932542975 )

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
8.915330286374981014 Eth8.915608524374981014 Eth0.000278238
0xC802CaCc...c8ba20920
0.070008648531648572 Eth
Nonce: 15
0.069190219769791202 Eth
Nonce: 16
0.00081842876185737
0xcC9d0F21...5A3caF637

Execution Trace

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