Transaction Hash:
Block:
19965349 at May-28-2024 02:21:59 AM +UTC
Transaction Fee:
0.002133924641021825 ETH
$10.08
Gas Used:
192,965 Gas / 11.058609805 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 11.998503213806360963 Eth | 11.998522124376360963 Eth | 0.00001891057 | |
0x4a2c0fCc...822e7D15F |
0.089110598364724841 Eth
Nonce: 9
|
0.086976673723703016 Eth
Nonce: 10
| 0.002133924641021825 |
Execution Trace
ETH 0.0001
UniversalRouter.execute( commands=0x0B08, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFrzEHpAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFrzEHpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAS/9YsYyd5/fhjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAADXioi9VBzErfYxW995f5Lo5bx7tQ==], deadline=2576980377 )
- ETH 0.0001
WETH9.CALL( )
-
WETH9.transfer( dst=0x1bD35fD5aD017819354fCF7B672fe3363D43EFC1, wad=100000000000000 ) => ( True )
-
0xd78a88bd541cc4adf6315bdf797f92e8e5bc7bb5.70a08231( )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x1bD35fD5aD017819354fCF7B672fe3363D43EFC1 ) => ( 1260934841003701597 )
UniswapV2Pair.swap( amount0Out=0, amount1Out=62754478029465638787094, to=0x4a2c0fCc62e09D2B69948671e9a6Ed2822e7D15F, data=0x )
-
0xd78a88bd541cc4adf6315bdf797f92e8e5bc7bb5.a9059cbb( )
-
WETH9.balanceOf( 0x1bD35fD5aD017819354fCF7B672fe3363D43EFC1 ) => ( 1260934841003701597 )
-
0xd78a88bd541cc4adf6315bdf797f92e8e5bc7bb5.70a08231( )
-
-
0xd78a88bd541cc4adf6315bdf797f92e8e5bc7bb5.70a08231( )
execute[UniversalRouter (ln:16)]
execute[UniversalRouter (ln:21)]
execute[UniversalRouter (ln:21)]
File 1 of 3: UniversalRouter
File 2 of 3: WETH9
File 3 of 3: UniswapV2Pair
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 3: 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 3: 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);