Skip to main content

MsgRevokeAllowance

The revoke allowance message class representation.


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


MsgRevokeAllowanceValue

Defines the revoke allowance message value.


type MsgRevokeAllowanceValue = {
granter: string;
grantee: string;
};