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

    Type Alias ReconcileFeed

    Host-implemented feed that supplies both sides of one window: the processor's settled records and our ledger's records of the same events. It exists because neither the processor port nor the ledger store offers a "list everything settled in this window" read.

    type ReconcileFeed = {
        pull(window: Range, options?: CallOptions): Promise<ReconcileInputs>;
    }
    Index