Transaction Hash:
Block:
20939233 at Oct-11-2024 01:55:23 AM +UTC
Transaction Fee:
0.000829093942756808 ETH
$3.95
Gas Used:
21,884 Gas / 37.885850062 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x5f1F8A23...ec1555555 |
0.03070487513951674 Eth
Nonce: 5
|
0.029875781196759932 Eth
Nonce: 6
| 0.000829093942756808 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 13.844663989371569813 Eth | 13.844892649492424005 Eth | 0.000228660120854192 |
Execution Trace
ROBOT.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
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);