aftermath-ts-sdk - v3.3.3
    Preparing search index...

    Basic statistical data about a pool, including volume, TVL, supply per LPS, fees, and APR.

    interface PoolStats {
        apr: number;
        fees: number;
        lpPrice: number;
        supplyPerLps: number[];
        tvl: number;
        volume: number;
    }
    Index
    apr: number

    The approximate annual percentage rate (yield) derived from fees, volume, or other data. This can be used to estimate LP profits or compare pools.

    fees: number

    The total fees generated by the pool in a given period (often 24h or 7d).

    lpPrice: number

    The price of 1 LP token in reference to a stable baseline (USD).

    supplyPerLps: number[]

    A representation of the distribution of supply among liquidity providers, e.g., how many tokens each user holds. May be used for advanced UI.

    tvl: number

    The total value locked in the pool, often in USD or stablecoin value.

    volume: number

    The 24-hour volume or some aggregated volume metric for the pool.