Query Pool Data
1. Get the list of pools
const poolList = await sdk.Pool.getPoolList()2. Get information about a pool
const pool = await sdk.Pool.getPool(poolAddress)3. Get the list of ticks for a pool
const pool = await sdk.Pool.getPool(poolAddress)
const res = await sdk.Pool.getPoolTickList(pool.tick_manager.id)4. Get the token amounts for a pool
Last updated