ETH Price: $4,276.28 (+1.19%)

Transaction Decoder

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 Code
0x09416C90...7e0b44De6
(Titan Builder)
15.025796309701763705 Eth15.025959024702089135 Eth0.00016271500032543
0x83F1E412...4a940E507
0.17112292010178714 Eth
Nonce: 135
0.00581660403399941 Eth
Nonce: 136
0.16530631606778773
0xa74FA823...722eF09eE 89.768248132776785426 Eth89.769205132776785426 Eth0.000957
0xC02aaA39...83C756Cc2 2,618,244.420299543658929879 Eth2,618,244.584342543658929879 Eth0.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( )
        File 1 of 6: UniversalRouter
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: GPL-3.0-or-later
        pragma solidity ^0.8.17;
        // Command implementations
        import {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 IUniversalRouter
        function execute(bytes calldata commands, bytes[] calldata inputs, uint256 deadline)
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 2 of 6: WETH9
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // 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;
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 3 of 6: UniswapV2Pair
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // File: contracts/interfaces/IUniswapV2Pair.sol
        pragma 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);
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 4 of 6: ProtoKOLs
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: MIT
        pragma solidity 0.8.12;
        /*
        ██████ ██████ ██████ ████████ ██████ ██ ██ ██████ ██ ███████
        ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
        ██████ ██████ ██ ██ ██ ██ ██ █████ ██ ██ ██ ███████
        ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██
        ██ ██ ██ ██████ ██ ██████ ██ ██ ██████ ███████ ███████
        KOL Performance & Data Analytics delivered to you in Real Time.
        Website: https://www.protokols.io
        Telegram: https://t.me/protokols_community
        X/Twitter: https://x.com/protokols_io
        */
        abstract contract Context {
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 5 of 6: GnosisSafeProxy
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: LGPL-3.0-only
        pragma 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;
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 6 of 6: GnosisSafe
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: LGPL-3.0-only
        pragma 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>
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX