ETH Price: $2,645.10 (-4.60%)

Transaction Decoder

Block:
19173494 at Feb-07-2024 02:57:47 AM +UTC
Transaction Fee:
0.006435036247643768 ETH $17.02
Gas Used:
145,192 Gas / 44.320873379 Gwei

Emitted Events:

50 WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=274557367821822972 )
51 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=[Receiver] UniversalRouter, wad=274557367821822972 )
52 Anon.ERC20Transfer( from=UniswapV3Pool, to=[Sender] 0x15fc5dd4818738f1807edef65731aabb6ce1cb66, amount=37196565459230340 )
53 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV3Pool, wad=274557367821822972 )
54 UniswapV3Pool.Swap( sender=[Receiver] UniversalRouter, recipient=[Sender] 0x15fc5dd4818738f1807edef65731aabb6ce1cb66, amount0=-37196565459230340, amount1=274557367821822972, sqrtPriceX96=214184750886229543681160850701, liquidity=832234660402705727502, tick=19891 )

Account State Difference:

  Address   Before After State Difference Code
0x15fC5dD4...b6Ce1cB66
0.294557367821822972 Eth
Nonce: 10
0.013564963752356232 Eth
Nonce: 11
0.28099240406946674
0x18F9a12e...03CB7910E
(Uniswap V3: ANON 9)
0x1f0eFA15...6ba469b30
(beaverbuild)
6.606817697286976576 Eth6.606832071294976576 Eth0.000014374008
0xC02aaA39...83C756Cc2 3,268,251.483298102625566715 Eth3,268,251.757855470447389687 Eth0.274557367821822972

Execution Trace

ETH 0.274557367821822972 UniversalRouter.execute( commands=0x0B00, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADz2x4q3xr/A==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADz2x4q3xr/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB/ZntgxXq0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArwCqqObIj/o0KDlxPJ+rZCDx1bMIAJxAfDvoV6ct+qVliV9pj/sw2ukabMAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==], deadline=1707275843 )
  • ETH 0.274557367821822972 WETH9.CALL( )
  • WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=274557367821822972 ) => ( True )
  • UniswapV3Pool.swap( recipient=0x15fC5dD4818738F1807EdeF65731aABb6Ce1cB66, zeroForOne=False, amountSpecified=274557367821822972, sqrtPriceLimitX96=1461446703485210103287273052203988822378723970341, data=0x0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000EF1C6E67703C7BD7107EED8303FBE6EC2554BF6B000000000000000000000000000000000000000000000000000000000000002BC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC20027101F0EFA15E9CB7EA9596257DA63FECC36BA469B30000000000000000000000000000000000000000000 ) => ( amount0=-37196565459230340, amount1=274557367821822972 )
    • Anon.transfer( to=0x15fC5dD4818738F1807EdeF65731aABb6Ce1cB66, amount=37196565459230340 ) => ( True )
    • WETH9.balanceOf( 0x18F9a12e7b58257c749385712ECB4fA03CB7910E ) => ( 466045861366799497272 )
    • UniversalRouter.uniswapV3SwapCallback( amount0Delta=-37196565459230340, amount1Delta=274557367821822972, data=0x0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000EF1C6E67703C7BD7107EED8303FBE6EC2554BF6B000000000000000000000000000000000000000000000000000000000000002BC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC20027101F0EFA15E9CB7EA9596257DA63FECC36BA469B30000000000000000000000000000000000000000000 )
      • WETH9.transfer( dst=0x18F9a12e7b58257c749385712ECB4fA03CB7910E, wad=274557367821822972 ) => ( True )
      • WETH9.balanceOf( 0x18F9a12e7b58257c749385712ECB4fA03CB7910E ) => ( 466320418734621320244 )
        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;
        import {Dispatcher} from './base/Dispatcher.sol';
        import {RewardsCollector} from './base/RewardsCollector.sol';
        import {RouterParameters, RouterImmutables} from './base/RouterImmutables.sol';
        import {Constants} from './libraries/Constants.sol';
        import {Commands} from './libraries/Commands.sol';
        import {IUniversalRouter} from './interfaces/IUniversalRouter.sol';
        import {ReentrancyLock} from './base/ReentrancyLock.sol';
        contract UniversalRouter is RouterImmutables, IUniversalRouter, Dispatcher, RewardsCollector, ReentrancyLock {
        modifier checkDeadline(uint256 deadline) {
        if (block.timestamp > deadline) revert TransactionDeadlinePassed();
        _;
        }
        constructor(RouterParameters memory params) RouterImmutables(params) {}
        /// @inheritdoc IUniversalRouter
        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: Anon
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // SPDX-License-Identifier: MIT
        /*
        This is experimental software.
        https://anonethereum.com/
        https://x.com/anon_ethereum
        https://t.me/anonethereum
        */
        pragma solidity ^0.8.24;
        interface Callable {
        function tokenCallback(address _from, uint256 _tokens, bytes calldata _data) external returns (bool);
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

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