Transaction Hash:
Block:
17194785 at May-05-2023 01:39:35 PM +UTC
Transaction Fee:
0.021852956105982144 ETH
$58.31
Gas Used:
142,956 Gas / 152.864910224 Gwei
Emitted Events:
289 |
WETH9.Deposit( dst=[Receiver] UniversalRouter, wad=90000000000000000 )
|
290 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=[Receiver] UniversalRouter, wad=90000000000000000 )
|
291 |
MongCoin.Transfer( from=UniswapV3Pool, to=[Sender] 0xb81e82cf70d5f5770734857529ed0fcd32ebd3fd, value=1100714253264871936004359819 )
|
292 |
WETH9.Transfer( src=[Receiver] UniversalRouter, dst=UniswapV3Pool, wad=90000000000000000 )
|
293 |
UniswapV3Pool.Swap( sender=[Receiver] UniversalRouter, recipient=[Sender] 0xb81e82cf70d5f5770734857529ed0fcd32ebd3fd, amount0=-1100714253264871936004359819, amount1=90000000000000000, sqrtPriceX96=713034937251739393751397, liquidity=16584156442944820203580748, tick=-232378 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1ce27055...f8B47FD9C | |||||
0x1f9090aa...8e676c326
Miner
| 0.660610362903037882 Eth | 0.660624658503037882 Eth | 0.0000142956 | ||
0x95Ad5d38...B36A94EA5 | (Uniswap V3: $MONG) | ||||
0xB81E82cF...D32EBD3fD |
0.189264831977524846 Eth
Nonce: 48
|
0.077411875871542702 Eth
Nonce: 49
| 0.111852956105982144 | ||
0xC02aaA39...83C756Cc2 | 3,598,072.864637127345546307 Eth | 3,598,072.954637127345546307 Eth | 0.09 |
Execution Trace
ETH 0.09
UniversalRouter.execute( commands=0x0B00, inputs=[AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABP76F7ckAAA==, AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABP76F7ckAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0HT0o7IdvcWFJqEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArwCqqObIj/o0KDlxPJ+rZCDx1bMIAJxAc4nBVfB9oz7V3uFZ2YxC/i0f9nAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==], deadline=1683295631 )
- ETH 0.09
WETH9.CALL( )
-
WETH9.transfer( dst=0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B, wad=90000000000000000 ) => ( True )
UniswapV3Pool.swap( recipient=0xB81E82cF70d5F5770734857529ED0fcD32EBD3fD, zeroForOne=False, amountSpecified=90000000000000000, sqrtPriceLimitX96=1461446703485210103287273052203988822378723970341, data=0x0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000EF1C6E67703C7BD7107EED8303FBE6EC2554BF6B000000000000000000000000000000000000000000000000000000000000002BC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC20027101CE270557C1F68CFB577B856766310BF8B47FD9C000000000000000000000000000000000000000000 ) => ( amount0=-1100714253264871936004359819, amount1=90000000000000000 )
-
MongCoin.transfer( to=0xB81E82cF70d5F5770734857529ED0fcD32EBD3fD, amount=1100714253264871936004359819 ) => ( True )
-
WETH9.balanceOf( 0x95Ad5d38aD6BB17500E9a57BFeb6569B36A94EA5 ) => ( 84986483233528989603 )
UniversalRouter.uniswapV3SwapCallback( amount0Delta=-1100714253264871936004359819, amount1Delta=90000000000000000, data=0x0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000EF1C6E67703C7BD7107EED8303FBE6EC2554BF6B000000000000000000000000000000000000000000000000000000000000002BC02AAA39B223FE8D0A0E5C4F27EAD9083C756CC20027101CE270557C1F68CFB577B856766310BF8B47FD9C000000000000000000000000000000000000000000 )
-
WETH9.transfer( dst=0x95Ad5d38aD6BB17500E9a57BFeb6569B36A94EA5, wad=90000000000000000 ) => ( True )
-
-
WETH9.balanceOf( 0x95Ad5d38aD6BB17500E9a57BFeb6569B36A94EA5 ) => ( 85076483233528989603 )
-
File 1 of 4: UniversalRouter
File 2 of 4: WETH9
File 3 of 4: UniswapV3Pool
File 4 of 4: MongCoin
12345678910111213141516// SPDX-License-Identifier: GPL-3.0-or-laterpragma 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
File 2 of 4: WETH9
12345678910111213141516// 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;
File 3 of 4: UniswapV3Pool
12345678910111213141516// SPDX-License-Identifier: BUSL-1.1pragma 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';
File 4 of 4: MongCoin
12345678910111213141516// 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].