ETH Price: $3,662.49 (+0.40%)

Transaction Decoder

Block:
22498090 at May-16-2025 08:45:59 PM +UTC
Transaction Fee:
0.001469724592759619 ETH $5.38
Gas Used:
106,829 Gas / 13.757730511 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
13.94313349016843851 Eth13.94441543816843851 Eth0.001281948
0x5F939de0...82412459a
9.543800828051556389 Eth
Nonce: 5339
9.54233110345879677 Eth
Nonce: 5340
0.001469724592759619

Execution Trace

SwapRouter02.multicall( deadline=1747430144, data=[RytD8wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABTREg17FgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABVB1ShG6nyhN+sAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAEQAtjPpCUfFmQN1niEhq82D3foiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAADAKqo5siP+jQoOXE8n6tkIPHVswgAAAAAAAAAAAAAAADYryEejqWN9OvZiTuyFNhikPtfS] )
  • SwapRouter02.swapExactTokensForTokens( amountIn=1500000000000000000, amountOutMin=100384094109555744651243, path=[0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, 0x362bc847A3a9637d3af6624EeC853618a43ed7D2], to=0x4400B633E90947C59903759e2121abCD83dDFA22 ) => ( amountOut=3963877391197344453575983046348115674221700746820753546331534351508065746944 )
    • WETH9.transferFrom( src=0x5F939de0E81a199a34e50615F34cBAb82412459a, dst=0x64CaC8fa24F437cECA90e20A7a24a609f162b0D1, wad=1500000000000000000 ) => ( True )
    • ParsiqToken.balanceOf( account=0x4400B633E90947C59903759e2121abCD83dDFA22 ) => ( 28051620237795714249219 )
    • UniswapV2Pair.STATICCALL( )
    • WETH9.balanceOf( 0x64CaC8fa24F437cECA90e20A7a24a609f162b0D1 ) => ( 10221009564909602185 )
    • UniswapV2Pair.swap( amount0Out=80676050127013583310884, amount1Out=0, to=0x4400B633E90947C59903759e2121abCD83dDFA22, data=0x )
      • ParsiqToken.transfer( recipient=0x4400B633E90947C59903759e2121abCD83dDFA22, amount=80676050127013583310884 ) => ( True )
      • ParsiqToken.balanceOf( account=0x64CaC8fa24F437cECA90e20A7a24a609f162b0D1 ) => ( 470462457249623528107548 )
      • WETH9.balanceOf( 0x64CaC8fa24F437cECA90e20A7a24a609f162b0D1 ) => ( 10221009564909602185 )
      • ParsiqToken.balanceOf( account=0x4400B633E90947C59903759e2121abCD83dDFA22 ) => ( 108727670364809297560103 )
        File 1 of 4: SwapRouter02
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: GPL-2.0-or-later
        pragma solidity =0.7.6;
        pragma abicoder v2;
        import '@uniswap/v3-periphery/contracts/base/SelfPermit.sol';
        import '@uniswap/v3-periphery/contracts/base/PeripheryImmutableState.sol';
        import './interfaces/ISwapRouter02.sol';
        import './V2SwapRouter.sol';
        import './V3SwapRouter.sol';
        import './base/ApproveAndCall.sol';
        import './base/MulticallExtended.sol';
        /// @title Uniswap V2 and V3 Swap Router
        contract SwapRouter02 is ISwapRouter02, V2SwapRouter, V3SwapRouter, ApproveAndCall, MulticallExtended, SelfPermit {
        constructor(
        address _factoryV2,
        address factoryV3,
        address _positionManager,
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 2 of 4: 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 4: ParsiqToken
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: MIT
        pragma solidity 0.6.12;
        /**
        * @dev Wrappers over Solidity's arithmetic operations with added overflow
        * checks.
        *
        * Arithmetic operations in Solidity wrap on overflow. This can easily result
        * in bugs, because programmers usually assume that an overflow raises an
        * error, which is the standard behavior in high level programming languages.
        * `SafeMath` restores this intuition by reverting the transaction when an
        * operation overflows.
        *
        * Using this library instead of the unchecked operations eliminates an entire
        * class of bugs, so it's recommended to use it always.
        */
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 4 of 4: 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