Transaction Hash:
Block:
20832124 at Sep-26-2024 03:33:47 AM +UTC
Transaction Fee:
0.000834204678404195 ETH
$3.87
Gas Used:
46,565 Gas / 17.914843303 Gwei
Emitted Events:
199 |
ROBOT.Approval( owner=[Sender] 0xe2b0780d4e3a40adce033149e5af8c2a32b620c0, spender=0x3A10dC1A...ff11a981F, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 7.643903953554904941 Eth | 7.644136778554904941 Eth | 0.000232825 | |
0xcC9d0F21...5A3caF637 | |||||
0xe2B0780D...A32B620c0 |
0.245105766512352728 Eth
Nonce: 102
|
0.244271561833948533 Eth
Nonce: 103
| 0.000834204678404195 |
Execution Trace
ROBOT.approve( spender=0x3A10dC1A145dA500d5Fba38b9EC49C8ff11a981F, 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);