ETH Price: $2,793.47 (+4.56%)

Transaction Decoder

Block:
20832405 at Sep-26-2024 04:30:11 AM +UTC
Transaction Fee:
0.000774103977691302 ETH $2.16
Gas Used:
46,373 Gas / 16.692988974 Gwei

Emitted Events:

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

Account State Difference:

  Address   Before After State Difference Code
0x16514F11...8159DC511
0.028047382987561958 Eth
Nonce: 3
0.027273279009870656 Eth
Nonce: 4
0.000774103977691302
(beaverbuild)
9.53197172496588344 Eth9.53224996296588344 Eth0.000278238
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