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

    Interface Velocity

    A subject's recent spending, accumulated over one time window for the risk gate to check.

    interface Velocity {
        attempts: number;
        spent: Amount;
        subject: string;
        windowStart: number;
    }
    Index
    attempts: number

    How many attempts happened in this window.

    spent: Amount

    Total spent so far in this window.

    subject: string
    windowStart: number

    Epoch ms of the oldest attempt still inside the window; 0 when none are live.