Documentation
    Preparing search index...

    Interface ActiveMarket

    One tradeable market as returned by read.markets().

    interface ActiveMarket {
        admissionTickSize: number;
        expiryMs: bigint;
        id: string;
        mintPaused: boolean;
        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
    referencePrice: number | null

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

    tickSize: number

    Strike granularity in USD (e.g. 0.01).