ETH Price: $2,548.60 (+1.54%)

Transaction Decoder

Block:
21526434 at Jan-01-2025 01:48:59 AM +UTC
Transaction Fee:
0.000260849299833596 ETH $0.66
Gas Used:
70,877 Gas / 3.680309548 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
14.579824056784003571 Eth14.579873626833750334 Eth0.000049570049746763
0xcC9d0F21...5A3caF637
0xf42d78b6...59CBfc6a3
0.023261837280645739 Eth
Nonce: 501
0.023000987980812143 Eth
Nonce: 502
0.000260849299833596

Execution Trace

ROBOT.transfer( recipient=0x10e01762637F744EcDADCa2b8C7FD1B8D65e933e, amount=6000000000000000000000 ) => ( 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