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 QueryChannelResponseSDKType {
    channel?: ChannelSDKType;
    proof: Uint8Array;
    proof_height: undefined | HeightSDKType;
}

Properties

channel?: ChannelSDKType
proof: Uint8Array
proof_height: undefined | HeightSDKType