Get Tick Info
1. Fetch Ticks
Description: Retrieves the
ticks
value from a givenPool
.Params:
pool: the object of the pool.
start: use the vector to be option.
limit: the max return tick amounts.
Return:
ticks
2. Get tick spacing
Description: Retrieves the
tick_spacing
value from a givenTickManager
.Parameters:
manager
: Reference to aTickManager
object from which thetick_spacing
is fetched.
Return: Returns the
tick_spacing
value as an unsigned 32-bit integer (u32
).
3. Get tick index
Description: Gets the index of a specific
Tick
.Parameters:
tick
: Reference to aTick
object from which the index is fetched.
Return: Returns the index of the tick as a signed 32-bit integer (
I32
).
4. Get sqrt price
Description: Retrieves the square root price for a specific
Tick
.Parameters:
tick
: Reference to aTick
object from which the square root price is obtained.
Return: Returns the square root price as an unsigned 128-bit integer (
u128
).
5. Get liquidity net
Description: Fetches the net liquidity for a specific
Tick
.Parameters:
tick
: Reference to aTick
object from which the net liquidity value is fetched.
Return: Returns the net liquidity as a signed 128-bit integer (
I128
).
6. Get liquidity gross
Description: Retrieves the gross liquidity for a specific
Tick
.Parameters:
tick
: Reference to aTick
object from which the gross liquidity is obtained.
Return: Returns the gross liquidity as an unsigned 128-bit integer (
u128
).
7. Gets the outside fee growth for Tick
Description: Gets the outside fee growth for a specific
Tick
, consisting of two components.Parameters:
tick
: Reference to aTick
object.
Return: Returns a tuple of two unsigned 128-bit integers (
(u128, u128)
) representing the outside fee growth.
8. Get the rewards growth outside
Description: Provides a reference to a vector containing the rewards growth data for a specific
Tick
.Parameters:
tick
: Reference to aTick
object.
Return: Returns a reference to a vector of unsigned 128-bit integers (
&vector<u128>
) that holds the rewards growth data.
Last updated