ETH Price: $2,515.93 (-0.51%)

Transaction Decoder

Block:
17253455 at May-13-2023 08:36:47 PM +UTC
Transaction Fee:
0.004898785993553953 ETH $12.32
Gas Used:
131,077 Gas / 37.373345389 Gwei

Emitted Events:

169 WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=150000000000000000 )
170 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=[Receiver] UniversalRouter, wad=150000000000000000 )
171 PepeToken.Transfer( from=UniswapV3Pool, to=[Sender] 0x80d47ff4f39fbc7d1aa99980ed56af041bf9dd46, value=144068367402273700219759394 )
172 WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV3Pool, wad=150000000000000000 )
173 UniswapV3Pool.Swap( sender=[Receiver] UniversalRouter, recipient=[Sender] 0x80d47ff4f39fbc7d1aa99980ed56af041bf9dd46, amount0=-144068367402273700219759394, amount1=150000000000000000, sqrtPriceX96=2552649014212851897566448, liquidity=383398525517350483435946514, tick=-206870 )

Account State Difference:

  Address   Before After State Difference Code
0x11950d14...041227b58
(Uniswap V3: PEPE 4)
(builder0x69)
1.325463792944225616 Eth1.325725946944225616 Eth0.000262154
0x69825081...3d2311933
0x80D47fF4...41bf9DD46
0.161563821605642475 Eth
Nonce: 4
0.006665035612088522 Eth
Nonce: 5
0.154898785993553953
0xC02aaA39...83C756Cc2 3,534,109.971761013736101485 Eth3,534,110.121761013736101485 Eth0.15

Execution Trace

ETH 0.15 UniversalRouter.execute( commands=0x0B00, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACFOg0jE8AAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACFOg0jE8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHPWBvbazjpsxjbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArwCqqObIj/o0KDlxPJ+rZCDx1bMIAC7hpglCBRUVM4yXdvkeiXU7D0jEZMwAAAAAAAAAAAAAAAAAAAAAAAAAAAA==], deadline=1684011971 )
  • ETH 0.15 WETH9.CALL( )
  • WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=150000000000000000 ) => ( True )
  • UniswapV3Pool.swap( recipient=0x80D47fF4F39FbC7D1Aa99980ED56af041bf9DD46, zeroForOne=False, amountSpecified=150000000000000000, sqrtPriceLimitX96=1461446703485210103287273052203988822378723970341, data=0x0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000EF1C6E67703C7BD7107EED8303FBE6EC2554BF6B000000000000000000000000000000000000000000000000000000000000002BC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2000BB86982508145454CE325DDBE47A25D4EC3D2311933000000000000000000000000000000000000000000 ) => ( amount0=-144068367402273700219759394, amount1=150000000000000000 )
    • PepeToken.transfer( recipient=0x80D47fF4F39FbC7D1Aa99980ED56af041bf9DD46, amount=144068367402273700219759394 ) => ( True )
    • WETH9.balanceOf( 0x11950d141EcB863F01007AdD7D1A342041227b58 ) => ( 2009997148236028546097 )
    • UniversalRouter.uniswapV3SwapCallback( amount0Delta=-144068367402273700219759394, amount1Delta=150000000000000000, data=0x0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000EF1C6E67703C7BD7107EED8303FBE6EC2554BF6B000000000000000000000000000000000000000000000000000000000000002BC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2000BB86982508145454CE325DDBE47A25D4EC3D2311933000000000000000000000000000000000000000000 )
      • WETH9.transfer( dst=0x11950d141EcB863F01007AdD7D1A342041227b58, wad=150000000000000000 ) => ( True )
      • WETH9.balanceOf( 0x11950d141EcB863F01007AdD7D1A342041227b58 ) => ( 2010147148236028546097 )
        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: 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: PepeToken
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        // Sources flattened with hardhat v2.7.0 https://hardhat.org
        // File @openzeppelin/contracts/utils/Context.sol@v4.4.0
        // SPDX-License-Identifier: MIT
        // OpenZeppelin Contracts v4.4.0 (utils/Context.sol)
        pragma solidity ^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 meta-transactions the account sending and
        * paying for execution may not be the actual sender (as far as an application
        * is concerned).
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX