# Functions
No description provided by the author
*
* Computes a pool address
* @param factoryAddress The Uniswap V3 factory address
* @param tokenA The first token of the pair, irrespective of sort order
* @param tokenB The second token of the pair, irrespective of sort order
* @param fee The fee tier of the pool
* @returns The pool address
*/.
No description provided by the author
*
* Returns the sqrt ratio as a Q64.96 corresponding to a given ratio of amount1 and amount0
* @param amount1 The numerator amount i.e., the amount of token1
* @param amount0 The denominator amount i.e., the amount of token0
* @returns The sqrt ratio
*/.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
*
* Returns the sqrt ratio as a Q64.96 for the given tick.
*
* Returns the tick corresponding to a given sqrt ratio, s.t.
*
* Computes the maximum amount of liquidity received for a given amount of token0, token1,
* and the prices at the tick boundaries.
No description provided by the author
No description provided by the author
*
* Returns the first tick for which the given price is greater than or equal to the tick price
* @param price for which to return the closest tick that represents a price less than or equal to the input price,
* i.e.
*
* Returns a price object corresponding to the input tick and the base/quote token
* Inputs must be tokens because the address order is used to interpret the price represented by the tick
* @param baseToken the base token of the price
* @param quoteToken the quote token of the price
* @param tick the tick for which to return the price
*/.
# Variables
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
The sqrt ratio corresponding to the maximum tick that could be used on any pool.
No description provided by the author
The sqrt ratio corresponding to the minimum tick that could be used on any pool.
No description provided by the author