import { QueryClientConnectionsRequest, QueryClientConnectionsResponse, QueryConnectionClientStateRequest, QueryConnectionClientStateResponse, QueryConnectionConsensusStateRequest, QueryConnectionConsensusStateResponse, QueryConnectionParamsRequest, QueryConnectionParamsResponse, QueryConnectionRequest, QueryConnectionResponse, QueryConnectionsRequest, QueryConnectionsResponse } from "./query.js"; import { EndpointOrRpc } from "../../../../helper-func-types.js"; import "../../../../index.js"; //#region src/ibc/core/connection/v1/query.rpc.func.d.ts /** * Connection queries an IBC connection end. * @name getConnection * @package ibc.core.connection.v1 * @see proto service: ibc.core.connection.v1.Connection */ declare const getConnection: (client: EndpointOrRpc, request: QueryConnectionRequest) => Promise; /** * Connections queries all the IBC connections of a chain. * @name getConnections * @package ibc.core.connection.v1 * @see proto service: ibc.core.connection.v1.Connections */ declare const getConnections: (client: EndpointOrRpc, request: QueryConnectionsRequest) => Promise; /** * ClientConnections queries the connection paths associated with a client * state. * @name getClientConnections * @package ibc.core.connection.v1 * @see proto service: ibc.core.connection.v1.ClientConnections */ declare const getClientConnections: (client: EndpointOrRpc, request: QueryClientConnectionsRequest) => Promise; /** * ConnectionClientState queries the client state associated with the * connection. * @name getConnectionClientState * @package ibc.core.connection.v1 * @see proto service: ibc.core.connection.v1.ConnectionClientState */ declare const getConnectionClientState: (client: EndpointOrRpc, request: QueryConnectionClientStateRequest) => Promise; /** * ConnectionConsensusState queries the consensus state associated with the * connection. * @name getConnectionConsensusState * @package ibc.core.connection.v1 * @see proto service: ibc.core.connection.v1.ConnectionConsensusState */ declare const getConnectionConsensusState: (client: EndpointOrRpc, request: QueryConnectionConsensusStateRequest) => Promise; /** * ConnectionParams queries all parameters of the ibc connection submodule. * @name getConnectionParams * @package ibc.core.connection.v1 * @see proto service: ibc.core.connection.v1.ConnectionParams */ declare const getConnectionParams: (client: EndpointOrRpc, request: QueryConnectionParamsRequest) => Promise; //#endregion export { getClientConnections, getConnection, getConnectionClientState, getConnectionConsensusState, getConnectionParams, getConnections };