IdentifiedConnection defines a connection with additional connection identifier field.

interface IdentifiedConnection {
    clientId: string;
    counterparty: undefined | Counterparty;
    delayPeriod: bigint;
    id: string;
    state: State;
    versions: Version[];
}

Properties

clientId: string

client associated with this connection.

counterparty: undefined | Counterparty

counterparty chain associated with this connection.

delayPeriod: bigint

delay period associated with this connection.

id: string

connection identifier.

state: State

current state of the connection end.

versions: Version[]

IBC version which can be utilised to determine encodings or protocols for channels or packets utilising this connection