Transaction Hash:
Block:
22548034 at May-23-2025 08:45:47 PM +UTC
Transaction Fee:
0.000147527279937488 ETH
$0.37
Gas Used:
46,541 Gas / 3.169834768 Gwei
Emitted Events:
289 |
ROBOT.Approval( owner=[Sender] 0xb2d50099a8b9af8f3efcef00c7b8c2a93036d08a, spender=0x00000047...1EE0b1A34, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 5.999355001496460427 Eth | 5.999387091330122214 Eth | 0.000032089833661787 | |
0xb2D50099...93036d08A |
0.132089343659949454 Eth
Nonce: 473
|
0.131941816380011966 Eth
Nonce: 474
| 0.000147527279937488 | ||
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);