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

    Type Alias Rate

    An exchange rate as exact integers: the multiplier is rate / 10^scale. Each conversion names its own rounding (a payout floors, a top-up ceils), and rateId names the rate a transaction used.

    type Rate = {
        rate: bigint;
        rateId: string;
        scale: number;
    }
    Index
    rate: bigint
    rateId: string
    scale: number