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

    Interface Statement

    One page of an account's entries. Paging is by narrowing the Range, window by window.

    interface Statement {
        account: AccountRef;
        cursor: string | null;
        entries: readonly { amount: Amount; postedAt: number; txnId: string }[];
    }
    Index
    account: AccountRef
    cursor: string | null

    Reserved. No read accepts a cursor and every engine returns null; page by the range.

    entries: readonly { amount: Amount; postedAt: number; txnId: string }[]

    In commit order; each amount is the leg's signed effect on the account's balance (balanceDelta), not the raw debit-positive leg.