Interface IBigIntCoin

Like cosmjs's Coin, but with amount being a bigint instead of a string.

If you want a helper function for constructing

interface IBigIntCoin {
    amount: bigint;
    denom: string;
}

Hierarchy (view full)

Implemented by

Properties

Properties

amount: bigint
denom: string