IdentifiedChannel defines a channel with additional port and channel identifier fields.

interface IdentifiedChannelAmino {
    channel_id?: string;
    connection_hops?: string[];
    counterparty?: CounterpartyAmino;
    ordering?: Order;
    port_id?: string;
    state?: State;
    version?: string;
}

Properties

channel_id?: string

channel identifier

connection_hops?: string[]

list of connection identifiers, in order, along which packets sent on this channel will travel

counterparty?: CounterpartyAmino

counterparty channel end

ordering?: Order

whether the channel is ordered or unordered

port_id?: string

port identifier

state?: State

current state of the channel end

version?: string

opaque channel version, which is agreed upon during the handshake