Skip to main content

MsgGrantAllowance

The grant allowance message class representation.


class MsgGrantAllowance extends TransactionMsg<MsgGrantAllowanceValue> {
static TYPE = "/cosmos.feegrant.v1beta1.MsgGrantAllowance";
constructor({ granter, grantee, allowance }: MsgGrantAllowanceValue);
}


MsgGrantAllowanceValue

Defines the grant allowance message value.


type MsgGrantAllowanceValue = {
granter: string;
grantee: string;
allowance: BasicAllowance;
};