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

    Interface PoolDataPoint

    Represents a data point for pool analytics, including a Unix timestamp (in ms) and a numeric value (e.g., volume or fee data).

    interface PoolDataPoint {
        time: number;
        value: number;
    }
    Index
    time: number

    The timestamp supplied by the analytics API.

    value: number

    The metric value at time.