Interface ChannelInfo

Represents information about an IBC channel, facilitating communication between Sei and different blockchain networks.

interface ChannelInfo {
    client_id: string;
    counterparty_chain_name: string;
    dst_channel: string;
    port_id: string;
    src_channel: string;
}

Properties

client_id: string

The client identifier used for IBC communication.

counterparty_chain_name: string

The name of the counterparty chain with which the channel is established.

dst_channel: string

The channel identifier on the destination chain.

port_id: string

The port identifier used in the IBC communication.

src_channel: string

The channel identifier on the source (Sei) chain.