Transaction Hash:
Block:
22546828 at May-23-2025 04:42:47 PM +UTC
Transaction Fee:
0.000449006309455026 ETH
$1.14
Gas Used:
157,034 Gas / 2.859293589 Gwei
Emitted Events:
106 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=8000000000000000 )
|
107 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=[Receiver] UniversalRouter, wad=8000000000000000 )
|
108 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=8000000000000000 )
|
109 |
Token.Transfer( from=UniswapV2Pair, to=[Sender] 0xfb3052850a444ca9cf09926ba91ce5c30b26cf0e, value=67949299793994 )
|
110 |
UniswapV2Pair.Sync( reserve0=10898799277704555378, reserve1=92781116489088523 )
|
111 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=8000000000000000, amount1In=0, amount0Out=0, amount1Out=67949299793994, to=[Sender] 0xfb3052850a444ca9cf09926ba91ce5c30b26cf0e )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2b949Bf7...78dbCDa05 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 13.465848887853809592 Eth | 13.466005921853809592 Eth | 0.000157034 | |
0xC02aaA39...83C756Cc2 | 2,819,428.254082338973834384 Eth | 2,819,428.262082338973834384 Eth | 0.008 | ||
0xf931C441...691076F82 | |||||
0xfb305285...30b26CF0E |
0.054038414409528493 Eth
Nonce: 59
|
0.045589408100073467 Eth
Nonce: 60
| 0.008449006309455026 |
Execution Trace
ETH 0.008
UniversalRouter.execute( commands=0x0B080C, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHGv1JjQAAA==, AAAAAAAAAAAAAAAA+zBShQpETKnPCZJrqRzlwwsmzw4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHGv1JjQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMXCLGgA7AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAAD5McRBcWZOVGYR8gvNazmmkQdvgg==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==], deadline=1748018678 )
- ETH 0.008
WETH9.CALL( )
-
WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=8000000000000000 ) => ( True )
-
WETH9.transfer( dst=0x2b949Bf7F34d9069E60AcB42177cbe478dbCDa05, wad=8000000000000000 ) => ( True )
-
Token.balanceOf( account=0xfb3052850a444cA9cf09926BA91cE5c30b26CF0E ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x2b949Bf7F34d9069E60AcB42177cbe478dbCDa05 ) => ( 10898799277704555378 )
UniswapV2Pair.swap( amount0Out=0, amount1Out=67949299793994, to=0xfb3052850a444cA9cf09926BA91cE5c30b26CF0E, data=0x )
-
Token.balanceOf( account=0xfb3052850a444cA9cf09926BA91cE5c30b26CF0E ) => ( 67949299793994 )
-
WETH9.balanceOf( 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B ) => ( 0 )
File 1 of 4: UniversalRouter
File 2 of 4: WETH9
File 3 of 4: UniswapV2Pair
File 4 of 4: Token
12345678910111213141516// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.17;import {Dispatcher} from './base/Dispatcher.sol';import {RewardsCollector} from './base/RewardsCollector.sol';import {RouterParameters, RouterImmutables} from './base/RouterImmutables.sol';import {Constants} from './libraries/Constants.sol';import {Commands} from './libraries/Commands.sol';import {IUniversalRouter} from './interfaces/IUniversalRouter.sol';import {ReentrancyLock} from './base/ReentrancyLock.sol';contract UniversalRouter is RouterImmutables, IUniversalRouter, Dispatcher, RewardsCollector, ReentrancyLock {modifier checkDeadline(uint256 deadline) {if (block.timestamp > deadline) revert TransactionDeadlinePassed();_;}constructor(RouterParameters memory params) RouterImmutables(params) {}/// @inheritdoc IUniversalRouter
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: Token
12345678910111213141516// SPDX-License-Identifier: MIT/*Name: Orchagent AISymbol: ORCHAThe Decentralized MCP Sandbox For Building Orchestrated Agents.web: https://orchagent.aiapp: https://app.orchagent.aidocs: https://docs.orchagent.aix: https://x.com/OrchagentAItg: https://t.me/OrchagentAI*/pragma solidity ^0.8.19;