Channel defines pipeline for exactly-once packet delivery between specific modules on separate blockchains, which has at least one end capable of sending packets and one end capable of receiving packets.

interface ChannelSDKType {
    connection_hops: string[];
    counterparty: undefined | CounterpartySDKType;
    ordering: Order;
    state: State;
    version: string;
}

Properties

connection_hops: string[]
counterparty: undefined | CounterpartySDKType
ordering: Order
state: State
version: string