Transaction Hash:
Block:
20832299 at Sep-26-2024 04:08:59 AM +UTC
Transaction Fee:
0.00081842876185737 ETH
$2.07
Gas Used:
46,373 Gas / 17.64882069 Gwei
Emitted Events:
200 |
ROBOT.Approval( owner=[Sender] 0xc802cacccef0b5e822cf88ff113c09cc8ba20920, spender=0x00000000...43aC78BA3, value=1461501637330902918203684832716283019655932542975 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 8.915330286374981014 Eth | 8.915608524374981014 Eth | 0.000278238 | |
0xC802CaCc...c8ba20920 |
0.070008648531648572 Eth
Nonce: 15
|
0.069190219769791202 Eth
Nonce: 16
| 0.00081842876185737 | ||
0xcC9d0F21...5A3caF637 |
Execution Trace
ROBOT.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=1461501637330902918203684832716283019655932542975 ) => ( 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);