ETH Price: $3,682.94 (+0.85%)

Transaction Decoder

Block:
19462718 at Mar-18-2024 03:59:23 PM +UTC
Transaction Fee:
0.005176231862882545 ETH $19.06
Gas Used:
135,235 Gas / 38.275829947 Gwei

Emitted Events:

601 WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=300000000000000000 )
602 IndexAIToken.Transfer( from=UniswapV3Pool, to=[Sender] 0xa8ab8dc3a156aa7aa0d8e6f4507017488ac50359, value=47699938761736700133247 )
603 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV3Pool, wad=300000000000000000 )
604 UniswapV3Pool.Swap( sender=[Receiver] UniversalRouter, recipient=[Sender] 0xa8ab8dc3a156aa7aa0d8e6f4507017488ac50359, amount0=-47699938761736700133247, amount1=300000000000000000, sqrtPriceX96=198785670472675167057072874, liquidity=115192469697458956772389, tick=-119764 )

Account State Difference:

  Address   Before After State Difference Code
(Lido: Execution Layer Rewards Vault)
43.565472175796099528 Eth43.565472311031099528 Eth0.000000135235
0x873eC47B...0171506F8
0xa8ab8Dc3...88AC50359
1.534987576848478408 Eth
Nonce: 107
1.229811344985595863 Eth
Nonce: 108
0.305176231862882545
0xC02aaA39...83C756Cc2 3,030,192.401441676932435691 Eth3,030,192.701441676932435691 Eth0.3
0xDb9580b9...9DDA532CD
(Uniswap V3: IAI)

Execution Trace

ETH 0.3 UniversalRouter.execute( commands=0x0B00, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEKdBpGJ4AAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEKdBpGJ4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKDPQ/UfZ9DouZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArwCqqObIj/o0KDlxPJ+rZCDx1bMIAAGSHPsR73iihPw+S7y43m3VQFxUG+AAAAAAAAAAAAAAAAAAAAAAAAAAAAA==], deadline=1710777623 )
  • ETH 0.3 WETH9.CALL( )
  • UniswapV3Pool.swap( recipient=0xa8ab8Dc3a156Aa7Aa0d8E6F4507017488AC50359, zeroForOne=False, amountSpecified=300000000000000000, sqrtPriceLimitX96=1461446703485210103287273052203988822378723970341, data=0x00000000000000000000000000000000000000000000000000000000000000400000000000000000000000003FC91A3AFD70395CD496C647D5A6CC9D4B2B7FAD000000000000000000000000000000000000000000000000000000000000002BC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2000064873EC47BDE28A13F0F92EF2E379B7550171506F8000000000000000000000000000000000000000000 ) => ( amount0=-47699938761736700133247, amount1=300000000000000000 )
    • IndexAIToken.transfer( to=0xa8ab8Dc3a156Aa7Aa0d8E6F4507017488AC50359, value=47699938761736700133247 ) => ( True )
    • WETH9.balanceOf( 0xDb9580b93E4c6F126F74Db3A59166a39DDA532CD ) => ( 290125905129343485136 )
    • UniversalRouter.uniswapV3SwapCallback( amount0Delta=-47699938761736700133247, amount1Delta=300000000000000000, data=0x00000000000000000000000000000000000000000000000000000000000000400000000000000000000000003FC91A3AFD70395CD496C647D5A6CC9D4B2B7FAD000000000000000000000000000000000000000000000000000000000000002BC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2000064873EC47BDE28A13F0F92EF2E379B7550171506F8000000000000000000000000000000000000000000 )
      • WETH9.transfer( dst=0xDb9580b93E4c6F126F74Db3A59166a39DDA532CD, wad=300000000000000000 ) => ( True )
      • WETH9.balanceOf( 0xDb9580b93E4c6F126F74Db3A59166a39DDA532CD ) => ( 290425905129343485136 )
        File 1 of 4: UniversalRouter
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: GPL-3.0-or-later
        pragma solidity ^0.8.17;
        // Command implementations
        import {Dispatcher} from './base/Dispatcher.sol';
        import {RewardsCollector} from './base/RewardsCollector.sol';
        import {RouterParameters, RouterImmutables} from './base/RouterImmutables.sol';
        import {Commands} from './libraries/Commands.sol';
        import {IUniversalRouter} from './interfaces/IUniversalRouter.sol';
        contract UniversalRouter is RouterImmutables, IUniversalRouter, Dispatcher, RewardsCollector {
        modifier checkDeadline(uint256 deadline) {
        if (block.timestamp > deadline) revert TransactionDeadlinePassed();
        _;
        }
        constructor(RouterParameters memory params) RouterImmutables(params) {}
        /// @inheritdoc IUniversalRouter
        function execute(bytes calldata commands, bytes[] calldata inputs, uint256 deadline)
        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: 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 4 of 4: IndexAIToken
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: MIT
        // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)
        pragma solidity ^0.8.20;
        import {Context} from "../utils/Context.sol";
        /**
        * @dev Contract module which provides a basic access control mechanism, where
        * there is an account (an owner) that can be granted exclusive access to
        * specific functions.
        *
        * The initial owner is set to the address provided by the deployer. This can
        * later be changed with {transferOwnership}.
        *
        * This module is used through inheritance. It will make available the modifier
        * `onlyOwner`, which can be applied to your functions to restrict their use to
        * the owner.
        */
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX