Documentation
    Preparing search index...

    Interface PricerSnapshot

    A resolved pricer snapshot read from the chain: the decimal forward + rolled SVI the client-side math consumes, plus the oracle source timestamps behind it (ms; for staleness display — Pyth is 0 when no usable spot existed). The Block-Scholes entries are the provider's PER-UPDATE source timestamps (value_timestamp for spot/forward, svi_timestamp for SVI) — the clocks freshness and the SVI roll-down anchor on.

    interface PricerSnapshot {
        forward: number;
        sources: {
            blockScholesForwardMs: number;
            blockScholesSpotMs: number;
            blockScholesSviMs: number;
            pythSpotMs: number;
        };
        svi: Svi;
    }

    Hierarchy (View Summary)

    Index
    forward: number

    Forward price the digital settles against, in decimal (same units as strike).

    sources: {
        blockScholesForwardMs: number;
        blockScholesSpotMs: number;
        blockScholesSviMs: number;
        pythSpotMs: number;
    }
    svi: Svi