Transaction Hash:
Block:
22731442 at Jun-18-2025 12:42:59 PM +UTC
Transaction Fee:
0.00030631606778773 ETH
$1.31
Gas Used:
162,715 Gas / 1.882531222 Gwei
Emitted Events:
207 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=164043000000000000 )
|
208 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV2Pair, wad=164043000000000000 )
|
209 |
ProtoKOLs.Transfer( from=UniswapV2Pair, to=ProtoKOLs, value=87368953955572379995 )
|
210 |
ProtoKOLs.Transfer( from=UniswapV2Pair, to=[Sender] 0x83f1e4129a6a6ed762f2afeb808d70c4a940e507, value=2096854894933737119893 )
|
211 |
UniswapV2Pair.Sync( reserve0=66856126875450703479, reserve1=890673582122871067100582 )
|
212 |
UniswapV2Pair.Swap( sender=[Receiver] UniversalRouter, amount0In=164043000000000000, amount1In=0, amount0Out=0, amount1Out=2184223848889309499888, to=[Sender] 0x83f1e4129a6a6ed762f2afeb808d70c4a940e507 )
|
213 |
GnosisSafeProxy.0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d( 0x3d0ce9bfc3ed7d6862dbb28b2dea94561fe714a1b4d019aa8af39730d1ad7c3d, 0x0000000000000000000000003fc91a3afd70395cd496c647d5a6cc9d4b2b7fad, 00000000000000000000000000000000000000000000000000036662ed0cd000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x09416C90...7e0b44De6 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 15.025796309701763705 Eth | 15.025959024702089135 Eth | 0.00016271500032543 | |
0x83F1E412...4a940E507 |
0.17112292010178714 Eth
Nonce: 135
|
0.00581660403399941 Eth
Nonce: 136
| 0.16530631606778773 | ||
0xa74FA823...722eF09eE | 89.768248132776785426 Eth | 89.769205132776785426 Eth | 0.000957 | ||
0xC02aaA39...83C756Cc2 | 2,618,244.420299543658929879 Eth | 2,618,244.584342543658929879 Eth | 0.164043 | ||
0xd888A546...ABd520659 |
Execution Trace
ETH 0.165
UniversalRouter.execute( commands=0x0B0804, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACRsw9RuOwAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACRsw9RuOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAX8ydQ8iHRIxAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAAAAAAAAwCqqObIj/o0KDlxPJ+rZCDx1bMIAAAAAAAAAAAAAAADYiKVGD/+ksUNA3Z/icQy6vVIGWQ==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACnT6gjvIYX+jIKlms9EbD3Iu8J7gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADZmLtDNAA], deadline=1750250580 )
- ETH 0.164043
WETH9.CALL( )
-
WETH9.transfer( dst=0x09416C9061cd02b36739381bEa015327e0b44De6, wad=164043000000000000 ) => ( True )
-
ProtoKOLs.balanceOf( account=0x83F1E4129A6a6Ed762f2afEb808d70C4a940E507 ) => ( 17197186979116155011713 )
-
UniswapV2Pair.STATICCALL( )
-
WETH9.balanceOf( 0x09416C9061cd02b36739381bEa015327e0b44De6 ) => ( 66856126875450703479 )
UniswapV2Pair.swap( amount0Out=0, amount1Out=2184223848889309499888, to=0x83F1E4129A6a6Ed762f2afEb808d70C4a940E507, data=0x )
-
ProtoKOLs.transfer( recipient=0x83F1E4129A6a6Ed762f2afEb808d70C4a940E507, amount=2184223848889309499888 ) => ( True )
-
WETH9.balanceOf( 0x09416C9061cd02b36739381bEa015327e0b44De6 ) => ( 66856126875450703479 )
-
ProtoKOLs.balanceOf( account=0x09416C9061cd02b36739381bEa015327e0b44De6 ) => ( 890673582122871067100582 )
-
-
ProtoKOLs.balanceOf( account=0x83F1E4129A6a6Ed762f2afEb808d70C4a940E507 ) => ( 19294041874049892131606 )
ETH 0.000957
GnosisSafeProxy.CALL( )
- ETH 0.000957
GnosisSafe.DELEGATECALL( )
- ETH 0.000957
execute[UniversalRouter (ln:16)]
execute[UniversalRouter (ln:21)]
execute[UniversalRouter (ln:21)]
File 1 of 6: UniversalRouter
File 2 of 6: WETH9
File 3 of 6: UniswapV2Pair
File 4 of 6: ProtoKOLs
File 5 of 6: GnosisSafeProxy
File 6 of 6: GnosisSafe
12345678910111213141516// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.17;// Command implementationsimport {Dispatcher} from './base/Dispatcher.sol';import {RewardsCollector} from './base/RewardsCollector.sol';import {RouterParameters, RouterImmutables} from './base/RouterImmutables.sol';import {Commands} from './libraries/Commands.sol';import {IUniversalRouter} from './interfaces/IUniversalRouter.sol';contract UniversalRouter is RouterImmutables, IUniversalRouter, Dispatcher, RewardsCollector {modifier checkDeadline(uint256 deadline) {if (block.timestamp > deadline) revert TransactionDeadlinePassed();_;}constructor(RouterParameters memory params) RouterImmutables(params) {}/// @inheritdoc IUniversalRouterfunction execute(bytes calldata commands, bytes[] calldata inputs, uint256 deadline)
File 2 of 6: 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 6: 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 6: ProtoKOLs
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity 0.8.12;/*██████ ██████ ██████ ████████ ██████ ██ ██ ██████ ██ █████████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ████████ ██████ ██ ██ ██ ██ ██ █████ ██ ██ ██ █████████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ████ ██ ██ ██████ ██ ██████ ██ ██ ██████ ███████ ███████KOL Performance & Data Analytics delivered to you in Real Time.Website: https://www.protokols.ioTelegram: https://t.me/protokols_communityX/Twitter: https://x.com/protokols_io*/abstract contract Context {
File 5 of 6: GnosisSafeProxy
12345678910111213141516// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;/// @title IProxy - Helper interface to access masterCopy of the Proxy on-chain/// @author Richard Meissner - <richard@gnosis.io>interface IProxy {function masterCopy() external view returns (address);}/// @title GnosisSafeProxy - Generic proxy contract allows to execute all transactions applying the code of a master contract./// @author Stefan George - <stefan@gnosis.io>/// @author Richard Meissner - <richard@gnosis.io>contract GnosisSafeProxy {// singleton always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.// To reduce deployment costs this variable is internal and needs to be retrieved via `getStorageAt`address internal singleton;
File 6 of 6: GnosisSafe
12345678910111213141516// SPDX-License-Identifier: LGPL-3.0-onlypragma solidity >=0.7.0 <0.9.0;import "./base/ModuleManager.sol";import "./base/OwnerManager.sol";import "./base/FallbackManager.sol";import "./base/GuardManager.sol";import "./common/EtherPaymentFallback.sol";import "./common/Singleton.sol";import "./common/SignatureDecoder.sol";import "./common/SecuredTokenTransfer.sol";import "./common/StorageAccessible.sol";import "./interfaces/ISignatureValidator.sol";import "./external/GnosisSafeMath.sol";/// @title Gnosis Safe - A multisignature wallet with support for confirmations using signed messages based on ERC191./// @author Stefan George - <stefan@gnosis.io>/// @author Richard Meissner - <richard@gnosis.io>