@pwngh/economy-lab
    Preparing search index...

    Type Alias ArchiveState

    The archival mover's persisted state (see src/worker/archive.ts). Postings with seq <= throughSeq have been re-proved, copied to the archive sink, and deleted from hot storage. root/signature seal the full ArchiveHead set as of this state (the seal_heads construction reapplied to the archival boundary), so the pruned edge is verifiable at every instant — including mid-run, which cursor marks for resume.

    type ArchiveState = {
        at: number;
        checkpointId: string;
        cursor: number | null;
        root: string;
        signature: string;
        throughSeq: number;
    }
    Index
    at: number
    checkpointId: string
    cursor: number | null
    root: string
    signature: string
    throughSeq: number