QueryClientStateResponse is the response type for the Query/ClientState RPC method. Besides the client state, it includes a proof and the height from which the proof was retrieved.

interface QueryClientStateResponse {
    clientState?: Any;
    proof: Uint8Array;
    proofHeight: undefined | Height;
}

Properties

clientState?: Any

client state associated with the request identifier

proof: Uint8Array

merkle proof of existence

proofHeight: undefined | Height

height at which the proof was retrieved