For the complete documentation index, see llms.txt. This page is also available as Markdown.

PoolMetadata

Git Source

Structure to hold metadata for a Turbine liquidity pool

struct PoolMetadata {
address token0;
address token1;
uint24 fee;
address lpToken;
}

Properties

Name
Type
Description

token0

address

First token of a pool

token1

address

Second token of a pool (tokens must be sorted, i.e. token1 > token0)

fee

uint24

How much above the mid-price the pool is willing to trade for (in hundredths of bip, i.e. 10000 = 1%)

lpToken

address

Address of the LP token of the pool

Last updated

Was this helpful?