Transaction Hash:
Block:
21909255 at Feb-23-2025 01:14:47 PM +UTC
Transaction Fee:
0.000032018707911554 ETH
$0.08
Gas Used:
24,293 Gas / 1.318021978 Gwei
Emitted Events:
153 |
ROBOT.Approval( owner=[Sender] 0xb1d1bfb0ca6aa5a7efa5d138683ae54809e9434a, spender=0x40aA958d...a374bcD7f, value=0 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 11.319828056685955707 Eth | 11.319840203185955707 Eth | 0.0000121465 | |
0xb1D1BfB0...809E9434a |
0.01093653505045856 Eth
Nonce: 251
|
0.010904516342547006 Eth
Nonce: 252
| 0.000032018707911554 | ||
0xcC9d0F21...5A3caF637 |
Execution Trace
ROBOT.approve( spender=0x40aA958dd87FC8305b97f2BA922CDdCa374bcD7f, amount=0 ) => ( 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);