Transaction Hash:
Block:
22540109 at May-22-2025 06:08:47 PM +UTC
Transaction Fee:
0.001510875201240277 ETH
$3.78
Gas Used:
138,967 Gas / 10.872186931 Gwei
Emitted Events:
163 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=24000000000000000 )
|
164 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=[Receiver] UniversalRouter, wad=24000000000000000 )
|
165 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=24000000000000000 )
|
166 |
Gorth.Transfer( from=UniswapV2Pair, to=[Sender] 0xdaeca2232cb19941ff057d672a664128d1fb5179, value=16645994621578580515572326299 )
|
167 |
UniswapV2Pair.Sync( reserve0=21682545534908800910048114968848, reserve1=31191855172002742080 )
|
168 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=0, amount1In=24000000000000000, amount0Out=16645994621578580515572326299, amount1Out=0, to=[Sender] 0xdaeca2232cb19941ff057d672a664128d1fb5179 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 11.689242753863976516 Eth | 11.689381720863976516 Eth | 0.000138967 | |
0x666Acd39...6b4B2d8AB | |||||
0xC02aaA39...83C756Cc2 | 2,822,973.181543775433671507 Eth | 2,822,973.205543775433671507 Eth | 0.024 | ||
0xdAEca223...8D1FB5179 |
0.047688047029458413 Eth
Nonce: 122
|
0.022177171828218136 Eth
Nonce: 123
| 0.025510875201240277 | ||
0xF63a8514...1Ca17aE19 |
Execution Trace
ETH 0.024
UniversalRouter.execute( commands=0x0B080C, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVUPfcpwAAA==, AAAAAAAAAAAAAAAA2uyiIyyxmUH/BX1nKmZBKNH7UXkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVUPfcpwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAK3H9dAg/WgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAABmas05D6QtW/hunELcL6b2tLLYqw==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==], deadline=1747937439 )
- ETH 0.024
WETH9.CALL( )
-
WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=24000000000000000 ) => ( True )
-
WETH9.transfer( dst=0xF63a8514F28E27EA235413B5a1Cd4a21Ca17aE19, wad=24000000000000000 ) => ( True )
-
Gorth.balanceOf( account=0xdAEca2232Cb19941Ff057D672A664128D1FB5179 ) => ( 1749382357959 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0xF63a8514F28E27EA235413B5a1Cd4a21Ca17aE19 ) => ( 31191855172002742080 )
UniswapV2Pair.swap( amount0Out=16645994621578580515572326299, amount1Out=0, to=0xdAEca2232Cb19941Ff057D672A664128D1FB5179, data=0x )
-
Gorth.transfer( recipient=0xdAEca2232Cb19941Ff057D672A664128D1FB5179, amount=16645994621578580515572326299 ) => ( True )
-
Gorth.balanceOf( account=0xF63a8514F28E27EA235413B5a1Cd4a21Ca17aE19 ) => ( 21682545534908800910048114968848 )
-
WETH9.balanceOf( 0xF63a8514F28E27EA235413B5a1Cd4a21Ca17aE19 ) => ( 31191855172002742080 )
-
-
Gorth.balanceOf( account=0xdAEca2232Cb19941Ff057D672A664128D1FB5179 ) => ( 16645994621578582264954684258 )
-
WETH9.balanceOf( 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B ) => ( 0 )
File 1 of 4: UniversalRouter
File 2 of 4: WETH9
File 3 of 4: UniswapV2Pair
File 4 of 4: Gorth
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: Gorth
12345678910111213141516/** SPDX-License-Identifier: MIT* https://gorth.vip/* https://t.me/GorthCoin* https://x.com/GorthCoin*/pragma solidity 0.8.19;library SafeMath {/*** @dev Returns the addition of two unsigned integers, with an overflow flag.** _Available since v3.4._*/function tryAdd(