ETH Price: $3,842.44 (+2.41%)

Transaction Decoder

Block:
21845524 at Feb-14-2025 03:13:59 PM +UTC
Transaction Fee:
0.000527839550813088 ETH $2.03
Gas Used:
140,229 Gas / 3.764125472 Gwei

Emitted Events:

448 0xf3de3c0d654fda23dad170f0f320a92172509127.0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb( 0x7724394874fdd8ad13292ec739b441f85c6559f10dc4141b8d4c0fa4cbf55bdb, 0000000000000000000000000000000000000000000000000000000000000000 )
449 WETH9.Deposit( dst=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, wad=3508000000000000000 )
450 TetherToken.Transfer( from=UniswapV3Pool, to=[Sender] 0x882ed1dc5b155f20956e2dd83a0bfec6a4bc031b, value=9480180658 )
451 WETH9.Transfer( src=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, dst=UniswapV3Pool, wad=3508000000000000000 )
452 UniswapV3Pool.Swap( sender=[Receiver] 0xf3de3c0d654fda23dad170f0f320a92172509127, recipient=[Sender] 0x882ed1dc5b155f20956e2dd83a0bfec6a4bc031b, amount0=3508000000000000000, amount1=-9480180658, sqrtPriceX96=4118111180285705816409326, liquidity=484397170566909205, tick=-197304 )
453 0xf3de3c0d654fda23dad170f0f320a92172509127.0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c( 0x1bb43f2da90e35f7b0cf38521ca95a49e68eb42fac49924930a5bd73cdf7576c, 000000000000000000000000eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee, 000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7, 000000000000000000000000882ed1dc5b155f20956e2dd83a0bfec6a4bc031b, 00000000000000000000000000000000000000000000000030aeeb69f0120000, 00000000000000000000000000000000000000000000000000000002351013b2 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
11.37307040688127169 Eth11.373317244534556676 Eth0.000246837653284986
0x882eD1dc...6a4Bc031B
3.597796323995520662 Eth
Nonce: 116
0.089268484444707574 Eth
Nonce: 117
3.508527839550813088
0xC02aaA39...83C756Cc2 2,987,926.455567129633750819 Eth2,987,929.963567129633750819 Eth3.508
0xc7bBeC68...9bA1b0e9b
(Uniswap V3: USDT 9)
0xdAC17F95...13D831ec7

Execution Trace

ETH 3.508 0xf3de3c0d654fda23dad170f0f320a92172509127.0d5f0e3b( )
  • ETH 3.508 WETH9.CALL( )
  • UniswapV3Pool.swap( recipient=0x882eD1dc5b155F20956E2dd83a0bFec6a4Bc031B, zeroForOne=True, amountSpecified=3508000000000000000, sqrtPriceLimitX96=4295128740, data=0x000000000000000000000000F3DE3C0D654FDA23DAD170F0F320A92172509127 ) => ( amount0=3508000000000000000, amount1=-9480180658 )
    • TetherToken.transfer( _to=0x882eD1dc5b155F20956E2dd83a0bFec6a4Bc031B, _value=9480180658 )
    • WETH9.balanceOf( 0xc7bBeC68d12a0d1830360F8Ec58fA599bA1b0e9b ) => ( 1422433421082830613108 )
    • 0xf3de3c0d654fda23dad170f0f320a92172509127.fa461e33( )
      • UniswapV3Pool.STATICCALL( )
      • UniswapV3Pool.STATICCALL( )
      • UniswapV3Pool.STATICCALL( )
      • WETH9.transfer( dst=0xc7bBeC68d12a0d1830360F8Ec58fA599bA1b0e9b, wad=3508000000000000000 ) => ( True )
      • WETH9.balanceOf( 0xc7bBeC68d12a0d1830360F8Ec58fA599bA1b0e9b ) => ( 1425941421082830613108 )
      • UniswapV3Pool.STATICCALL( )
        File 1 of 3: 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 2 of 3: 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 3: TetherToken
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        pragma solidity ^0.4.17;
        /**
        * @title SafeMath
        * @dev Math operations with safety checks that throw on error
        */
        library SafeMath {
        function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
        return 0;
        }
        uint256 c = a * b;
        assert(c / a == b);
        return c;
        }
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX