// package: ibc.applications.transfer.v1 // file: ibc/applications/transfer/v1/tx.proto /* tslint:disable */ /* eslint-disable */ import * as grpc from "grpc"; import * as ibc_applications_transfer_v1_tx_pb from "../../../../ibc/applications/transfer/v1/tx_pb"; import * as gogoproto_gogo_pb from "../../../../gogoproto/gogo_pb"; import * as cosmos_base_v1beta1_coin_pb from "../../../../cosmos/base/v1beta1/coin_pb"; import * as ibc_core_client_v1_client_pb from "../../../../ibc/core/client/v1/client_pb"; interface IMsgService extends grpc.ServiceDefinition { transfer: IMsgService_ITransfer; } interface IMsgService_ITransfer extends grpc.MethodDefinition { path: "/ibc.applications.transfer.v1.Msg/Transfer"; requestStream: false; responseStream: false; requestSerialize: grpc.serialize; requestDeserialize: grpc.deserialize; responseSerialize: grpc.serialize; responseDeserialize: grpc.deserialize; } export const MsgService: IMsgService; export interface IMsgServer { transfer: grpc.handleUnaryCall; } export interface IMsgClient { transfer(request: ibc_applications_transfer_v1_tx_pb.MsgTransfer, callback: (error: grpc.ServiceError | null, response: ibc_applications_transfer_v1_tx_pb.MsgTransferResponse) => void): grpc.ClientUnaryCall; transfer(request: ibc_applications_transfer_v1_tx_pb.MsgTransfer, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: ibc_applications_transfer_v1_tx_pb.MsgTransferResponse) => void): grpc.ClientUnaryCall; transfer(request: ibc_applications_transfer_v1_tx_pb.MsgTransfer, metadata: grpc.Metadata, options: Partial, callback: (error: grpc.ServiceError | null, response: ibc_applications_transfer_v1_tx_pb.MsgTransferResponse) => void): grpc.ClientUnaryCall; } export class MsgClient extends grpc.Client implements IMsgClient { constructor(address: string, credentials: grpc.ChannelCredentials, options?: object); public transfer(request: ibc_applications_transfer_v1_tx_pb.MsgTransfer, callback: (error: grpc.ServiceError | null, response: ibc_applications_transfer_v1_tx_pb.MsgTransferResponse) => void): grpc.ClientUnaryCall; public transfer(request: ibc_applications_transfer_v1_tx_pb.MsgTransfer, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: ibc_applications_transfer_v1_tx_pb.MsgTransferResponse) => void): grpc.ClientUnaryCall; public transfer(request: ibc_applications_transfer_v1_tx_pb.MsgTransfer, metadata: grpc.Metadata, options: Partial, callback: (error: grpc.ServiceError | null, response: ibc_applications_transfer_v1_tx_pb.MsgTransferResponse) => void): grpc.ClientUnaryCall; }