Transaction Hash:
Block:
20599556 at Aug-24-2024 04:09:23 PM +UTC
Transaction Fee:
0.000631658427292557 ETH
$2.37
Gas Used:
218,269 Gas / 2.893944753 Gwei
Emitted Events:
103 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=100000000000000 )
|
104 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=100000000000000 )
|
105 |
RocketManERC20.Transfer( from=UniswapV2Pair, to=RocketManERC20, value=13644279565327 )
|
106 |
RocketManERC20.Transfer( from=UniswapV2Pair, to=[Sender] 0x2cd89badcb8c65a76c66379f62d3cdfd2b353937, value=66616188466010 )
|
107 |
UniswapV2Pair.Sync( reserve0=805019739531968663, reserve1=1000100000000000000 )
|
108 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=100000000000000, amount0Out=80260468031337, amount1Out=0, to=[Sender] 0x2cd89badcb8c65a76c66379f62d3cdfd2b353937 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2CD89BAd...d2B353937 |
0.119376557387952936 Eth
Nonce: 45
|
0.118644898960660379 Eth
Nonce: 46
| 0.000731658427292557 | ||
0x338196F3...AaB739041 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 6.985565913437701987 Eth | 6.985750296321255679 Eth | 0.000184382883553692 | |
0xbf54E2a9...D37F1d5Ab | |||||
0xC02aaA39...83C756Cc2 | 2,934,900.066865688106120627 Eth | 2,934,900.066965688106120627 Eth | 0.0001 |
Execution Trace
ETH 0.0001
UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFrzEHpAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFrzEHpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAAAzgZbzPrhCI1KIRYc7n9q6q3OQQQ==], deadline=2576980377 )
- ETH 0.0001
WETH9.CALL( )
-
WETH9.transfer( dst=0xbf54E2a9bbc03dE87A9A61daEeecb50D37F1d5Ab, wad=100000000000000 ) => ( True )
-
RocketManERC20.balanceOf( account=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937 ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0xbf54E2a9bbc03dE87A9A61daEeecb50D37F1d5Ab ) => ( 1000100000000000000 )
UniswapV2Pair.swap( amount0Out=80260468031337, amount1Out=0, to=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937, data=0x )
-
RocketManERC20.transfer( recipient=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937, amount=80260468031337 ) => ( True )
-
RocketManERC20.balanceOf( account=0xbf54E2a9bbc03dE87A9A61daEeecb50D37F1d5Ab ) => ( 805019739531968663 )
-
WETH9.balanceOf( 0xbf54E2a9bbc03dE87A9A61daEeecb50D37F1d5Ab ) => ( 1000100000000000000 )
-
-
RocketManERC20.balanceOf( account=0x2CD89BAdcB8C65a76c66379F62d3CDFd2B353937 ) => ( 66616188466010 )
execute[UniversalRouter (ln:16)]
execute[UniversalRouter (ln:21)]
execute[UniversalRouter (ln:21)]
File 1 of 4: UniversalRouter
File 2 of 4: WETH9
File 3 of 4: UniswapV2Pair
File 4 of 4: RocketManERC20
12345678910111213141516// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.17;// Command implementationsimport {Dispatcher} from './base/Dispatcher.sol';import {RewardsCollector} from './base/RewardsCollector.sol';import {RouterParameters, RouterImmutables} from './base/RouterImmutables.sol';import {Commands} from './libraries/Commands.sol';import {IUniversalRouter} from './interfaces/IUniversalRouter.sol';contract UniversalRouter is RouterImmutables, IUniversalRouter, Dispatcher, RewardsCollector {modifier checkDeadline(uint256 deadline) {if (block.timestamp > deadline) revert TransactionDeadlinePassed();_;}constructor(RouterParameters memory params) RouterImmutables(params) {}/// @inheritdoc IUniversalRouterfunction execute(bytes calldata commands, bytes[] calldata inputs, uint256 deadline)
File 2 of 4: WETH9
12345678910111213141516// Copyright (C) 2015, 2016, 2017 Dapphub// This program is free software: you can redistribute it and/or modify// it under the terms of the GNU General Public License as published by// the Free Software Foundation, either version 3 of the License, or// (at your option) any later version.// This program is distributed in the hope that it will be useful,// but WITHOUT ANY WARRANTY; without even the implied warranty of// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the// GNU General Public License for more details.// You should have received a copy of the GNU General Public License// along with this program. If not, see <http://www.gnu.org/licenses/>.pragma solidity ^0.4.18;
File 3 of 4: UniswapV2Pair
12345678910111213141516// File: contracts/interfaces/IUniswapV2Pair.solpragma solidity >=0.5.0;interface IUniswapV2Pair {event Approval(address indexed owner, address indexed spender, uint value);event Transfer(address indexed from, address indexed to, uint value);function name() external pure returns (string memory);function symbol() external pure returns (string memory);function decimals() external pure returns (uint8);function totalSupply() external view returns (uint);function balanceOf(address owner) external view returns (uint);function allowance(address owner, address spender) external view returns (uint);function approve(address spender, uint value) external returns (bool);
File 4 of 4: RocketManERC20
12345678910111213141516/**// SPDX-License-Identifier: UNLICENSEhttps://t.me/RocketManERC20https://x.com/elonmusk/status/1827368987761451103https://x.com/elonmusk/status/1827364030266081517*/pragma solidity 0.8.23;abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}