Transaction Hash:
Block:
22537079 at May-22-2025 07:59:47 AM +UTC
Transaction Fee:
0.000418942035314076 ETH
$1.06
Gas Used:
157,044 Gas / 2.667672979 Gwei
Emitted Events:
196 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=7200000000000000 )
|
197 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=[Receiver] UniversalRouter, wad=7200000000000000 )
|
198 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=7200000000000000 )
|
199 |
Token.Transfer( from=UniswapV2Pair, to=[Sender] 0xfb3052850a444ca9cf09926ba91ce5c30b26cf0e, value=95516449601412 )
|
200 |
UniswapV2Pair.Sync( reserve0=8625132391381950810, reserve1=114670999795192811 )
|
201 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=7200000000000000, amount1In=0, amount0Out=0, amount1Out=95516449601412, to=[Sender] 0xfb3052850a444ca9cf09926ba91ce5c30b26cf0e )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.859890735507557089 Eth | 9.860047779507557089 Eth | 0.000157044 | |
0xC02aaA39...83C756Cc2 | 2,829,593.722521175701362621 Eth | 2,829,593.729721175701362621 Eth | 0.0072 | ||
0xc8F6Ed98...3E85BC0D9 | |||||
0xCBE06ce4...333ef2606 | |||||
0xfb305285...30b26CF0E |
0.050564740175872684 Eth
Nonce: 34
|
0.042945798140558608 Eth
Nonce: 35
| 0.007618942035314076 |
Execution Trace
ETH 0.0072
UniversalRouter.execute( commands=0x0B080C, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGZRcomIAAA==, AAAAAAAAAAAAAAAA+zBShQpETKnPCZJrqRzlwwsmzw4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGZRcomIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARX9TPSxpAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAADL4Gzk6iFQ2SUrq14QRh9zM+8mBg==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==], deadline=1747900898 )
- ETH 0.0072
WETH9.CALL( )
-
WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=7200000000000000 ) => ( True )
-
WETH9.transfer( dst=0xc8F6Ed98585b9bC8C00Fb4b7834B35F3E85BC0D9, wad=7200000000000000 ) => ( True )
-
Token.balanceOf( account=0xfb3052850a444cA9cf09926BA91cE5c30b26CF0E ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0xc8F6Ed98585b9bC8C00Fb4b7834B35F3E85BC0D9 ) => ( 8625132391381950810 )
UniswapV2Pair.swap( amount0Out=0, amount1Out=95516449601412, to=0xfb3052850a444cA9cf09926BA91cE5c30b26CF0E, data=0x )
-
Token.balanceOf( account=0xfb3052850a444cA9cf09926BA91cE5c30b26CF0E ) => ( 95516449601412 )
-
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/*https://x.com/MARAHoldings/status/1925453782973870199https://mempool.space/block/0000000000000000000011a508e48be0bbe2cf4cd3ec062cfafc19f78ea810e0?audit=falsehttps://t.me/The_Pizza_Block*/pragma solidity ^0.8.19;abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}}