ordspv
    Preparing search index...

    Interface HeaderTrustReport

    interface HeaderTrustReport {
        anchored: boolean;
        anchoredBySync?: boolean;
        checkpointHit: boolean;
        independentSources: number;
        sourcesAgreed: number;
        sourcesQueried: number;
        tipHeight?: number;
    }
    Index
    anchored: boolean

    the header is pinned by a checkpoint, a synced chain, or enough independent sources

    anchoredBySync?: boolean

    set when the anchor was a locally validated header chain (headersync)

    checkpointHit: boolean
    independentSources: number

    distinct independent sources supporting the header: the proof source (when known) plus each agreeing attester. 0 for checkpoint/sync anchors, which pin the header without live sources.

    sourcesAgreed: number

    attesting sources whose hash-at-height matched the header

    sourcesQueried: number

    attesting sources queried (proof-building backend excluded)

    tipHeight?: number