ETH Price: $3,377.55 (+9.61%)
Gas: 5.71 Gwei

Transaction Decoder

Block:
21779330 at Feb-05-2025 09:14:35 AM +UTC
Transaction Fee:
0.000140343381444221 ETH $0.47
Gas Used:
115,933 Gas / 1.210555937 Gwei

Emitted Events:

202 WETH9.Transfer( src=UniswapV3Pool, dst=[Receiver] ZeroEx, wad=754377920837277565 )
203 WstETH.Transfer( from=[Sender] 0x3496cc53d6d8650ec936891038e656a85475126b, to=UniswapV3Pool, value=633425779515541445 )
204 WstETH.Approval( owner=[Sender] 0x3496cc53d6d8650ec936891038e656a85475126b, spender=[Receiver] ZeroEx, value=0 )
205 UniswapV3Pool.Swap( sender=[Receiver] ZeroEx, recipient=[Receiver] ZeroEx, amount0=633425779515541445, amount1=-754377920837277565, sqrtPriceX96=86466498006211599983991255268, liquidity=3203215428435431038509768, tick=1748 )
206 WETH9.Withdrawal( src=[Receiver] ZeroEx, wad=754377920837277565 )

Account State Difference:

  Address   Before After State Difference Code
0x109830a1...EC2FB7dAa
(Uniswap V3: wstETH 3)
0x3496cC53...85475126B
0.011616381168796268 Eth
Nonce: 2979
0.765853958624629612 Eth
Nonce: 2980
0.754237577455833344
(Titan Builder)
7.244718113852237609 Eth7.244718252971837609 Eth0.0000001391196
0x7f39C581...c935E2Ca0
0xC02aaA39...83C756Cc2 2,781,022.627350903966752273 Eth2,781,021.872972983129474708 Eth0.754377920837277565

Execution Trace

ZeroEx.803ba26d( )
  • UniswapV3Feature.sellTokenForEthToUniswapV3( encodedPath=0x7F39C581F595B53C5CB19BD0B3F8DA6C935E2CA0000064C02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2, sellAmount=633425779515541445, minBuyAmount=750606031233091154, recipient=0x0000000000000000000000000000000000000000 ) => ( buyAmount=754377920837277565 )
    • UniswapV3Pool.swap( recipient=0xDef1C0ded9bec7F1a1670819833240f027b25EfF, zeroForOne=True, amountSpecified=633425779515541445, sqrtPriceLimitX96=4295128740, data=0x0000000000000000000000007F39C581F595B53C5CB19BD0B3F8DA6C935E2CA0000000000000000000000000C02AAA39B223FE8D0A0E5C4F27EAD9083C756CC200000000000000000000000000000000000000000000000000000000000000640000000000000000000000003496CC53D6D8650EC936891038E656A85475126B ) => ( amount0=633425779515541445, amount1=-754377920837277565 )
      • WETH9.transfer( dst=0xDef1C0ded9bec7F1a1670819833240f027b25EfF, wad=754377920837277565 ) => ( True )
      • WstETH.balanceOf( account=0x109830a1AAaD605BbF02a9dFA7B0B92EC2FB7dAa ) => ( 4008573012871401806284 )
      • ZeroEx.fa461e33( )
        • UniswapV3Feature.uniswapV3SwapCallback( amount0Delta=633425779515541445, amount1Delta=-754377920837277565, data=0x0000000000000000000000007F39C581F595B53C5CB19BD0B3F8DA6C935E2CA0000000000000000000000000C02AAA39B223FE8D0A0E5C4F27EAD9083C756CC200000000000000000000000000000000000000000000000000000000000000640000000000000000000000003496CC53D6D8650EC936891038E656A85475126B )
          • WstETH.transferFrom( sender=0x3496cC53d6d8650Ec936891038E656a85475126B, recipient=0x109830a1AAaD605BbF02a9dFA7B0B92EC2FB7dAa, amount=633425779515541445 ) => ( True )
          • WstETH.balanceOf( account=0x109830a1AAaD605BbF02a9dFA7B0B92EC2FB7dAa ) => ( 4009206438650917347729 )
          • WETH9.withdraw( wad=754377920837277565 )
            • ETH 0.754377920837277565 ZeroEx.CALL( )
            • ETH 0.754377920837277565 0x3496cc53d6d8650ec936891038e656a85475126b.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: WstETH
              1
              2
              3
              4
              5
              6
              7
              8
              9
              10
              11
              12
              13
              14
              15
              16
              // SPDX-License-Identifier: MIT AND GPL-3.0
              // File: @openzeppelin/contracts/utils/Context.sol
              pragma solidity >=0.6.0 <0.8.0;
              /*
              * @dev Provides information about the current execution context, including the
              * sender of the transaction and its data. While these are generally available
              * via msg.sender and msg.data, they should not be accessed in such a direct
              * manner, since when dealing with GSN meta-transactions the account sending and
              * paying for execution may not be the actual sender (as far as an application
              * is concerned).
              *
              * This contract is only required for intermediate, library-like contracts.
              */
              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