import { PageRequest, PageRequestAmino, PageRequestSDKType, PageResponse, PageResponseAmino, PageResponseSDKType } from "../../../cosmos/base/query/v1beta1/pagination"; import { Flow, FlowAmino, FlowSDKType, FlowHistoryEntry, FlowHistoryEntryAmino, FlowHistoryEntrySDKType } from "./flow"; import { Params, ParamsAmino, ParamsSDKType } from "./params"; import { TrustlessAgent, TrustlessAgentAmino, TrustlessAgentSDKType } from "./trustless_agent"; import { Coin, CoinAmino, CoinSDKType } from "../../../cosmos/base/v1beta1/coin"; import { BinaryReader, BinaryWriter } from "../../../binary"; import { JsonSafe } from "../../../json-safe"; /** * QueryInterchainAccountFromAddressRequest is the request type for the * Query/InterchainAccountAddress RPC */ export interface QueryInterchainAccountFromAddressRequest { owner: string; connectionId: string; } export interface QueryInterchainAccountFromAddressRequestProtoMsg { typeUrl: "/intento.intent.v1.QueryInterchainAccountFromAddressRequest"; value: Uint8Array; } /** * QueryInterchainAccountFromAddressRequest is the request type for the * Query/InterchainAccountAddress RPC * @name QueryInterchainAccountFromAddressRequestAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryInterchainAccountFromAddressRequest */ export interface QueryInterchainAccountFromAddressRequestAmino { owner?: string; connection_id?: string; } export interface QueryInterchainAccountFromAddressRequestAminoMsg { type: "/intento.intent.v1.QueryInterchainAccountFromAddressRequest"; value: QueryInterchainAccountFromAddressRequestAmino; } /** * QueryInterchainAccountFromAddressRequest is the request type for the * Query/InterchainAccountAddress RPC */ export interface QueryInterchainAccountFromAddressRequestSDKType { owner: string; connection_id: string; } /** * QueryInterchainAccountFromAddressResponse the response type for the * Query/InterchainAccountAddress RPC */ export interface QueryInterchainAccountFromAddressResponse { interchainAccountAddress: string; } export interface QueryInterchainAccountFromAddressResponseProtoMsg { typeUrl: "/intento.intent.v1.QueryInterchainAccountFromAddressResponse"; value: Uint8Array; } /** * QueryInterchainAccountFromAddressResponse the response type for the * Query/InterchainAccountAddress RPC * @name QueryInterchainAccountFromAddressResponseAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryInterchainAccountFromAddressResponse */ export interface QueryInterchainAccountFromAddressResponseAmino { interchain_account_address?: string; } export interface QueryInterchainAccountFromAddressResponseAminoMsg { type: "/intento.intent.v1.QueryInterchainAccountFromAddressResponse"; value: QueryInterchainAccountFromAddressResponseAmino; } /** * QueryInterchainAccountFromAddressResponse the response type for the * Query/InterchainAccountAddress RPC */ export interface QueryInterchainAccountFromAddressResponseSDKType { interchain_account_address: string; } /** QueryFlowRequest is the request type for the Query/FlowRequest RPC */ export interface QueryFlowRequest { id: string; } export interface QueryFlowRequestProtoMsg { typeUrl: "/intento.intent.v1.QueryFlowRequest"; value: Uint8Array; } /** * QueryFlowRequest is the request type for the Query/FlowRequest RPC * @name QueryFlowRequestAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryFlowRequest */ export interface QueryFlowRequestAmino { id?: string; } export interface QueryFlowRequestAminoMsg { type: "/intento.intent.v1.QueryFlowRequest"; value: QueryFlowRequestAmino; } /** QueryFlowRequest is the request type for the Query/FlowRequest RPC */ export interface QueryFlowRequestSDKType { id: string; } /** QueryFlowResponse the response type for the Query/FlowRequest RPC */ export interface QueryFlowResponse { flow: Flow; } export interface QueryFlowResponseProtoMsg { typeUrl: "/intento.intent.v1.QueryFlowResponse"; value: Uint8Array; } /** * QueryFlowResponse the response type for the Query/FlowRequest RPC * @name QueryFlowResponseAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryFlowResponse */ export interface QueryFlowResponseAmino { flow?: FlowAmino; } export interface QueryFlowResponseAminoMsg { type: "/intento.intent.v1.QueryFlowResponse"; value: QueryFlowResponseAmino; } /** QueryFlowResponse the response type for the Query/FlowRequest RPC */ export interface QueryFlowResponseSDKType { flow: FlowSDKType; } /** * QueryFlowHistoryRequest is the request type for the * Query/QueryFlowHistoryRequest RPC */ export interface QueryFlowHistoryRequest { /** id of the flow */ id: string; /** Pagination defines an optional pagination for the request. */ pagination?: PageRequest; } export interface QueryFlowHistoryRequestProtoMsg { typeUrl: "/intento.intent.v1.QueryFlowHistoryRequest"; value: Uint8Array; } /** * QueryFlowHistoryRequest is the request type for the * Query/QueryFlowHistoryRequest RPC * @name QueryFlowHistoryRequestAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryFlowHistoryRequest */ export interface QueryFlowHistoryRequestAmino { /** * id of the flow */ id?: string; /** * Pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } export interface QueryFlowHistoryRequestAminoMsg { type: "/intento.intent.v1.QueryFlowHistoryRequest"; value: QueryFlowHistoryRequestAmino; } /** * QueryFlowHistoryRequest is the request type for the * Query/QueryFlowHistoryRequest RPC */ export interface QueryFlowHistoryRequestSDKType { id: string; pagination?: PageRequestSDKType; } /** * QueryFlowHistoryResponse the response type for the * Query/QueryFlowHistoryResponse RPC */ export interface QueryFlowHistoryResponse { history: FlowHistoryEntry[]; /** Pagination defines the pagination in the response. */ pagination?: PageResponse; } export interface QueryFlowHistoryResponseProtoMsg { typeUrl: "/intento.intent.v1.QueryFlowHistoryResponse"; value: Uint8Array; } /** * QueryFlowHistoryResponse the response type for the * Query/QueryFlowHistoryResponse RPC * @name QueryFlowHistoryResponseAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryFlowHistoryResponse */ export interface QueryFlowHistoryResponseAmino { history?: FlowHistoryEntryAmino[]; /** * Pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } export interface QueryFlowHistoryResponseAminoMsg { type: "/intento.intent.v1.QueryFlowHistoryResponse"; value: QueryFlowHistoryResponseAmino; } /** * QueryFlowHistoryResponse the response type for the * Query/QueryFlowHistoryResponse RPC */ export interface QueryFlowHistoryResponseSDKType { history: FlowHistoryEntrySDKType[]; pagination?: PageResponseSDKType; } /** QueryFlowsRequest is the request type for the Query/FlowsRequest RPC */ export interface QueryFlowsRequest { /** Pagination defines an optional pagination for the request. */ pagination?: PageRequest; } export interface QueryFlowsRequestProtoMsg { typeUrl: "/intento.intent.v1.QueryFlowsRequest"; value: Uint8Array; } /** * QueryFlowsRequest is the request type for the Query/FlowsRequest RPC * @name QueryFlowsRequestAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryFlowsRequest */ export interface QueryFlowsRequestAmino { /** * Pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } export interface QueryFlowsRequestAminoMsg { type: "/intento.intent.v1.QueryFlowsRequest"; value: QueryFlowsRequestAmino; } /** QueryFlowsRequest is the request type for the Query/FlowsRequest RPC */ export interface QueryFlowsRequestSDKType { pagination?: PageRequestSDKType; } /** QueryFlowsResponse the response type for the Query/FlowsRequest RPCπ */ export interface QueryFlowsResponse { flows: Flow[]; /** Pagination defines the pagination in the response. */ pagination?: PageResponse; } export interface QueryFlowsResponseProtoMsg { typeUrl: "/intento.intent.v1.QueryFlowsResponse"; value: Uint8Array; } /** * QueryFlowsResponse the response type for the Query/FlowsRequest RPCπ * @name QueryFlowsResponseAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryFlowsResponse */ export interface QueryFlowsResponseAmino { flows?: FlowAmino[]; /** * Pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } export interface QueryFlowsResponseAminoMsg { type: "/intento.intent.v1.QueryFlowsResponse"; value: QueryFlowsResponseAmino; } /** QueryFlowsResponse the response type for the Query/FlowsRequest RPCπ */ export interface QueryFlowsResponseSDKType { flows: FlowSDKType[]; pagination?: PageResponseSDKType; } /** * QueryFlowsForOwnerRequest is the request type for the * Query/FlowsForOwnerRequest RPC */ export interface QueryFlowsForOwnerRequest { owner: string; /** Pagination defines an optional pagination for the request. */ pagination?: PageRequest; } export interface QueryFlowsForOwnerRequestProtoMsg { typeUrl: "/intento.intent.v1.QueryFlowsForOwnerRequest"; value: Uint8Array; } /** * QueryFlowsForOwnerRequest is the request type for the * Query/FlowsForOwnerRequest RPC * @name QueryFlowsForOwnerRequestAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryFlowsForOwnerRequest */ export interface QueryFlowsForOwnerRequestAmino { owner?: string; /** * Pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } export interface QueryFlowsForOwnerRequestAminoMsg { type: "/intento.intent.v1.QueryFlowsForOwnerRequest"; value: QueryFlowsForOwnerRequestAmino; } /** * QueryFlowsForOwnerRequest is the request type for the * Query/FlowsForOwnerRequest RPC */ export interface QueryFlowsForOwnerRequestSDKType { owner: string; pagination?: PageRequestSDKType; } /** * QueryFlowsForOwnerResponse the response type for the * Query/FlowsForOwnerRequest RPC */ export interface QueryFlowsForOwnerResponse { flows: Flow[]; /** Pagination defines the pagination in the response. */ pagination?: PageResponse; } export interface QueryFlowsForOwnerResponseProtoMsg { typeUrl: "/intento.intent.v1.QueryFlowsForOwnerResponse"; value: Uint8Array; } /** * QueryFlowsForOwnerResponse the response type for the * Query/FlowsForOwnerRequest RPC * @name QueryFlowsForOwnerResponseAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryFlowsForOwnerResponse */ export interface QueryFlowsForOwnerResponseAmino { flows?: FlowAmino[]; /** * Pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } export interface QueryFlowsForOwnerResponseAminoMsg { type: "/intento.intent.v1.QueryFlowsForOwnerResponse"; value: QueryFlowsForOwnerResponseAmino; } /** * QueryFlowsForOwnerResponse the response type for the * Query/FlowsForOwnerRequest RPC */ export interface QueryFlowsForOwnerResponseSDKType { flows: FlowSDKType[]; pagination?: PageResponseSDKType; } /** QueryParamsRequest is the request type for the Query/Params RPC method. */ export interface QueryParamsRequest { } export interface QueryParamsRequestProtoMsg { typeUrl: "/intento.intent.v1.QueryParamsRequest"; value: Uint8Array; } /** * QueryParamsRequest is the request type for the Query/Params RPC method. * @name QueryParamsRequestAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryParamsRequest */ export interface QueryParamsRequestAmino { } export interface QueryParamsRequestAminoMsg { type: "/intento.intent.v1.QueryParamsRequest"; value: QueryParamsRequestAmino; } /** QueryParamsRequest is the request type for the Query/Params RPC method. */ export interface QueryParamsRequestSDKType { } /** QueryParamsResponse is the response type for the Query/Params RPC method. */ export interface QueryParamsResponse { /** params defines the parameters of the module. */ params: Params; } export interface QueryParamsResponseProtoMsg { typeUrl: "/intento.intent.v1.QueryParamsResponse"; value: Uint8Array; } /** * QueryParamsResponse is the response type for the Query/Params RPC method. * @name QueryParamsResponseAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryParamsResponse */ export interface QueryParamsResponseAmino { /** * params defines the parameters of the module. */ params?: ParamsAmino; } export interface QueryParamsResponseAminoMsg { type: "/intento.intent.v1.QueryParamsResponse"; value: QueryParamsResponseAmino; } /** QueryParamsResponse is the response type for the Query/Params RPC method. */ export interface QueryParamsResponseSDKType { params: ParamsSDKType; } /** QueryTrustlessAgent is the request type for the Query/Params RPC method. */ export interface QueryTrustlessAgentRequest { agentAddress: string; } export interface QueryTrustlessAgentRequestProtoMsg { typeUrl: "/intento.intent.v1.QueryTrustlessAgentRequest"; value: Uint8Array; } /** * QueryTrustlessAgent is the request type for the Query/Params RPC method. * @name QueryTrustlessAgentRequestAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryTrustlessAgentRequest */ export interface QueryTrustlessAgentRequestAmino { agent_address?: string; } export interface QueryTrustlessAgentRequestAminoMsg { type: "/intento.intent.v1.QueryTrustlessAgentRequest"; value: QueryTrustlessAgentRequestAmino; } /** QueryTrustlessAgent is the request type for the Query/Params RPC method. */ export interface QueryTrustlessAgentRequestSDKType { agent_address: string; } /** * QueryTrustlessAgentResponse is the response type for the Query/TrustlessAgent * RPC method. */ export interface QueryTrustlessAgentResponse { /** TrustlessAgent */ trustlessAgent: TrustlessAgent; } export interface QueryTrustlessAgentResponseProtoMsg { typeUrl: "/intento.intent.v1.QueryTrustlessAgentResponse"; value: Uint8Array; } /** * QueryTrustlessAgentResponse is the response type for the Query/TrustlessAgent * RPC method. * @name QueryTrustlessAgentResponseAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryTrustlessAgentResponse */ export interface QueryTrustlessAgentResponseAmino { /** * TrustlessAgent */ trustless_agent?: TrustlessAgentAmino; } export interface QueryTrustlessAgentResponseAminoMsg { type: "/intento.intent.v1.QueryTrustlessAgentResponse"; value: QueryTrustlessAgentResponseAmino; } /** * QueryTrustlessAgentResponse is the response type for the Query/TrustlessAgent * RPC method. */ export interface QueryTrustlessAgentResponseSDKType { trustless_agent: TrustlessAgentSDKType; } /** * QueryTrustlessAgents is the request type for the Query/TrustlessAgent RPC * method. */ export interface QueryTrustlessAgentsRequest { /** Pagination defines an optional pagination for the request. */ pagination?: PageRequest; } export interface QueryTrustlessAgentsRequestProtoMsg { typeUrl: "/intento.intent.v1.QueryTrustlessAgentsRequest"; value: Uint8Array; } /** * QueryTrustlessAgents is the request type for the Query/TrustlessAgent RPC * method. * @name QueryTrustlessAgentsRequestAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryTrustlessAgentsRequest */ export interface QueryTrustlessAgentsRequestAmino { /** * Pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } export interface QueryTrustlessAgentsRequestAminoMsg { type: "/intento.intent.v1.QueryTrustlessAgentsRequest"; value: QueryTrustlessAgentsRequestAmino; } /** * QueryTrustlessAgents is the request type for the Query/TrustlessAgent RPC * method. */ export interface QueryTrustlessAgentsRequestSDKType { pagination?: PageRequestSDKType; } /** * QueryTrustlessAgentsResponse is the response type for the Query/TrustlessAgent * RPC method. */ export interface QueryTrustlessAgentsResponse { /** TrustlessAgents */ trustlessAgents: TrustlessAgent[]; /** Pagination defines the pagination in the response. */ pagination?: PageResponse; } export interface QueryTrustlessAgentsResponseProtoMsg { typeUrl: "/intento.intent.v1.QueryTrustlessAgentsResponse"; value: Uint8Array; } /** * QueryTrustlessAgentsResponse is the response type for the Query/TrustlessAgent * RPC method. * @name QueryTrustlessAgentsResponseAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryTrustlessAgentsResponse */ export interface QueryTrustlessAgentsResponseAmino { /** * TrustlessAgents */ trustless_agents?: TrustlessAgentAmino[]; /** * Pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } export interface QueryTrustlessAgentsResponseAminoMsg { type: "/intento.intent.v1.QueryTrustlessAgentsResponse"; value: QueryTrustlessAgentsResponseAmino; } /** * QueryTrustlessAgentsResponse is the response type for the Query/TrustlessAgent * RPC method. */ export interface QueryTrustlessAgentsResponseSDKType { trustless_agents: TrustlessAgentSDKType[]; pagination?: PageResponseSDKType; } /** QueryTrustlessAgentsByFeeAdminRequest */ export interface QueryTrustlessAgentsByFeeAdminRequest { feeAdmin: string; /** Pagination defines an optional pagination for the request. */ pagination?: PageRequest; } export interface QueryTrustlessAgentsByFeeAdminRequestProtoMsg { typeUrl: "/intento.intent.v1.QueryTrustlessAgentsByFeeAdminRequest"; value: Uint8Array; } /** * QueryTrustlessAgentsByFeeAdminRequest * @name QueryTrustlessAgentsByFeeAdminRequestAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryTrustlessAgentsByFeeAdminRequest */ export interface QueryTrustlessAgentsByFeeAdminRequestAmino { fee_admin?: string; /** * Pagination defines an optional pagination for the request. */ pagination?: PageRequestAmino; } export interface QueryTrustlessAgentsByFeeAdminRequestAminoMsg { type: "/intento.intent.v1.QueryTrustlessAgentsByFeeAdminRequest"; value: QueryTrustlessAgentsByFeeAdminRequestAmino; } /** QueryTrustlessAgentsByFeeAdminRequest */ export interface QueryTrustlessAgentsByFeeAdminRequestSDKType { fee_admin: string; pagination?: PageRequestSDKType; } /** * QueryTrustlessAgentResponse is the response type for the Query/TrustlessAgent * RPC method. */ export interface QueryTrustlessAgentsByFeeAdminResponse { /** TrustlessAgents */ trustlessAgents: TrustlessAgent[]; /** Pagination defines the pagination in the response. */ pagination?: PageResponse; } export interface QueryTrustlessAgentsByFeeAdminResponseProtoMsg { typeUrl: "/intento.intent.v1.QueryTrustlessAgentsByFeeAdminResponse"; value: Uint8Array; } /** * QueryTrustlessAgentResponse is the response type for the Query/TrustlessAgent * RPC method. * @name QueryTrustlessAgentsByFeeAdminResponseAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryTrustlessAgentsByFeeAdminResponse */ export interface QueryTrustlessAgentsByFeeAdminResponseAmino { /** * TrustlessAgents */ trustless_agents?: TrustlessAgentAmino[]; /** * Pagination defines the pagination in the response. */ pagination?: PageResponseAmino; } export interface QueryTrustlessAgentsByFeeAdminResponseAminoMsg { type: "/intento.intent.v1.QueryTrustlessAgentsByFeeAdminResponse"; value: QueryTrustlessAgentsByFeeAdminResponseAmino; } /** * QueryTrustlessAgentResponse is the response type for the Query/TrustlessAgent * RPC method. */ export interface QueryTrustlessAgentsByFeeAdminResponseSDKType { trustless_agents: TrustlessAgentSDKType[]; pagination?: PageResponseSDKType; } /** QueryTotalBurntRequest is the request type for the Query/TotalBurnt RPC method. */ export interface QueryTotalBurntRequest { } export interface QueryTotalBurntRequestProtoMsg { typeUrl: "/intento.intent.v1.QueryTotalBurntRequest"; value: Uint8Array; } /** * QueryTotalBurntRequest is the request type for the Query/TotalBurnt RPC method. * @name QueryTotalBurntRequestAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryTotalBurntRequest */ export interface QueryTotalBurntRequestAmino { } export interface QueryTotalBurntRequestAminoMsg { type: "/intento.intent.v1.QueryTotalBurntRequest"; value: QueryTotalBurntRequestAmino; } /** QueryTotalBurntRequest is the request type for the Query/TotalBurnt RPC method. */ export interface QueryTotalBurntRequestSDKType { } /** QueryTotalBurntResponse is the response type for the Query/TotalBurnt RPC method. */ export interface QueryTotalBurntResponse { /** total_burnt defines the total amount that has been burnt */ totalBurnt: Coin; } export interface QueryTotalBurntResponseProtoMsg { typeUrl: "/intento.intent.v1.QueryTotalBurntResponse"; value: Uint8Array; } /** * QueryTotalBurntResponse is the response type for the Query/TotalBurnt RPC method. * @name QueryTotalBurntResponseAmino * @package intento.intent.v1 * @see proto type: intento.intent.v1.QueryTotalBurntResponse */ export interface QueryTotalBurntResponseAmino { /** * total_burnt defines the total amount that has been burnt */ total_burnt?: CoinAmino; } export interface QueryTotalBurntResponseAminoMsg { type: "/intento.intent.v1.QueryTotalBurntResponse"; value: QueryTotalBurntResponseAmino; } /** QueryTotalBurntResponse is the response type for the Query/TotalBurnt RPC method. */ export interface QueryTotalBurntResponseSDKType { total_burnt: CoinSDKType; } export declare const QueryInterchainAccountFromAddressRequest: { typeUrl: string; is(o: any): o is QueryInterchainAccountFromAddressRequest; isSDK(o: any): o is QueryInterchainAccountFromAddressRequestSDKType; isAmino(o: any): o is QueryInterchainAccountFromAddressRequestAmino; encode(message: QueryInterchainAccountFromAddressRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryInterchainAccountFromAddressRequest; fromJSON(object: any): QueryInterchainAccountFromAddressRequest; toJSON(message: QueryInterchainAccountFromAddressRequest): JsonSafe; fromPartial(object: Partial): QueryInterchainAccountFromAddressRequest; fromAmino(object: QueryInterchainAccountFromAddressRequestAmino): QueryInterchainAccountFromAddressRequest; toAmino(message: QueryInterchainAccountFromAddressRequest): QueryInterchainAccountFromAddressRequestAmino; fromAminoMsg(object: QueryInterchainAccountFromAddressRequestAminoMsg): QueryInterchainAccountFromAddressRequest; fromProtoMsg(message: QueryInterchainAccountFromAddressRequestProtoMsg): QueryInterchainAccountFromAddressRequest; toProto(message: QueryInterchainAccountFromAddressRequest): Uint8Array; toProtoMsg(message: QueryInterchainAccountFromAddressRequest): QueryInterchainAccountFromAddressRequestProtoMsg; }; export declare const QueryInterchainAccountFromAddressResponse: { typeUrl: string; is(o: any): o is QueryInterchainAccountFromAddressResponse; isSDK(o: any): o is QueryInterchainAccountFromAddressResponseSDKType; isAmino(o: any): o is QueryInterchainAccountFromAddressResponseAmino; encode(message: QueryInterchainAccountFromAddressResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryInterchainAccountFromAddressResponse; fromJSON(object: any): QueryInterchainAccountFromAddressResponse; toJSON(message: QueryInterchainAccountFromAddressResponse): JsonSafe; fromPartial(object: Partial): QueryInterchainAccountFromAddressResponse; fromAmino(object: QueryInterchainAccountFromAddressResponseAmino): QueryInterchainAccountFromAddressResponse; toAmino(message: QueryInterchainAccountFromAddressResponse): QueryInterchainAccountFromAddressResponseAmino; fromAminoMsg(object: QueryInterchainAccountFromAddressResponseAminoMsg): QueryInterchainAccountFromAddressResponse; fromProtoMsg(message: QueryInterchainAccountFromAddressResponseProtoMsg): QueryInterchainAccountFromAddressResponse; toProto(message: QueryInterchainAccountFromAddressResponse): Uint8Array; toProtoMsg(message: QueryInterchainAccountFromAddressResponse): QueryInterchainAccountFromAddressResponseProtoMsg; }; export declare const QueryFlowRequest: { typeUrl: string; is(o: any): o is QueryFlowRequest; isSDK(o: any): o is QueryFlowRequestSDKType; isAmino(o: any): o is QueryFlowRequestAmino; encode(message: QueryFlowRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryFlowRequest; fromJSON(object: any): QueryFlowRequest; toJSON(message: QueryFlowRequest): JsonSafe; fromPartial(object: Partial): QueryFlowRequest; fromAmino(object: QueryFlowRequestAmino): QueryFlowRequest; toAmino(message: QueryFlowRequest): QueryFlowRequestAmino; fromAminoMsg(object: QueryFlowRequestAminoMsg): QueryFlowRequest; fromProtoMsg(message: QueryFlowRequestProtoMsg): QueryFlowRequest; toProto(message: QueryFlowRequest): Uint8Array; toProtoMsg(message: QueryFlowRequest): QueryFlowRequestProtoMsg; }; export declare const QueryFlowResponse: { typeUrl: string; is(o: any): o is QueryFlowResponse; isSDK(o: any): o is QueryFlowResponseSDKType; isAmino(o: any): o is QueryFlowResponseAmino; encode(message: QueryFlowResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryFlowResponse; fromJSON(object: any): QueryFlowResponse; toJSON(message: QueryFlowResponse): JsonSafe; fromPartial(object: Partial): QueryFlowResponse; fromAmino(object: QueryFlowResponseAmino): QueryFlowResponse; toAmino(message: QueryFlowResponse): QueryFlowResponseAmino; fromAminoMsg(object: QueryFlowResponseAminoMsg): QueryFlowResponse; fromProtoMsg(message: QueryFlowResponseProtoMsg): QueryFlowResponse; toProto(message: QueryFlowResponse): Uint8Array; toProtoMsg(message: QueryFlowResponse): QueryFlowResponseProtoMsg; }; export declare const QueryFlowHistoryRequest: { typeUrl: string; is(o: any): o is QueryFlowHistoryRequest; isSDK(o: any): o is QueryFlowHistoryRequestSDKType; isAmino(o: any): o is QueryFlowHistoryRequestAmino; encode(message: QueryFlowHistoryRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryFlowHistoryRequest; fromJSON(object: any): QueryFlowHistoryRequest; toJSON(message: QueryFlowHistoryRequest): JsonSafe; fromPartial(object: Partial): QueryFlowHistoryRequest; fromAmino(object: QueryFlowHistoryRequestAmino): QueryFlowHistoryRequest; toAmino(message: QueryFlowHistoryRequest): QueryFlowHistoryRequestAmino; fromAminoMsg(object: QueryFlowHistoryRequestAminoMsg): QueryFlowHistoryRequest; fromProtoMsg(message: QueryFlowHistoryRequestProtoMsg): QueryFlowHistoryRequest; toProto(message: QueryFlowHistoryRequest): Uint8Array; toProtoMsg(message: QueryFlowHistoryRequest): QueryFlowHistoryRequestProtoMsg; }; export declare const QueryFlowHistoryResponse: { typeUrl: string; is(o: any): o is QueryFlowHistoryResponse; isSDK(o: any): o is QueryFlowHistoryResponseSDKType; isAmino(o: any): o is QueryFlowHistoryResponseAmino; encode(message: QueryFlowHistoryResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryFlowHistoryResponse; fromJSON(object: any): QueryFlowHistoryResponse; toJSON(message: QueryFlowHistoryResponse): JsonSafe; fromPartial(object: Partial): QueryFlowHistoryResponse; fromAmino(object: QueryFlowHistoryResponseAmino): QueryFlowHistoryResponse; toAmino(message: QueryFlowHistoryResponse): QueryFlowHistoryResponseAmino; fromAminoMsg(object: QueryFlowHistoryResponseAminoMsg): QueryFlowHistoryResponse; fromProtoMsg(message: QueryFlowHistoryResponseProtoMsg): QueryFlowHistoryResponse; toProto(message: QueryFlowHistoryResponse): Uint8Array; toProtoMsg(message: QueryFlowHistoryResponse): QueryFlowHistoryResponseProtoMsg; }; export declare const QueryFlowsRequest: { typeUrl: string; is(o: any): o is QueryFlowsRequest; isSDK(o: any): o is QueryFlowsRequestSDKType; isAmino(o: any): o is QueryFlowsRequestAmino; encode(message: QueryFlowsRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryFlowsRequest; fromJSON(object: any): QueryFlowsRequest; toJSON(message: QueryFlowsRequest): JsonSafe; fromPartial(object: Partial): QueryFlowsRequest; fromAmino(object: QueryFlowsRequestAmino): QueryFlowsRequest; toAmino(message: QueryFlowsRequest): QueryFlowsRequestAmino; fromAminoMsg(object: QueryFlowsRequestAminoMsg): QueryFlowsRequest; fromProtoMsg(message: QueryFlowsRequestProtoMsg): QueryFlowsRequest; toProto(message: QueryFlowsRequest): Uint8Array; toProtoMsg(message: QueryFlowsRequest): QueryFlowsRequestProtoMsg; }; export declare const QueryFlowsResponse: { typeUrl: string; is(o: any): o is QueryFlowsResponse; isSDK(o: any): o is QueryFlowsResponseSDKType; isAmino(o: any): o is QueryFlowsResponseAmino; encode(message: QueryFlowsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryFlowsResponse; fromJSON(object: any): QueryFlowsResponse; toJSON(message: QueryFlowsResponse): JsonSafe; fromPartial(object: Partial): QueryFlowsResponse; fromAmino(object: QueryFlowsResponseAmino): QueryFlowsResponse; toAmino(message: QueryFlowsResponse): QueryFlowsResponseAmino; fromAminoMsg(object: QueryFlowsResponseAminoMsg): QueryFlowsResponse; fromProtoMsg(message: QueryFlowsResponseProtoMsg): QueryFlowsResponse; toProto(message: QueryFlowsResponse): Uint8Array; toProtoMsg(message: QueryFlowsResponse): QueryFlowsResponseProtoMsg; }; export declare const QueryFlowsForOwnerRequest: { typeUrl: string; is(o: any): o is QueryFlowsForOwnerRequest; isSDK(o: any): o is QueryFlowsForOwnerRequestSDKType; isAmino(o: any): o is QueryFlowsForOwnerRequestAmino; encode(message: QueryFlowsForOwnerRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryFlowsForOwnerRequest; fromJSON(object: any): QueryFlowsForOwnerRequest; toJSON(message: QueryFlowsForOwnerRequest): JsonSafe; fromPartial(object: Partial): QueryFlowsForOwnerRequest; fromAmino(object: QueryFlowsForOwnerRequestAmino): QueryFlowsForOwnerRequest; toAmino(message: QueryFlowsForOwnerRequest): QueryFlowsForOwnerRequestAmino; fromAminoMsg(object: QueryFlowsForOwnerRequestAminoMsg): QueryFlowsForOwnerRequest; fromProtoMsg(message: QueryFlowsForOwnerRequestProtoMsg): QueryFlowsForOwnerRequest; toProto(message: QueryFlowsForOwnerRequest): Uint8Array; toProtoMsg(message: QueryFlowsForOwnerRequest): QueryFlowsForOwnerRequestProtoMsg; }; export declare const QueryFlowsForOwnerResponse: { typeUrl: string; is(o: any): o is QueryFlowsForOwnerResponse; isSDK(o: any): o is QueryFlowsForOwnerResponseSDKType; isAmino(o: any): o is QueryFlowsForOwnerResponseAmino; encode(message: QueryFlowsForOwnerResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryFlowsForOwnerResponse; fromJSON(object: any): QueryFlowsForOwnerResponse; toJSON(message: QueryFlowsForOwnerResponse): JsonSafe; fromPartial(object: Partial): QueryFlowsForOwnerResponse; fromAmino(object: QueryFlowsForOwnerResponseAmino): QueryFlowsForOwnerResponse; toAmino(message: QueryFlowsForOwnerResponse): QueryFlowsForOwnerResponseAmino; fromAminoMsg(object: QueryFlowsForOwnerResponseAminoMsg): QueryFlowsForOwnerResponse; fromProtoMsg(message: QueryFlowsForOwnerResponseProtoMsg): QueryFlowsForOwnerResponse; toProto(message: QueryFlowsForOwnerResponse): Uint8Array; toProtoMsg(message: QueryFlowsForOwnerResponse): QueryFlowsForOwnerResponseProtoMsg; }; export declare const QueryParamsRequest: { typeUrl: string; is(o: any): o is QueryParamsRequest; isSDK(o: any): o is QueryParamsRequestSDKType; isAmino(o: any): o is QueryParamsRequestAmino; encode(_: QueryParamsRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsRequest; fromJSON(_: any): QueryParamsRequest; toJSON(_: QueryParamsRequest): JsonSafe; fromPartial(_: Partial): QueryParamsRequest; fromAmino(_: QueryParamsRequestAmino): QueryParamsRequest; toAmino(_: QueryParamsRequest): QueryParamsRequestAmino; fromAminoMsg(object: QueryParamsRequestAminoMsg): QueryParamsRequest; fromProtoMsg(message: QueryParamsRequestProtoMsg): QueryParamsRequest; toProto(message: QueryParamsRequest): Uint8Array; toProtoMsg(message: QueryParamsRequest): QueryParamsRequestProtoMsg; }; export declare const QueryParamsResponse: { typeUrl: string; is(o: any): o is QueryParamsResponse; isSDK(o: any): o is QueryParamsResponseSDKType; isAmino(o: any): o is QueryParamsResponseAmino; encode(message: QueryParamsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryParamsResponse; fromJSON(object: any): QueryParamsResponse; toJSON(message: QueryParamsResponse): JsonSafe; fromPartial(object: Partial): QueryParamsResponse; fromAmino(object: QueryParamsResponseAmino): QueryParamsResponse; toAmino(message: QueryParamsResponse): QueryParamsResponseAmino; fromAminoMsg(object: QueryParamsResponseAminoMsg): QueryParamsResponse; fromProtoMsg(message: QueryParamsResponseProtoMsg): QueryParamsResponse; toProto(message: QueryParamsResponse): Uint8Array; toProtoMsg(message: QueryParamsResponse): QueryParamsResponseProtoMsg; }; export declare const QueryTrustlessAgentRequest: { typeUrl: string; is(o: any): o is QueryTrustlessAgentRequest; isSDK(o: any): o is QueryTrustlessAgentRequestSDKType; isAmino(o: any): o is QueryTrustlessAgentRequestAmino; encode(message: QueryTrustlessAgentRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryTrustlessAgentRequest; fromJSON(object: any): QueryTrustlessAgentRequest; toJSON(message: QueryTrustlessAgentRequest): JsonSafe; fromPartial(object: Partial): QueryTrustlessAgentRequest; fromAmino(object: QueryTrustlessAgentRequestAmino): QueryTrustlessAgentRequest; toAmino(message: QueryTrustlessAgentRequest): QueryTrustlessAgentRequestAmino; fromAminoMsg(object: QueryTrustlessAgentRequestAminoMsg): QueryTrustlessAgentRequest; fromProtoMsg(message: QueryTrustlessAgentRequestProtoMsg): QueryTrustlessAgentRequest; toProto(message: QueryTrustlessAgentRequest): Uint8Array; toProtoMsg(message: QueryTrustlessAgentRequest): QueryTrustlessAgentRequestProtoMsg; }; export declare const QueryTrustlessAgentResponse: { typeUrl: string; is(o: any): o is QueryTrustlessAgentResponse; isSDK(o: any): o is QueryTrustlessAgentResponseSDKType; isAmino(o: any): o is QueryTrustlessAgentResponseAmino; encode(message: QueryTrustlessAgentResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryTrustlessAgentResponse; fromJSON(object: any): QueryTrustlessAgentResponse; toJSON(message: QueryTrustlessAgentResponse): JsonSafe; fromPartial(object: Partial): QueryTrustlessAgentResponse; fromAmino(object: QueryTrustlessAgentResponseAmino): QueryTrustlessAgentResponse; toAmino(message: QueryTrustlessAgentResponse): QueryTrustlessAgentResponseAmino; fromAminoMsg(object: QueryTrustlessAgentResponseAminoMsg): QueryTrustlessAgentResponse; fromProtoMsg(message: QueryTrustlessAgentResponseProtoMsg): QueryTrustlessAgentResponse; toProto(message: QueryTrustlessAgentResponse): Uint8Array; toProtoMsg(message: QueryTrustlessAgentResponse): QueryTrustlessAgentResponseProtoMsg; }; export declare const QueryTrustlessAgentsRequest: { typeUrl: string; is(o: any): o is QueryTrustlessAgentsRequest; isSDK(o: any): o is QueryTrustlessAgentsRequestSDKType; isAmino(o: any): o is QueryTrustlessAgentsRequestAmino; encode(message: QueryTrustlessAgentsRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryTrustlessAgentsRequest; fromJSON(object: any): QueryTrustlessAgentsRequest; toJSON(message: QueryTrustlessAgentsRequest): JsonSafe; fromPartial(object: Partial): QueryTrustlessAgentsRequest; fromAmino(object: QueryTrustlessAgentsRequestAmino): QueryTrustlessAgentsRequest; toAmino(message: QueryTrustlessAgentsRequest): QueryTrustlessAgentsRequestAmino; fromAminoMsg(object: QueryTrustlessAgentsRequestAminoMsg): QueryTrustlessAgentsRequest; fromProtoMsg(message: QueryTrustlessAgentsRequestProtoMsg): QueryTrustlessAgentsRequest; toProto(message: QueryTrustlessAgentsRequest): Uint8Array; toProtoMsg(message: QueryTrustlessAgentsRequest): QueryTrustlessAgentsRequestProtoMsg; }; export declare const QueryTrustlessAgentsResponse: { typeUrl: string; is(o: any): o is QueryTrustlessAgentsResponse; isSDK(o: any): o is QueryTrustlessAgentsResponseSDKType; isAmino(o: any): o is QueryTrustlessAgentsResponseAmino; encode(message: QueryTrustlessAgentsResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryTrustlessAgentsResponse; fromJSON(object: any): QueryTrustlessAgentsResponse; toJSON(message: QueryTrustlessAgentsResponse): JsonSafe; fromPartial(object: Partial): QueryTrustlessAgentsResponse; fromAmino(object: QueryTrustlessAgentsResponseAmino): QueryTrustlessAgentsResponse; toAmino(message: QueryTrustlessAgentsResponse): QueryTrustlessAgentsResponseAmino; fromAminoMsg(object: QueryTrustlessAgentsResponseAminoMsg): QueryTrustlessAgentsResponse; fromProtoMsg(message: QueryTrustlessAgentsResponseProtoMsg): QueryTrustlessAgentsResponse; toProto(message: QueryTrustlessAgentsResponse): Uint8Array; toProtoMsg(message: QueryTrustlessAgentsResponse): QueryTrustlessAgentsResponseProtoMsg; }; export declare const QueryTrustlessAgentsByFeeAdminRequest: { typeUrl: string; is(o: any): o is QueryTrustlessAgentsByFeeAdminRequest; isSDK(o: any): o is QueryTrustlessAgentsByFeeAdminRequestSDKType; isAmino(o: any): o is QueryTrustlessAgentsByFeeAdminRequestAmino; encode(message: QueryTrustlessAgentsByFeeAdminRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryTrustlessAgentsByFeeAdminRequest; fromJSON(object: any): QueryTrustlessAgentsByFeeAdminRequest; toJSON(message: QueryTrustlessAgentsByFeeAdminRequest): JsonSafe; fromPartial(object: Partial): QueryTrustlessAgentsByFeeAdminRequest; fromAmino(object: QueryTrustlessAgentsByFeeAdminRequestAmino): QueryTrustlessAgentsByFeeAdminRequest; toAmino(message: QueryTrustlessAgentsByFeeAdminRequest): QueryTrustlessAgentsByFeeAdminRequestAmino; fromAminoMsg(object: QueryTrustlessAgentsByFeeAdminRequestAminoMsg): QueryTrustlessAgentsByFeeAdminRequest; fromProtoMsg(message: QueryTrustlessAgentsByFeeAdminRequestProtoMsg): QueryTrustlessAgentsByFeeAdminRequest; toProto(message: QueryTrustlessAgentsByFeeAdminRequest): Uint8Array; toProtoMsg(message: QueryTrustlessAgentsByFeeAdminRequest): QueryTrustlessAgentsByFeeAdminRequestProtoMsg; }; export declare const QueryTrustlessAgentsByFeeAdminResponse: { typeUrl: string; is(o: any): o is QueryTrustlessAgentsByFeeAdminResponse; isSDK(o: any): o is QueryTrustlessAgentsByFeeAdminResponseSDKType; isAmino(o: any): o is QueryTrustlessAgentsByFeeAdminResponseAmino; encode(message: QueryTrustlessAgentsByFeeAdminResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryTrustlessAgentsByFeeAdminResponse; fromJSON(object: any): QueryTrustlessAgentsByFeeAdminResponse; toJSON(message: QueryTrustlessAgentsByFeeAdminResponse): JsonSafe; fromPartial(object: Partial): QueryTrustlessAgentsByFeeAdminResponse; fromAmino(object: QueryTrustlessAgentsByFeeAdminResponseAmino): QueryTrustlessAgentsByFeeAdminResponse; toAmino(message: QueryTrustlessAgentsByFeeAdminResponse): QueryTrustlessAgentsByFeeAdminResponseAmino; fromAminoMsg(object: QueryTrustlessAgentsByFeeAdminResponseAminoMsg): QueryTrustlessAgentsByFeeAdminResponse; fromProtoMsg(message: QueryTrustlessAgentsByFeeAdminResponseProtoMsg): QueryTrustlessAgentsByFeeAdminResponse; toProto(message: QueryTrustlessAgentsByFeeAdminResponse): Uint8Array; toProtoMsg(message: QueryTrustlessAgentsByFeeAdminResponse): QueryTrustlessAgentsByFeeAdminResponseProtoMsg; }; export declare const QueryTotalBurntRequest: { typeUrl: string; is(o: any): o is QueryTotalBurntRequest; isSDK(o: any): o is QueryTotalBurntRequestSDKType; isAmino(o: any): o is QueryTotalBurntRequestAmino; encode(_: QueryTotalBurntRequest, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryTotalBurntRequest; fromJSON(_: any): QueryTotalBurntRequest; toJSON(_: QueryTotalBurntRequest): JsonSafe; fromPartial(_: Partial): QueryTotalBurntRequest; fromAmino(_: QueryTotalBurntRequestAmino): QueryTotalBurntRequest; toAmino(_: QueryTotalBurntRequest): QueryTotalBurntRequestAmino; fromAminoMsg(object: QueryTotalBurntRequestAminoMsg): QueryTotalBurntRequest; fromProtoMsg(message: QueryTotalBurntRequestProtoMsg): QueryTotalBurntRequest; toProto(message: QueryTotalBurntRequest): Uint8Array; toProtoMsg(message: QueryTotalBurntRequest): QueryTotalBurntRequestProtoMsg; }; export declare const QueryTotalBurntResponse: { typeUrl: string; is(o: any): o is QueryTotalBurntResponse; isSDK(o: any): o is QueryTotalBurntResponseSDKType; isAmino(o: any): o is QueryTotalBurntResponseAmino; encode(message: QueryTotalBurntResponse, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): QueryTotalBurntResponse; fromJSON(object: any): QueryTotalBurntResponse; toJSON(message: QueryTotalBurntResponse): JsonSafe; fromPartial(object: Partial): QueryTotalBurntResponse; fromAmino(object: QueryTotalBurntResponseAmino): QueryTotalBurntResponse; toAmino(message: QueryTotalBurntResponse): QueryTotalBurntResponseAmino; fromAminoMsg(object: QueryTotalBurntResponseAminoMsg): QueryTotalBurntResponse; fromProtoMsg(message: QueryTotalBurntResponseProtoMsg): QueryTotalBurntResponse; toProto(message: QueryTotalBurntResponse): Uint8Array; toProtoMsg(message: QueryTotalBurntResponse): QueryTotalBurntResponseProtoMsg; };