Transaction Hash:
Block:
21988573 at Mar-06-2025 02:53:59 PM +UTC
Transaction Fee:
0.000095865412233889 ETH
$0.27
Gas Used:
66,089 Gas / 1.450550201 Gwei
Emitted Events:
536 |
ROBOT.Transfer( from=[Sender] 0x4d9665c49ca6edfa77a41b5c115392a8245f2b92, to=0x4cBc43239120Ed12D8EcD41B04BDAD1e1F71a82D, value=3425550899118743849124 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9090aa...8e676c326
Miner
| 5.190694895368871499 Eth | 5.190700116399871499 Eth | 0.000005221031 | ||
0x4d9665C4...8245F2b92 |
0.013311428700512475 Eth
Nonce: 6
|
0.013215563288278586 Eth
Nonce: 7
| 0.000095865412233889 | ||
0xcC9d0F21...5A3caF637 |
Execution Trace
ROBOT.transfer( recipient=0x4cBc43239120Ed12D8EcD41B04BDAD1e1F71a82D, amount=3425550899118743849124 ) => ( True )
transfer[ROBOT (ln:190)]
_transfer[ROBOT (ln:191)]
owner[ROBOT (ln:222)]
owner[ROBOT (ln:222)]
div[ROBOT (ln:224)]
mul[ROBOT (ln:224)]
balanceOf[ROBOT (ln:228)]
div[ROBOT (ln:233)]
mul[ROBOT (ln:233)]
balanceOf[ROBOT (ln:236)]
swapTokensForEth[ROBOT (ln:242)]
WETH[ROBOT (ln:269)]
_approve[ROBOT (ln:270)]
Approval[ROBOT (ln:214)]
swapExactTokensForETHSupportingFeeOnTransferTokens[ROBOT (ln:271)]
min[ROBOT (ln:242)]
min[ROBOT (ln:242)]
sendETHToFee[ROBOT (ln:245)]
transfer[ROBOT (ln:287)]
add[ROBOT (ln:253)]
Transfer[ROBOT (ln:254)]
sub[ROBOT (ln:256)]
add[ROBOT (ln:257)]
sub[ROBOT (ln:257)]
Transfer[ROBOT (ln:258)]
sub[ROBOT (ln:258)]
_msgSender[ROBOT (ln:191)]
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);