import { ABCIQueryRequest, ABCIQueryResponse, GetBlockByHeightRequest, GetBlockByHeightResponse, GetLatestBlockRequest, GetLatestBlockResponse, GetLatestValidatorSetRequest, GetLatestValidatorSetResponse, GetNodeInfoRequest, GetNodeInfoResponse, GetSyncingRequest, GetSyncingResponse, GetValidatorSetByHeightRequest, GetValidatorSetByHeightResponse } from "./query.js"; import { EndpointOrRpc } from "../../../../helper-func-types.js"; import "../../../../index.js"; //#region src/cosmos/base/tendermint/v1beta1/query.rpc.func.d.ts /** * GetNodeInfo queries the current node info. * @name getGetNodeInfo * @package cosmos.base.tendermint.v1beta1 * @see proto service: cosmos.base.tendermint.v1beta1.GetNodeInfo */ declare const getGetNodeInfo: (client: EndpointOrRpc, request: GetNodeInfoRequest) => Promise; /** * GetSyncing queries node syncing. * @name getGetSyncing * @package cosmos.base.tendermint.v1beta1 * @see proto service: cosmos.base.tendermint.v1beta1.GetSyncing */ declare const getGetSyncing: (client: EndpointOrRpc, request: GetSyncingRequest) => Promise; /** * GetLatestBlock returns the latest block. * @name getGetLatestBlock * @package cosmos.base.tendermint.v1beta1 * @see proto service: cosmos.base.tendermint.v1beta1.GetLatestBlock */ declare const getGetLatestBlock: (client: EndpointOrRpc, request: GetLatestBlockRequest) => Promise; /** * GetBlockByHeight queries block for given height. * @name getGetBlockByHeight * @package cosmos.base.tendermint.v1beta1 * @see proto service: cosmos.base.tendermint.v1beta1.GetBlockByHeight */ declare const getGetBlockByHeight: (client: EndpointOrRpc, request: GetBlockByHeightRequest) => Promise; /** * GetLatestValidatorSet queries latest validator-set. * @name getGetLatestValidatorSet * @package cosmos.base.tendermint.v1beta1 * @see proto service: cosmos.base.tendermint.v1beta1.GetLatestValidatorSet */ declare const getGetLatestValidatorSet: (client: EndpointOrRpc, request: GetLatestValidatorSetRequest) => Promise; /** * GetValidatorSetByHeight queries validator-set at a given height. * @name getGetValidatorSetByHeight * @package cosmos.base.tendermint.v1beta1 * @see proto service: cosmos.base.tendermint.v1beta1.GetValidatorSetByHeight */ declare const getGetValidatorSetByHeight: (client: EndpointOrRpc, request: GetValidatorSetByHeightRequest) => Promise; /** * ABCIQuery defines a query handler that supports ABCI queries directly to the * application, bypassing Tendermint completely. The ABCI query must contain * a valid and supported path, including app, custom, p2p, and store. * @name getABCIQuery * @package cosmos.base.tendermint.v1beta1 * @see proto service: cosmos.base.tendermint.v1beta1.ABCIQuery */ declare const getABCIQuery: (client: EndpointOrRpc, request: ABCIQueryRequest) => Promise; //#endregion export { getABCIQuery, getGetBlockByHeight, getGetLatestBlock, getGetLatestValidatorSet, getGetNodeInfo, getGetSyncing, getGetValidatorSetByHeight };