ETH Price: $2,542.77 (-7.52%)

Transaction Decoder

Block:
17218559 at May-08-2023 09:52:11 PM +UTC
Transaction Fee:
0.012339721005464748 ETH $31.38
Gas Used:
128,534 Gas / 96.003555522 Gwei

Emitted Events:

231 WETH9.Transfer( src=UniswapV3Pool, dst=[Receiver] UniversalRouter, wad=547609627946011329 )
232 MongCoin.Transfer( from=[Sender] 0xd01777f28cbbb8b8bad19a99bb133b1af356490f, to=UniswapV3Pool, value=7353724943701845228814457759 )
233 UniswapV3Pool.Swap( sender=[Receiver] UniversalRouter, recipient=[Receiver] UniversalRouter, amount0=7353724943701845228814457759, amount1=-547609627946011329, sqrtPriceX96=686343185556783560390717, liquidity=27284676792635152936996564, tick=-233141 )
234 WETH9.Withdrawal( src=[Receiver] UniversalRouter, wad=547609627946011329 )

Account State Difference:

  Address   Before After State Difference Code
0x1ce27055...f8B47FD9C
0x95Ad5d38...B36A94EA5
(Uniswap V3: $MONG)
0xC02aaA39...83C756Cc2 3,573,310.552145238864089129 Eth3,573,310.0045356109180778 Eth0.547609627946011329
0xd01777F2...Af356490f
0.309542817116521939 Eth
Nonce: 66
0.84481272405706852 Eth
Nonce: 67
0.535269906940546581
(Flashbots: Builder)
0.101574100352905201 Eth0.101589651536321781 Eth0.00001555118341658

Execution Trace

UniversalRouter.execute( commands=0x000C, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAABfC29P9uf047aXbnwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeWibgRENyiAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArHOJwVXwfaM+1d7hWdmMQv4tH/ZwAJxDAKqo5siP+jQoOXE8n6tkIPHVswgAAAAAAAAAAAAAAAAAAAAAAAAAAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHlom4ERDcog==], deadline=1683584483 )
  • UniswapV3Pool.swap( recipient=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, zeroForOne=True, amountSpecified=7353724943701845228814457759, sqrtPriceLimitX96=4295128740, data=0x0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000D01777F28CBBB8B8BAD19A99BB133B1AF356490F000000000000000000000000000000000000000000000000000000000000002B1CE270557C1F68CFB577B856766310BF8B47FD9C002710C02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2000000000000000000000000000000000000000000 ) => ( amount0=7353724943701845228814457759, amount1=-547609627946011329 )
    • WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=547609627946011329 ) => ( True )
    • MongCoin.balanceOf( account=0x95Ad5d38aD6BB17500E9a57BFeb6569B36A94EA5 ) => ( 1773459561213219097481540519292 )
    • UniversalRouter.uniswapV3SwapCallback( amount0Delta=7353724943701845228814457759, amount1Delta=-547609627946011329, data=0x0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000D01777F28CBBB8B8BAD19A99BB133B1AF356490F000000000000000000000000000000000000000000000000000000000000002B1CE270557C1F68CFB577B856766310BF8B47FD9C002710C02AAA39B223FE8D0A0E5C4F27EAD9083C756CC2000000000000000000000000000000000000000000 )
      • Permit2.transferFrom( from=0xd01777F28CBbb8B8bAD19A99BB133B1Af356490f, to=0x95Ad5d38aD6BB17500E9a57BFeb6569B36A94EA5, amount=7353724943701845228814457759, token=0x1ce270557C1f68Cfb577b856766310Bf8B47FD9C )
        • MongCoin.transferFrom( from=0xd01777F28CBbb8B8bAD19A99BB133B1Af356490f, to=0x95Ad5d38aD6BB17500E9a57BFeb6569B36A94EA5, amount=7353724943701845228814457759 ) => ( True )
        • MongCoin.balanceOf( account=0x95Ad5d38aD6BB17500E9a57BFeb6569B36A94EA5 ) => ( 1780813286156920942710354977051 )
        • WETH9.balanceOf( 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B ) => ( 547609627946011329 )
        • WETH9.withdraw( wad=547609627946011329 )
          • ETH 0.547609627946011329 UniversalRouter.CALL( )
          • ETH 0.547609627946011329 0xd01777f28cbbb8b8bad19a99bb133b1af356490f.CALL( )
            File 1 of 5: 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 5: 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 5: 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 4 of 5: MongCoin
            1
            2
            3
            4
            5
            6
            7
            8
            9
            10
            11
            12
            13
            14
            15
            16
            // SPDX-License-Identifier: MIT
            // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
            pragma solidity ^0.8.0;
            import "./IERC20.sol";
            import "./extensions/IERC20Metadata.sol";
            import "../../utils/Context.sol";
            /**
            * @dev Implementation of the {IERC20} interface.
            *
            * This implementation is agnostic to the way tokens are created. This means
            * that a supply mechanism has to be added in a derived contract using {_mint}.
            * For a generic mechanism see {ERC20PresetMinterPauser}.
            *
            * TIP: For a detailed writeup see our guide
            * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
            * to implement supply mechanisms].
            XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

            File 5 of 5: Permit2
            1
            2
            3
            4
            5
            6
            7
            8
            9
            10
            11
            12
            13
            14
            15
            16
            // SPDX-License-Identifier: AGPL-3.0-only
            pragma solidity >=0.8.0;
            /// @notice Modern and gas efficient ERC20 + EIP-2612 implementation.
            /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol)
            /// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol)
            /// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it.
            abstract contract ERC20 {
            /*//////////////////////////////////////////////////////////////
            EVENTS
            //////////////////////////////////////////////////////////////*/
            event Transfer(address indexed from, address indexed to, uint256 amount);
            event Approval(address indexed owner, address indexed spender, uint256 amount);
            /*//////////////////////////////////////////////////////////////
            METADATA STORAGE
            //////////////////////////////////////////////////////////////*/
            string public name;
            XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX