ETH Price: $2,639.00 (-4.36%)

Transaction Decoder

Block:
21349488 at Dec-07-2024 08:41:11 AM +UTC
Transaction Fee:
0.000730337361205511 ETH $1.93
Gas Used:
48,977 Gas / 14.911843543 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
8.729550928084760628 Eth8.729731729382419672 Eth0.000180801297659044
0xcC9d0F21...5A3caF637
0xf587498a...7c4405B90
0.069553021126478026 Eth
Nonce: 82
0.068822683765272515 Eth
Nonce: 83
0.000730337361205511

Execution Trace

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