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

    Aggregate market configuration and state for a single perpetuals market.

    interface PerpetualsMarketData {
        collateralCoinType: string;
        collateralPrice: number;
        estimatedFundingRate: number;
        indexPrice: number;
        marketParams: PerpetualsMarketParams;
        marketState: PerpetualsMarketState;
        nextFundingTimestampMs: bigint;
        objectId: string;
        packageId: string;
    }
    Index
    collateralCoinType: string

    Collateral coin type used for margin in this market.

    collateralPrice: number

    Current price of collateral in USD or the platform's base unit.

    estimatedFundingRate: number

    Estimated funding rate for the next funding interval.

    indexPrice: number

    Oracle/index price of the base asset for this market.

    Static configuration parameters for this market.

    Dynamic runtime state (funding, open interest, etc.).

    nextFundingTimestampMs: bigint

    Timestamp (ms) for the next funding event, as a bigint.

    objectId: string

    Object ID for the market (clearing house) on-chain.

    packageId: string

    Package ID of the deployed perpetuals contract.