ETH Price: $4,639.05 (+3.71%)

Transaction Decoder

Block:
21652685 at Jan-18-2025 04:51:35 PM +UTC
Transaction Fee:
0.0054567327849432 ETH $25.31
Gas Used:
129,440 Gas / 42.156464655 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
5.674579471939073466 Eth5.676132751939073466 Eth0.00155328
0x5F939de0...82412459a
15.884013128176402571 Eth
Nonce: 600
15.878556395391459371 Eth
Nonce: 601
0.0054567327849432

Execution Trace

SwapRouter02.multicall( deadline=1737220892, data=[BORarwAAAAAAAAAAAAAAAMAqqjmyI/6NCg5cTyfq2Qg8dWzCAAAAAAAAAAAAAAAAgmGAVBQS1XTPEzbSLAwKKHgiZ4oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAnEAAAAAAAAAAAAAAAAF2q9e3tXMjauoxaKPe7h+/Cp5FuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADH1xO0naAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALceltYsp+QGDAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA, BORarwAAAAAAAAAAAAAAAMAqqjmyI/6NCg5cTyfq2Qg8dWzCAAAAAAAAAAAAAAAAgmGAVBQS1XTPEzbSLAwKKHgiZ4oAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALuAAAAAAAAAAAAAAAAF2q9e3tXMjauoxaKPe7h+/Cp5FuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACFOg0jE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHp+kpUX8LpdzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA] )
  • SwapRouter02.exactInputSingle( params=[{name:tokenIn, type:address, order:1, indexed:false, value:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2, valueString:0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2}, {name:tokenOut, type:address, order:2, indexed:false, value:0x826180541412D574cf1336d22c0C0a287822678A, valueString:0x826180541412D574cf1336d22c0C0a287822678A}, {name:fee, type:uint24, order:3, indexed:false, value:10000, valueString:10000}, {name:recipient, type:address, order:4, indexed:false, value:0x5daAf5EDED5cC8DABA8c5a28F7Bb87eFC2A7916e, valueString:0x5daAf5EDED5cC8DABA8c5a28F7Bb87eFC2A7916e}, {name:amountIn, type:uint256, order:5, indexed:false, value:900000000000000000, valueString:900000000000000000}, {name:amountOutMinimum, type:uint256, order:6, indexed:false, value:3377958350043776026124, valueString:3377958350043776026124}, {name:sqrtPriceLimitX96, type:uint160, order:7, indexed:false, value:0, valueString:0}] ) => ( amountOut=3963877391197344453575983046348115674221700746820753546331534351508065746944 )
    • UniswapV3Pool.swap( recipient=0x5daAf5EDED5cC8DABA8c5a28F7Bb87eFC2A7916e, zeroForOne=False, amountSpecified=900000000000000000, sqrtPriceLimitX96=1461446703485210103287273052203988822378723970341, data=0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000005F939DE0E81A199A34E50615F34CBAB82412459A000000000000000000000000000000000000000000000000000000000000002BC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2002710826180541412D574CF1336D22C0C0A287822678A000000000000000000000000000000000000000000 ) => ( amount0=-1961799264181286911527, amount1=900000000000000000 )
      • FLIP.transfer( to=0x5daAf5EDED5cC8DABA8c5a28F7Bb87eFC2A7916e, amount=1961799264181286911527 ) => ( True )
      • WETH9.balanceOf( 0xeAB02B0D8f969cc6f6d637861dc1A3aC9ED8E72E ) => ( 619014776305444099 )
      • SwapRouter02.uniswapV3SwapCallback( amount0Delta=-1961799264181286911527, amount1Delta=900000000000000000, _data=0x000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000400000000000000000000000005F939DE0E81A199A34E50615F34CBAB82412459A000000000000000000000000000000000000000000000000000000000000002BC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2002710826180541412D574CF1336D22C0C0A287822678A000000000000000000000000000000000000000000 )
        • WETH9.transferFrom( src=0x5F939de0E81a199a34e50615F34cBAb82412459a, dst=0xeAB02B0D8f969cc6f6d637861dc1A3aC9ED8E72E, wad=900000000000000000 ) => ( True )
        • WETH9.balanceOf( 0xeAB02B0D8f969cc6f6d637861dc1A3aC9ED8E72E ) => ( 1519014776305444099 )
          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: 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 4: FLIP
          1
          2
          3
          4
          5
          6
          7
          8
          9
          10
          11
          12
          13
          14
          15
          16
          // SPDX-License-Identifier: MIT
          pragma solidity ^0.8.0;
          import "ERC20.sol";
          import "IFLIP.sol";
          import "Shared.sol";
          /**
          * @title FLIP contract
          * @notice The FLIP utility token which is used in the StateChain.
          */
          contract FLIP is ERC20, IFLIP, Shared {
          address private issuer;
          constructor(
          uint256 flipTotalSupply,
          uint256 numGenesisValidators,
          uint256 genesisStake,
          address receiverGenesisValidatorFlip, // StateChainGateway
          XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

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