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

interface QueryChannelResponse {
    channel?: Channel;
    proof: Uint8Array;
    proofHeight: undefined | Height;
}

Properties

channel?: Channel

channel associated with the request identifiers

proof: Uint8Array

merkle proof of existence

proofHeight: undefined | Height

height at which the proof was retrieved