Skip to main content

Documentation Index

Fetch the complete documentation index at: https://tech.ramses.xyz/llms.txt

Use this file to discover all available pages before exploring further.

Contains pool methods that can be called by anyone

Functions

initialize

  function initialize(
    uint160 sqrtPriceX96
  ) external
Sets the initial price for the pool Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value

Parameters:

NameTypeDescription
sqrtPriceX96uint160the initial sqrt price of the pool as a Q64.96

mint

  function mint(
    address recipient,
    uint256 index,
    int24 tickLower,
    int24 tickUpper,
    uint128 amount,
    bytes data
  ) external returns (uint256 amount0, uint256 amount1)
Adds liquidity for the given recipient/index/tickLower/tickUpper position The caller of this method receives a callback in the form of IUniswapV3MintCallback#uniswapV3MintCallback in which they must pay any token0 or token1 owed for the liquidity. The amount of token0/token1 due depends on tickLower, tickUpper, the amount of liquidity, and the current price.

Parameters:

NameTypeDescription
recipientaddressThe address for which the liquidity will be created
indexuint256The index of the position (distinguishes multiple positions at the same range)
tickLowerint24The lower tick of the position in which to add liquidity
tickUpperint24The upper tick of the position in which to add liquidity
amountuint128The amount of liquidity to mint
databytesAny data that should be passed through to the callback

Return Values:

NameTypeDescription
amount0uint256The amount of token0 that was paid to mint the given amount of liquidity. Matches the value in the callback
amount1uint256The amount of token1 that was paid to mint the given amount of liquidity. Matches the value in the callback

collect

  function collect(
    address recipient,
    uint256 index,
    int24 tickLower,
    int24 tickUpper,
    uint128 amount0Requested,
    uint128 amount1Requested
  ) external returns (uint128 amount0, uint128 amount1)
Collects tokens owed to a position Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity. Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity.

Parameters:

NameTypeDescription
recipientaddressThe address which should receive the fees collected
indexuint256The index of the position
tickLowerint24The lower tick of the position for which to collect fees
tickUpperint24The upper tick of the position for which to collect fees
amount0Requesteduint128How much token0 should be withdrawn from the fees owed
amount1Requesteduint128How much token1 should be withdrawn from the fees owed

Return Values:

NameTypeDescription
amount0uint128The amount of fees collected in token0
amount1uint128The amount of fees collected in token1

burn

  function burn(
    uint256 index,
    int24 tickLower,
    int24 tickUpper,
    uint128 amount
  ) external returns (uint256 amount0, uint256 amount1)
Burn liquidity from the sender and account tokens owed for the liquidity to the position Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0 Fees must be collected separately via a call to #collect

Parameters:

NameTypeDescription
indexuint256The index of the position
tickLowerint24The lower tick of the position for which to burn liquidity
tickUpperint24The upper tick of the position for which to burn liquidity
amountuint128How much liquidity to burn

Return Values:

NameTypeDescription
amount0uint256The amount of token0 sent to the recipient
amount1uint256The amount of token1 sent to the recipient

swap

  function swap(
    address recipient,
    bool zeroForOne,
    int256 amountSpecified,
    uint160 sqrtPriceLimitX96,
    bytes data
  ) external returns (int256 amount0, int256 amount1)
Swap token0 for token1, or token1 for token0 The caller of this method receives a callback in the form of IUniswapV3SwapCallback#uniswapV3SwapCallback

Parameters:

NameTypeDescription
recipientaddressThe address to receive the output of the swap
zeroForOneboolThe direction of the swap, true for token0 to token1, false for token1 to token0
amountSpecifiedint256The amount of the swap, which implicitly configures the swap as exact input (positive), or exact output (negative)
sqrtPriceLimitX96uint160The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this value after the swap. If one for zero, the price cannot be greater than this value after the swap
databytesAny data passed through to the callback

Return Values:

NameTypeDescription
amount0int256The delta of the balance of token0 of the pool, exact when negative, minimum when positive
amount1int256The delta of the balance of token1 of the pool, exact when negative, minimum when positive

flash

  function flash(
    address recipient,
    uint256 amount0,
    uint256 amount1,
    bytes data
  ) external
Receive token0 and/or token1 and pay it back, plus a fee, in the callback The caller of this method receives a callback in the form of IUniswapV3FlashCallback#uniswapV3FlashCallback Can be used to donate underlying tokens pro-rata to currently in-range liquidity providers by calling with 0 amount and sending the donation amount(s) from the callback

Parameters:

NameTypeDescription
recipientaddressThe address which will receive the token0 and token1 amounts
amount0uint256The amount of token0 to send
amount1uint256The amount of token1 to send
databytesAny data to be passed through to the callback

increaseObservationCardinalityNext

  function increaseObservationCardinalityNext(
    uint16 observationCardinalityNext
  ) external
Increase the maximum number of price and liquidity observations that this pool will store This method is no-op if the pool already has an observationCardinalityNext greater than or equal to the input observationCardinalityNext.

Parameters:

NameTypeDescription
observationCardinalityNextuint16The desired minimum number of observations for the pool to store