Transaction Hash:
Block:
22535122 at May-22-2025 01:25:35 AM +UTC
Transaction Fee:
0.0008454459069673 ETH
$2.20
Gas Used:
173,510 Gas / 4.87260623 Gwei
Emitted Events:
93 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=100000000000000000 )
|
94 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=[Receiver] UniversalRouter, wad=100000000000000000 )
|
95 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=100000000000000000 )
|
96 |
BERRY.Transfer( from=UniswapV2Pair, to=[Sender] 0xf59f76c73470805d81c23e853552af729f566a37, value=83031452497314 )
|
97 |
UniswapV2Pair.Sync( reserve0=33045953513300669, reserve1=39779922079920890503 )
|
98 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=100000000000000000, amount0Out=83031452497314, amount1Out=0, to=[Sender] 0xf59f76c73470805d81c23e853552af729f566a37 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 7.048040591926998237 Eth | 7.048608302251741087 Eth | 0.00056771032474285 | |
0x8192D525...1Bf247cd9 | |||||
0x962C8A85...Ea0B46Da1 | |||||
0xC02aaA39...83C756Cc2 | 2,695,675.011618543652376659 Eth | 2,695,675.111618543652376659 Eth | 0.1 | ||
0xf59f76c7...29f566A37 |
1.911455966064330514 Eth
Nonce: 556
|
1.810610520157363214 Eth
Nonce: 557
| 0.1008454459069673 |
Execution Trace
ETH 0.1
UniversalRouter.execute( commands=0x0B080C, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABY0V4XYoAAA==, AAAAAAAAAAAAAAAA9Z92xzRwgF2Bwj6FNVKvcp9WajcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABY0V4XYoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARjsCA91mAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAACWLIqF9QBRkmYmn3ff+6TOoLRtoQ==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==], deadline=1747877245 )
- ETH 0.1
WETH9.CALL( )
-
WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=100000000000000000 ) => ( True )
-
WETH9.transfer( dst=0x8192D5254284a14d85a58dEF7cef5B91Bf247cd9, wad=100000000000000000 ) => ( True )
-
BERRY.balanceOf( account=0xf59f76c73470805D81c23e853552AF729f566A37 ) => ( 0 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x8192D5254284a14d85a58dEF7cef5B91Bf247cd9 ) => ( 39779922079920890503 )
UniswapV2Pair.swap( amount0Out=83031452497314, amount1Out=0, to=0xf59f76c73470805D81c23e853552AF729f566A37, data=0x )
-
BERRY.balanceOf( account=0xf59f76c73470805D81c23e853552AF729f566A37 ) => ( 83031452497314 )
-
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 {