UNPKG

@bandprotocol/bandchain.js

Version:

TypeScript library for Cosmos SDK and BandChain

12 lines (11 loc) 596 B
import { LCDClient } from "@cosmology/lcd"; import { ProofRequest, ProofResponseSDKType, MultiProofRequest, MultiProofResponseSDKType, RequestCountProofRequest, RequestCountProofResponseSDKType } from "./proof"; export declare class LCDQueryClient { req: LCDClient; constructor({ requestClient }: { requestClient: LCDClient; }); proof(params: ProofRequest): Promise<ProofResponseSDKType>; multiProof(params: MultiProofRequest): Promise<MultiProofResponseSDKType>; requestCountProof(_params?: RequestCountProofRequest): Promise<RequestCountProofResponseSDKType>; }