Transaction Hash:
Block:
22008583 at Mar-09-2025 10:01:35 AM +UTC
Transaction Fee:
0.000115774229169888 ETH
$0.29
Gas Used:
46,517 Gas / 2.488858464 Gwei
Emitted Events:
251 |
ROBOT.Approval( owner=[Sender] 0xe9435a520995a3eefa8f53083335c8dfdfacd561, spender=0x00000000...43aC78BA3, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 17.26826704988282349 Eth | 17.26836008388282349 Eth | 0.000093034 | |
0xcC9d0F21...5A3caF637 | |||||
0xe9435A52...fDfACd561 |
0.000851094383784377 Eth
Nonce: 0
|
0.000735320154614489 Eth
Nonce: 1
| 0.000115774229169888 |
Execution Trace
ROBOT.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, 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);