ETH Price: $4,720.15 (+0.64%)

Transaction Decoder

Block:
22709030 at Jun-15-2025 09:24:35 AM +UTC
Transaction Fee:
0.000047351597686605 ETH $0.22
Gas Used:
120,595 Gas / 0.392649759 Gwei

Emitted Events:

344 WETH9.Transfer( src=UniswapV3Pool, dst=[Receiver] ZeroEx, wad=26679813974137096 )
345 SophonToken.Transfer( from=[Sender] 0x9f3c061270c4492bc65bf976762742a861e6236a, to=UniswapV3Pool, value=1499550499000000009001 )
346 UniswapV3Pool.Swap( sender=[Receiver] ZeroEx, recipient=[Receiver] ZeroEx, amount0=1499550499000000009001, amount1=-26679813974137096, sqrtPriceX96=335800223422562829297165671, liquidity=14877652327974329656241, tick=-109277 )
347 WETH9.Withdrawal( src=[Receiver] ZeroEx, wad=26679813974137096 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
14.109034377195294819 Eth14.109040406945294819 Eth0.00000602975
0x6B7774CB...563dDd3f0
0x9F3C0612...861e6236a
0.053453059725870044 Eth
Nonce: 929
0.080085522102320535 Eth
Nonce: 930
0.026632462376450491
0xC02aaA39...83C756Cc2 2,621,356.594713029271346913 Eth2,621,356.568033215297209817 Eth0.026679813974137096
0xC511FF68...c9eC77D9c
(Uniswap V3: SOPH 5)

Execution Trace

ZeroEx.803ba26d( )
  • UniswapV3Feature.sellTokenForEthToUniswapV3( encodedPath=0x6B7774CB12ED7573A7586E7D0E62A2A563DDD3F0002710C02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2, sellAmount=1499550499000000009001, minBuyAmount=26599774532214664, recipient=0x0000000000000000000000000000000000000000 ) => ( buyAmount=26679813974137096 )
    • UniswapV3Pool.swap( recipient=0xDef1C0ded9bec7F1a1670819833240f027b25EfF, zeroForOne=True, amountSpecified=1499550499000000009001, sqrtPriceLimitX96=4295128740, data=0x0000000000000000000000006B7774CB12ED7573A7586E7D0E62A2A563DDD3F0000000000000000000000000C02AAA39B223FE8D0A0E5C4F27EAD9083C756CC200000000000000000000000000000000000000000000000000000000000027100000000000000000000000009F3C061270C4492BC65BF976762742A861E6236A ) => ( amount0=1499550499000000009001, amount1=-26679813974137096 )
      • WETH9.transfer( dst=0xDef1C0ded9bec7F1a1670819833240f027b25EfF, wad=26679813974137096 ) => ( True )
      • SophonToken.balanceOf( account=0xC511FF68aE3A1379e8eF3F599F88559c9eC77D9c ) => ( 3516515415084953471760315 )
      • ZeroEx.fa461e33( )
        • UniswapV3Feature.uniswapV3SwapCallback( amount0Delta=1499550499000000009001, amount1Delta=-26679813974137096, data=0x0000000000000000000000006B7774CB12ED7573A7586E7D0E62A2A563DDD3F0000000000000000000000000C02AAA39B223FE8D0A0E5C4F27EAD9083C756CC200000000000000000000000000000000000000000000000000000000000027100000000000000000000000009F3C061270C4492BC65BF976762742A861E6236A )
          • SophonToken.transferFrom( from=0x9F3C061270C4492bC65BF976762742a861e6236a, to=0xC511FF68aE3A1379e8eF3F599F88559c9eC77D9c, value=1499550499000000009001 ) => ( True )
          • SophonToken.balanceOf( account=0xC511FF68aE3A1379e8eF3F599F88559c9eC77D9c ) => ( 3518014965583953471769316 )
          • WETH9.withdraw( wad=26679813974137096 )
            • ETH 0.026679813974137096 ZeroEx.CALL( )
            • ETH 0.026679813974137096 0x9f3c061270c4492bc65bf976762742a861e6236a.CALL( )
              File 1 of 5: ZeroEx
              1
              2
              3
              4
              5
              6
              7
              8
              9
              10
              11
              12
              13
              14
              15
              16
              /*
              Copyright 2020 ZeroEx Intl.
              Licensed under the Apache License, Version 2.0 (the "License");
              you may not use this file except in compliance with the License.
              You may obtain a copy of the License at
              http://www.apache.org/licenses/LICENSE-2.0
              Unless required by applicable law or agreed to in writing, software
              distributed under the License is distributed on an "AS IS" BASIS,
              WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
              See the License for the specific language governing permissions and
              limitations under the License.
              */
              pragma solidity ^0.6.5;
              pragma experimental ABIEncoderV2;
              import "@0x/contracts-utils/contracts/src/v06/LibBytesV06.sol";
              import "./migrations/LibBootstrap.sol";
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 2 of 5: UniswapV3Pool
              1
              2
              3
              4
              5
              6
              7
              8
              9
              10
              11
              12
              13
              14
              15
              16
              // SPDX-License-Identifier: BUSL-1.1
              pragma solidity =0.7.6;
              import './interfaces/IUniswapV3Pool.sol';
              import './NoDelegateCall.sol';
              import './libraries/LowGasSafeMath.sol';
              import './libraries/SafeCast.sol';
              import './libraries/Tick.sol';
              import './libraries/TickBitmap.sol';
              import './libraries/Position.sol';
              import './libraries/Oracle.sol';
              import './libraries/FullMath.sol';
              import './libraries/FixedPoint128.sol';
              import './libraries/TransferHelper.sol';
              import './libraries/TickMath.sol';
              import './libraries/LiquidityMath.sol';
              import './libraries/SqrtPriceMath.sol';
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 3 of 5: 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 4 of 5: SophonToken
              1
              2
              3
              4
              5
              6
              7
              8
              9
              10
              11
              12
              13
              14
              15
              16
              // SPDX-License-Identifier: UNLICENSED
              pragma solidity 0.8.26;
              /**
              * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
              * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
              *
              * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
              * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
              * need to send a transaction, and thus is not required to hold Ether at all.
              *
              * ==== Security Considerations
              *
              * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature
              * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

              File 5 of 5: UniswapV3Feature
              1
              2
              3
              4
              5
              6
              7
              8
              9
              10
              11
              12
              13
              14
              15
              16
              // SPDX-License-Identifier: Apache-2.0
              /*
              Copyright 2023 ZeroEx Intl.
              Licensed under the Apache License, Version 2.0 (the "License");
              you may not use this file except in compliance with the License.
              You may obtain a copy of the License at
              http://www.apache.org/licenses/LICENSE-2.0
              Unless required by applicable law or agreed to in writing, software
              distributed under the License is distributed on an "AS IS" BASIS,
              WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
              See the License for the specific language governing permissions and
              limitations under the License.
              */
              pragma solidity >=0.6.5 <0.9;
              interface IERC20Token {
              event Transfer(address indexed from, address indexed to, uint256 value);
              XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX