PoolMetadata
struct PoolMetadata {
address token0;
address token1;
uint24 fee;
address lpToken;
}Name
Type
Description
Last updated
Was this helpful?
Structure to hold metadata for a Turbine liquidity pool
struct PoolMetadata {
address token0;
address token1;
uint24 fee;
address lpToken;
}Properties
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?
Was this helpful?