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

    Type Alias TimelineOptions

    Bounds a Ledger.timeline read. The default streams the whole lot history oldest-first; order: 'desc' with limit/offset reads the newest run, so the maturity tail can stop once it has covered the live balance.

    Storage for the SQL pushdown.

    type TimelineOptions = {
        limit?: number;
        offset?: number;
        order?: "asc" | "desc";
    }
    Index
    limit?: number
    offset?: number
    order?: "asc" | "desc"