ETH Price: $4,311.16 (+1.48%)

Transaction Decoder

Block:
21419365 at Dec-17-2024 02:48:11 AM +UTC
Transaction Fee:
0.000683617478287581 ETH $2.95
Gas Used:
46,577 Gas / 14.677147053 Gwei

Emitted Events:

211 ROBOT.Approval( owner=[Sender] 0xca4c299475141f4d516cbfef0e55feeb3c65dcc2, spender=0x77EDAE6A...476e8f83f, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
11.220779524966740255 Eth11.221026587422535946 Eth0.000247062455795691
0xca4C2994...B3c65DcC2
1.741152071987849132 Eth
Nonce: 1671
1.740468454509561551 Eth
Nonce: 1672
0.000683617478287581
0xcC9d0F21...5A3caF637

Execution Trace

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