Skip to main content

BasicAllowance

The basic allowance class representation.


class BasicAllowance extends TransactionMsg<BasicAllowanceValue> {
static TYPE = "/cosmos.feegrant.v1beta1.BasicAllowance";
constructor({ spendLimit, expiration }: BasicAllowanceValue);
}


BasicAllowanceValue

Defines the basic allowance value.


type BasicAllowanceValue = {
spendLimit: { amount: string; denom: string }[];
expiration?: string;
};