@bandprotocol/bandchain.js
Version:
TypeScript library for Cosmos SDK and BandChain
15 lines (14 loc) • 516 B
JavaScript
//@ts-nocheck
import { MsgGrantAllowance, MsgRevokeAllowance } from "./tx";
export const AminoConverter = {
"/cosmos.feegrant.v1beta1.MsgGrantAllowance": {
aminoType: "cosmos-sdk/MsgGrantAllowance",
toAmino: MsgGrantAllowance.toAmino,
fromAmino: MsgGrantAllowance.fromAmino
},
"/cosmos.feegrant.v1beta1.MsgRevokeAllowance": {
aminoType: "cosmos-sdk/MsgRevokeAllowance",
toAmino: MsgRevokeAllowance.toAmino,
fromAmino: MsgRevokeAllowance.fromAmino
}
};