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

    Interface Lot

    One settlement lot for a top-up: an amount that becomes mature (eligible to be paid out) at maturesAt. The maturity calculation consumes these oldest-first (FIFO).

    interface Lot {
        amount: Amount;
        maturesAt: number;
        source: string;
        toppedUpAt: number;
        txnId: string;
    }
    Index
    amount: Amount
    maturesAt: number
    source: string

    Where the funds came from.

    toppedUpAt: number
    txnId: string