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

    Interface OrphanSweepSummary

    interface OrphanSweepSummary {
        escrowRefunds: { minor: string; sessionId: string; userId: string }[];
        failed: { code: string; sessionId: string }[];
        orphans: { ageMs: number; sessionId: string }[];
        scanned: number;
        settled: { mode: string; sessionId: string }[];
        skipped?: true;
    }
    Index
    escrowRefunds: { minor: string; sessionId: string; userId: string }[]

    Prefund escrow remainders this run returned to their owners (crashed-refund repair).

    failed: { code: string; sessionId: string }[]
    orphans: { ageMs: number; sessionId: string }[]

    Unsettled sessions and the age of their newest movement.

    scanned: number

    Session ids inspected this run (bounded by limit).

    settled: { mode: string; sessionId: string }[]

    Sessions this run finished (opt-in via settleOlderThanMs).

    skipped?: true

    Set when the store offers no session enumeration.