• Calculate the status of a position The status can be one of three values:

    • InRange: The position is in range
    • BelowRange: The position is below the range
    • AboveRange: The position is above the range

    Parameters

    • sqrt_price - A u128 integer representing the sqrt price of the pool
    • tick_index_1 - A i32 integer representing the first tick index of the position
    • tick_index_2 - A i32 integer representing the second tick index of the position

    Returns

    • A PositionStatus enum value indicating the status of the position

    Parameters

    • current_sqrt_price: bigint
    • tick_index_1: number
    • tick_index_2: number

    Returns PositionStatus