Open position and add liquidity
Before you want to deposit liquidity, you need to choose an appropriate price range (corresponding to the tick range) to open a position. In most cases, opening a position and adding liquidity are supposed to be done simultaneously.
Function input params
pool_id: The object id about which pool you want to operation.
tick_lower: Represents the index of the lower tick boundary.
tick_upper: Represents the index of the upper tick boundary.
fix_amount_a: true means fixed coinA amount, false means fixed coinB amount
offer_amount_a:If fixed amount A, you must set amountA, amountB will be auto calculated by ClmmPoolUtil.estLiquidityAndcoinAmountFromOneAmounts().
offer_amount_b: f fixed amount B, you must set amountB, amountA will be auto calculated by ClmmPoolUtil.estLiquidityAndcoinAmountFromOneAmounts().
Example
Last updated