import { ProofOps, ProofOpsAmino, ProofOpsSDKType } from "../../../tendermint/crypto/proof"; import { BinaryReader, BinaryWriter } from "../../../binary"; import { JsonSafe } from "../../../json-safe"; /** MsgSubmitQueryResponse represents a message type to fulfil a query request. */ export interface MsgSubmitQueryResponse { chainId: string; queryId: string; result: Uint8Array; proofOps?: ProofOps; height: bigint; fromAddress: string; } export interface MsgSubmitQueryResponseProtoMsg { typeUrl: "/stride.interchainquery.v1.MsgSubmitQueryResponse"; value: Uint8Array; } /** * MsgSubmitQueryResponse represents a message type to fulfil a query request. * @name MsgSubmitQueryResponseAmino * @package stride.interchainquery.v1 * @see proto type: stride.interchainquery.v1.MsgSubmitQueryResponse */ export interface MsgSubmitQueryResponseAmino { chain_id?: string; query_id?: string; result?: string; proof_ops?: ProofOpsAmino; height?: string; from_address?: string; } export interface MsgSubmitQueryResponseAminoMsg { type: "interchainquery/MsgSubmitQueryResponse"; value: MsgSubmitQueryResponseAmino; } /** MsgSubmitQueryResponse represents a message type to fulfil a query request. */ export interface MsgSubmitQueryResponseSDKType { chain_id: string; query_id: string; result: Uint8Array; proof_ops?: ProofOpsSDKType; height: bigint; from_address: string; } /** * MsgSubmitQueryResponseResponse defines the MsgSubmitQueryResponse response * type. */ export interface MsgSubmitQueryResponseResponse { } export interface MsgSubmitQueryResponseResponseProtoMsg { typeUrl: "/stride.interchainquery.v1.MsgSubmitQueryResponseResponse"; value: Uint8Array; } /** * MsgSubmitQueryResponseResponse defines the MsgSubmitQueryResponse response * type. * @name MsgSubmitQueryResponseResponseAmino * @package stride.interchainquery.v1 * @see proto type: stride.interchainquery.v1.MsgSubmitQueryResponseResponse */ export interface MsgSubmitQueryResponseResponseAmino { } export interface MsgSubmitQueryResponseResponseAminoMsg { type: "/stride.interchainquery.v1.MsgSubmitQueryResponseResponse"; value: MsgSubmitQueryResponseResponseAmino; } /** * MsgSubmitQueryResponseResponse defines the MsgSubmitQueryResponse response * type. */ export interface MsgSubmitQueryResponseResponseSDKType { } export declare const MsgSubmitQueryResponse: { typeUrl: string; aminoType: string; is(o: any): o is MsgSubmitQueryResponse; isSDK(o: any): o is MsgSubmitQueryResponseSDKType; isAmino(o: any): o is MsgSubmitQueryResponseAmino; encode(message: MsgSubmitQueryResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitQueryResponse; fromJSON(object: any): MsgSubmitQueryResponse; toJSON(message: MsgSubmitQueryResponse): JsonSafe; fromPartial(object: Partial): MsgSubmitQueryResponse; fromAmino(object: MsgSubmitQueryResponseAmino): MsgSubmitQueryResponse; toAmino(message: MsgSubmitQueryResponse): MsgSubmitQueryResponseAmino; fromAminoMsg(object: MsgSubmitQueryResponseAminoMsg): MsgSubmitQueryResponse; toAminoMsg(message: MsgSubmitQueryResponse): MsgSubmitQueryResponseAminoMsg; fromProtoMsg(message: MsgSubmitQueryResponseProtoMsg): MsgSubmitQueryResponse; toProto(message: MsgSubmitQueryResponse): Uint8Array; toProtoMsg(message: MsgSubmitQueryResponse): MsgSubmitQueryResponseProtoMsg; }; export declare const MsgSubmitQueryResponseResponse: { typeUrl: string; is(o: any): o is MsgSubmitQueryResponseResponse; isSDK(o: any): o is MsgSubmitQueryResponseResponseSDKType; isAmino(o: any): o is MsgSubmitQueryResponseResponseAmino; encode(_: MsgSubmitQueryResponseResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitQueryResponseResponse; fromJSON(_: any): MsgSubmitQueryResponseResponse; toJSON(_: MsgSubmitQueryResponseResponse): JsonSafe; fromPartial(_: Partial): MsgSubmitQueryResponseResponse; fromAmino(_: MsgSubmitQueryResponseResponseAmino): MsgSubmitQueryResponseResponse; toAmino(_: MsgSubmitQueryResponseResponse): MsgSubmitQueryResponseResponseAmino; fromAminoMsg(object: MsgSubmitQueryResponseResponseAminoMsg): MsgSubmitQueryResponseResponse; fromProtoMsg(message: MsgSubmitQueryResponseResponseProtoMsg): MsgSubmitQueryResponseResponse; toProto(message: MsgSubmitQueryResponseResponse): Uint8Array; toProtoMsg(message: MsgSubmitQueryResponseResponse): MsgSubmitQueryResponseResponseProtoMsg; };