Transaction Hash:
Block:
22442363 at May-09-2025 12:28:59 AM +UTC
Transaction Fee:
0.000154992022854614 ETH
$0.42
Gas Used:
46,541 Gas / 3.330225454 Gwei
Emitted Events:
99 |
ROBOT.Approval( owner=[Sender] 0x8974e845184da04b5ef55ae1533de36808ce3a25, spender=0x00000047...1EE0b1A34, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 3.324842932113054894 Eth | 3.324888053466928105 Eth | 0.000045121353873211 | ||
0x8974e845...808Ce3a25 |
0.015677968314724072 Eth
Nonce: 269
|
0.015522976291869458 Eth
Nonce: 270
| 0.000154992022854614 | ||
0xcC9d0F21...5A3caF637 |
Execution Trace
ROBOT.approve( spender=0x00000047bB99ea4D791bb749D970DE71EE0b1A34, 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);