// Since: cosmos-sdk 0.43 // @generated by protoc-gen-connect-es v1.1.3 with parameter "target=ts" // @generated from file cosmos/feegrant/v1beta1/tx.proto (package cosmos.feegrant.v1beta1, syntax proto3) /* eslint-disable */ // @ts-nocheck import { MsgGrantAllowance, MsgGrantAllowanceResponse, MsgRevokeAllowance, MsgRevokeAllowanceResponse } from "./tx_pb.js"; import { MethodKind } from "@bufbuild/protobuf"; /** * Msg defines the feegrant msg service. * * @generated from service cosmos.feegrant.v1beta1.Msg */ export const Msg = { typeName: "cosmos.feegrant.v1beta1.Msg", methods: { /** * GrantAllowance grants fee allowance to the grantee on the granter's * account with the provided expiration time. * * @generated from rpc cosmos.feegrant.v1beta1.Msg.GrantAllowance */ grantAllowance: { name: "GrantAllowance", I: MsgGrantAllowance, O: MsgGrantAllowanceResponse, kind: MethodKind.Unary, }, /** * RevokeAllowance revokes any fee allowance of granter's account that * has been granted to the grantee. * * @generated from rpc cosmos.feegrant.v1beta1.Msg.RevokeAllowance */ revokeAllowance: { name: "RevokeAllowance", I: MsgRevokeAllowance, O: MsgRevokeAllowanceResponse, kind: MethodKind.Unary, }, } } as const;