Transaction Hash:
Block:
22001079 at Mar-08-2025 08:51:23 AM +UTC
Transaction Fee:
0.000072267597072194 ETH
$0.33
Gas Used:
46,289 Gas / 1.561226146 Gwei
Emitted Events:
298 |
ROBOT.Approval( owner=[Sender] 0x0fe28525cf72a81d24cde3458e5790b1c4847e87, spender=0x11111112...0f8842A65, value=1927593492797285340400 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0fe28525...1C4847E87 |
0.000331049369431096 Eth
Nonce: 17
|
0.000258781772358902 Eth
Nonce: 18
| 0.000072267597072194 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 13.452099237970683995 Eth | 13.452145526970683995 Eth | 0.000046289 | |
0xcC9d0F21...5A3caF637 |
Execution Trace
ROBOT.approve( spender=0x111111125421cA6dc452d289314280a0f8842A65, amount=1927593492797285340400 ) => ( True )
approve[ROBOT (ln:199)]
_approve[ROBOT (ln:200)]
Approval[ROBOT (ln:214)]
_msgSender[ROBOT (ln:200)]
1234567891011121314151617181920212223242526/*This will be one for the history bookshttps://x.com/elonmusk/status/1839124331709751451?s=46https://t.me/Robot_ethhttps://x.com/robot_token*/// SPDX-License-Identifier: MITpragma 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);