QueryConnectionResponse is the response type for the Query/Connection RPC method. Besides the connection end, it includes a proof and the height from which the proof was retrieved.

interface QueryConnectionResponse {
    connection?: ConnectionEnd;
    proof: Uint8Array;
    proofHeight: undefined | Height;
}

Properties

connection?: ConnectionEnd

connection associated with the request identifier

proof: Uint8Array

merkle proof of existence

proofHeight: undefined | Height

height at which the proof was retrieved