From a1a5ea743815a61459063b573d4f8da276c000b6 Mon Sep 17 00:00:00 2001 From: Thrilok Kumar Date: Tue, 21 Dec 2021 17:38:05 +0530 Subject: [PATCH] Added comments --- contracts/polygon/connectors/uniswap/v3/main.sol | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/contracts/polygon/connectors/uniswap/v3/main.sol b/contracts/polygon/connectors/uniswap/v3/main.sol index f0f46689..4cb74195 100644 --- a/contracts/polygon/connectors/uniswap/v3/main.sol +++ b/contracts/polygon/connectors/uniswap/v3/main.sol @@ -12,6 +12,14 @@ import {Events} from "./events.sol"; abstract contract UniswapResolver is Helpers, Events { + /** + * @dev Create and Initialize pool + * @notice Create and Initialize new pool if required + * @param tokenA tokenA addreess + * @param tokenB tokenB addreess + * @param fee fee percentage + * @param initialTick Initial tick for the pool + */ function createAndInitializePool ( address tokenA, address tokenB,