Transaction Hash:
Block:
22511032 at May-18-2025 04:22:35 PM +UTC
Transaction Fee:
0.000079549802322636 ETH
$0.21
Gas Used:
46,577 Gas / 1.707920268 Gwei
Emitted Events:
755 |
ROBOT.Approval( owner=[Sender] 0x1834e198df074fcf4349897c1e38532b0a730a3c, spender=0x40aA958d...a374bcD7f, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1834E198...B0A730A3c |
0.007255204789468651 Eth
Nonce: 144
|
0.007175654987146015 Eth
Nonce: 145
| 0.000079549802322636 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 11.386587863663755444 Eth | 11.386611152163755444 Eth | 0.0000232885 | |
0xcC9d0F21...5A3caF637 |
Execution Trace
ROBOT.approve( spender=0x40aA958dd87FC8305b97f2BA922CDdCa374bcD7f, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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);