Transaction Hash:
Block:
22561609 at May-25-2025 06:25:23 PM +UTC
Transaction Fee:
0.000136993 ETH
$0.35
Gas Used:
136,993 Gas / 1 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 21.495375489480025448 Eth | 21.495429743739230366 Eth | 0.000054254259204918 | |
0xfb0d2627...352F175ef |
6.46275964512124113 Eth
Nonce: 10469
|
6.46262265212124113 Eth
Nonce: 10470
| 0.000136993 |
Execution Trace
ETH 0.781979293847285046
SwapRouter02.multicall( deadline=1748199278, data=[BORarwAAAAAAAAAAAAAAAMAqqjmyI/6NCg5cTyfq2Qg8dWzCAAAAAAAAAAAAAAAAVSlvafQOptIOR4UzwVprCLZU51gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALuAAAAAAAAAAAAAAAAPsNJidyabXST+gsaPYHcXNS8XXvAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACtomBk96bTYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAINJlXg+A/tgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA] )
ETH 0.781979293847285046
SwapRouter02.exactInputSingle( params=[{name:tokenIn, type:address, order:1, indexed:false, value:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, valueString:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2}, {name:tokenOut, type:address, order:2, indexed:false, value:0x55296f69f40Ea6d20E478533C15A6B08B654E758, valueString:0x55296f69f40Ea6d20E478533C15A6B08B654E758}, {name:fee, type:uint24, order:3, indexed:false, value:3000, valueString:3000}, {name:recipient, type:address, order:4, indexed:false, value:0xfb0d26277269B5d24fE82c68f607717352F175ef, valueString:0xfb0d26277269B5d24fE82c68f607717352F175ef}, {name:amountIn, type:uint256, order:5, indexed:false, value:781979293847285046, valueString:781979293847285046}, {name:amountOutMinimum, type:uint256, order:6, indexed:false, value:154996848000000000000000, valueString:154996848000000000000000}, {name:sqrtPriceLimitX96, type:uint160, order:7, indexed:false, value:0, valueString:0}] ) => ( amountOut=3963877391197344453575983046348115674221700746820753546331534351508065746944 )
Uniswap V3: XYO.128acb08( )
-
TokenERC20.transfer( _to=0xfb0d26277269B5d24fE82c68f607717352F175ef, _value=154659862390153125140260 )
-
WETH9.balanceOf( 0xE331DE28cd81B768C19A366b0e4e4675c45eC2dA ) => ( 230443555387306179527 )
SwapRouter02.uniswapV3SwapCallback( amount0Delta=-154659862390153125140260, amount1Delta=781979293847285046, _data=0x00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040000000000000000000000000FB0D26277269B5D24FE82C68F607717352F175EF000000000000000000000000000000000000000000000000000000000000002BC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2000BB855296F69F40EA6D20E478533C15A6B08B654E758000000000000000000000000000000000000000000 )
-
WETH9.balanceOf( 0xE331DE28cd81B768C19A366b0e4e4675c45eC2dA ) => ( 231225534681153464573 )
-
multicall[MulticallExtended (ln:508)]
multicall[MulticallExtended (ln:515)]
multicall[MulticallExtended (ln:515)]
File 1 of 3: SwapRouter02
File 2 of 3: TokenERC20
File 3 of 3: WETH9
12345678910111213141516// SPDX-License-Identifier: GPL-2.0-or-laterpragma solidity =0.7.6;pragma abicoder v2;import '@uniswap/v3-periphery/contracts/base/SelfPermit.sol';import '@uniswap/v3-periphery/contracts/base/PeripheryImmutableState.sol';import './interfaces/ISwapRouter02.sol';import './V2SwapRouter.sol';import './V3SwapRouter.sol';import './base/ApproveAndCall.sol';import './base/MulticallExtended.sol';/// @title Uniswap V2 and V3 Swap Routercontract SwapRouter02 is ISwapRouter02, V2SwapRouter, V3SwapRouter, ApproveAndCall, MulticallExtended, SelfPermit {constructor(address _factoryV2,address factoryV3,address _positionManager,
File 2 of 3: TokenERC20
12345678910111213141516pragma solidity ^0.4.18;interface tokenRecipient { function receiveApproval(address _from, uint256 _value, address _token, bytes _extraData) public; }contract TokenERC20 {// Public variables of the tokenstring public name;string public symbol;uint8 public decimals = 18;// 18 decimals is the strongly suggested default, avoid changing ituint256 public totalSupply;// This creates an array with all balancesmapping (address => uint256) public balanceOf;mapping (address => mapping (address => uint256)) public allowance;
File 3 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;