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 QueryClientStateResponseSDKType {
    client_state?: AnySDKType;
    proof: Uint8Array;
    proof_height: undefined | HeightSDKType;
}

Properties

client_state?: AnySDKType
proof: Uint8Array
proof_height: undefined | HeightSDKType