Constructors

  • Parameters

    Returns QueryClient

Methods

  • Performs an ABCI query to Tendermint without requesting a proof.

    If the desiredHeight is set, a particular height is requested. Otherwise the latest height is requested. The response contains the actual height of the query.

    Parameters

    • path: string
    • request: Uint8Array
    • OptionaldesiredHeight: number

    Returns Promise<QueryAbciResponse>

  • Parameters

    • store: string
    • queryKey: Uint8Array
    • OptionaldesiredHeight: number

    Returns Promise<ProvenQuery>

  • Queries the database store with a proof, which is then verified.

    Please note: the current implementation trusts block headers it gets from the PRC endpoint.

    Parameters

    • store: string
    • queryKey: Uint8Array
    • OptionaldesiredHeight: number

    Returns Promise<QueryStoreResponse>