Documentation
    Preparing search index...

    Interface MarketSummary

    A resolved live market: its on-chain state summary for the caller.

    interface MarketSummary {
        admissionTickSize: number;
        expiryMs: bigint;
        id: string;
        mintPaused: boolean;
        nav: number;
        referencePrice: number | null;
        tickSize: number;
    }
    Index
    admissionTickSize: number

    Coarser step new mint strikes must align to. A numeric strike must be a whole multiple of this (the market's referencePrice is the one exception the chain admits off-grid); otherwise the mint aborts EInvalidAdmissionTick.

    expiryMs: bigint
    id: string
    mintPaused: boolean
    nav: number
    referencePrice: number | null

    The window's anchor strike in USD, or null until the keeper seeds it.

    tickSize: number