getPools

Retrieve all turbos pools.

Signature

getPool(withLocked?: boolean): Promise<Pool.Pool[]>

Params

withLocked: Retrieve all turbos pools including locked ones. Defaults false

Example

// unlocked
const pools = await sdk.pool.getPools();

// ulocked + locked
const pools = await sdk.pool.getPools(true);

Last updated