Transaction Hash:
Block:
22538309 at May-22-2025 12:07:11 PM +UTC
Transaction Fee:
0.001095831536367798 ETH
$4.72
Gas Used:
159,849 Gas / 6.855416902 Gwei
Emitted Events:
67 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=212500000000000000 )
|
68 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=[Receiver] UniversalRouter, wad=212500000000000000 )
|
69 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=212500000000000000 )
|
70 |
BERRY.Transfer( from=UniswapV2Pair, to=[Sender] 0x58f42893212f5ccb41dce89791924c4ee86f5b8f, value=253023666597618 )
|
71 |
UniswapV2Pair.Sync( reserve0=39808404280837438, reserve1=33544986898789934139 )
|
72 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=212500000000000000, amount0Out=253023666597618, amount1Out=0, to=[Sender] 0x58f42893212f5ccb41dce89791924c4ee86f5b8f )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 12.118132800527695433 Eth | 12.118826987110556756 Eth | 0.000694186582861323 | |
0x58f42893...EE86f5b8F |
1.795250534654365133 Eth
Nonce: 235
|
1.581654703117997335 Eth
Nonce: 236
| 0.213595831536367798 | ||
0x8192D525...1Bf247cd9 | |||||
0x962C8A85...Ea0B46Da1 | |||||
0xC02aaA39...83C756Cc2 | 2,806,489.361322365088578365 Eth | 2,806,489.573822365088578365 Eth | 0.2125 |
Execution Trace
ETH 0.2125
UniversalRouter.execute( commands=0x0B080C, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8vOfxsVAAA==, AAAAAAAAAAAAAAAAWPQokyEvXMtB3OiXkZJMTuhvW48AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC8vOfxsVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAoRYqCYDcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAACWLIqF9QBRkmYmn3ff+6TOoLRtoQ==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==], deadline=1747915742 )
- ETH 0.2125
WETH9.CALL( )
-
WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=212500000000000000 ) => ( True )
-
WETH9.transfer( dst=0x8192D5254284a14d85a58dEF7cef5B91Bf247cd9, wad=212500000000000000 ) => ( True )
-
BERRY.balanceOf( account=0x58f42893212F5Ccb41dcE89791924C4EE86f5b8F ) => ( 558250946247461 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x8192D5254284a14d85a58dEF7cef5B91Bf247cd9 ) => ( 33544986898789934139 )
UniswapV2Pair.swap( amount0Out=253023666597618, amount1Out=0, to=0x58f42893212F5Ccb41dcE89791924C4EE86f5b8F, data=0x )
-
BERRY.balanceOf( account=0x58f42893212F5Ccb41dcE89791924C4EE86f5b8F ) => ( 811274612845079 )
-
WETH9.balanceOf( 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B ) => ( 0 )
File 1 of 4: UniversalRouter
File 2 of 4: WETH9
File 3 of 4: UniswapV2Pair
File 4 of 4: BERRY
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: BERRY
12345678910111213141516// SPDX-License-Identifier: MIT/*Socials:WEB: https://berrycoineth.vipTG: https://t.me/StrawberryInBloomX: https://x.com/berrycoineth*/pragma solidity 0.8.23;abstract contract Context {