Transaction Hash:
Block:
20980725 at Oct-16-2024 09:11:23 PM +UTC
Transaction Fee:
0.004076664765446151 ETH
$14.45
Gas Used:
234,567 Gas / 17.379532353 Gwei
Emitted Events:
199 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=50000000000000000 )
|
200 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=50000000000000000 )
|
201 |
Roger.Transfer( from=UniswapV2Pair, to=[Receiver] UniversalRouter, value=69008419894693 )
|
202 |
UniswapV2Pair.Sync( reserve0=41657293062936320, reserve1=30142212839480611956 )
|
203 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=50000000000000000, amount0Out=69008419894693, amount1Out=0, to=[Receiver] UniversalRouter )
|
204 |
Roger.Transfer( from=[Receiver] UniversalRouter, to=FeeCollector, value=172521049736 )
|
205 |
Roger.Transfer( from=[Receiver] UniversalRouter, to=[Sender] 0x7d1e77766ee72262b4536cb80f0d271b09b6e6b0, value=68835898844957 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 6.900901465695638035 Eth | 6.901159119826885123 Eth | 0.000257654131247088 | |
0x7d1E7776...B09b6e6b0 |
0.163933322382646294 Eth
Nonce: 25
|
0.109856657617200143 Eth
Nonce: 26
| 0.054076664765446151 | ||
0x8b85CDDa...9AFA05DD4 | |||||
0xA3deb569...77dCcc228 | |||||
0xC02aaA39...83C756Cc2 | 2,936,469.507400482790508412 Eth | 2,936,469.557400482790508412 Eth | 0.05 |
Execution Trace
ETH 0.05
UniversalRouter.execute( commands=0x0B080604, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsaK8LsUAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAsaK8LsUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAACLhc3az71ms5C/O0P/S9f5r6Bd1A==, AAAAAAAAAAAAAAAAi4XN2s+9ZrOQvztD/0vX+a+gXdQAAAAAAAAAAAAAAAAAAAD+4ToQOhDVk7muBrPgXy5+HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZ, AAAAAAAAAAAAAAAAi4XN2s+9ZrOQvztD/0vX+a+gXdQAAAAAAAAAAAAAAAB9Hnd2buciYrRTbLgPDScbCbbmsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPkteqkV7], deadline=1729111791533 )
- ETH 0.05
WETH9.CALL( )
-
WETH9.transfer( dst=0xA3deb569fD48c6b8c601D3087393b7977dCcc228, wad=50000000000000000 ) => ( True )
-
Roger.balanceOf( account=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0xA3deb569fD48c6b8c601D3087393b7977dCcc228 ) => ( 30142212839480611956 )
UniswapV2Pair.swap( amount0Out=69008419894693, amount1Out=0, to=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD, data=0x )
-
Roger.balanceOf( account=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 69008419894693 )
-
Roger.balanceOf( account=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 69008419894693 )
-
Roger.transfer( recipient=0x000000fee13a103A10D593b9AE06b3e05F2E7E1c, amount=172521049736 ) => ( True )
-
Roger.balanceOf( account=0x3fC91A3afd70395Cd496C647d5a6CC9D4B2b7FAD ) => ( 68835898844957 )
-
Roger.transfer( recipient=0x7d1E77766EE72262b4536cb80F0D271B09b6e6b0, amount=68835898844957 ) => ( True )
execute[UniversalRouter (ln:16)]
execute[UniversalRouter (ln:21)]
execute[UniversalRouter (ln:21)]
File 1 of 5: UniversalRouter
File 2 of 5: WETH9
File 3 of 5: UniswapV2Pair
File 4 of 5: Roger
File 5 of 5: FeeCollector
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 5: 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 5: 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 5: Roger
12345678910111213141516/*Telegram: https://t.me/rogercoinercTwitter: https://x.com/rogercoinethWebsite: https://rogercoineth.com*/// SPDX-License-Identifier: Unlicensedpragma solidity ^0.8.9;abstract contract Context {function _msgSender() internal view virtual returns (address) {
File 5 of 5: FeeCollector
12345678910111213141516// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity ^0.8.0;import {Owned} from "solmate/auth/Owned.sol";import {ERC20} from "solmate/tokens/ERC20.sol";import {SafeTransferLib} from "solmate/utils/SafeTransferLib.sol";import {IFeeCollector} from "./interfaces/IFeeCollector.sol";import {IPermit2} from "./external/IPermit2.sol";/// @notice The collector of protocol fees that will be used to swap and send to a fee recipient address.contract FeeCollector is Owned, IFeeCollector {using SafeTransferLib for ERC20;address public universalRouter;ERC20 public immutable feeToken;IPermit2 public immutable permit2;uint256 public constant MAX_APPROVAL_AMOUNT = type(uint256).max;uint160 public constant MAX_PERMIT2_APPROVAL_AMOUNT = type(uint160).max;uint48 public constant MAX_PERMIT2_DEADLINE = type(uint48).max;