ETH Price: $2,538.02 (-0.28%)

Transaction Decoder

Block:
20832000 at Sep-26-2024 03:08:47 AM +UTC
Transaction Fee:
0.000899947063738212 ETH $2.28
Gas Used:
49,794 Gas / 18.073403698 Gwei

Emitted Events:

322 ROBOT.Transfer( from=[Sender] 0xcd6b0dbfa2c0d59e1bac9138fcabecbc0e9b2775, to=[Receiver] ROBOT, value=420690000000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
6.848705388992428739 Eth6.848791786467419315 Eth0.000086397474990576
0xcC9d0F21...5A3caF637
0xCd6b0DBf...c0E9b2775
1.472501621293637705 Eth
Nonce: 1
1.471601674229899493 Eth
Nonce: 2
0.000899947063738212

Execution Trace

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