IdentifiedConnection defines a connection with additional connection identifier field.

interface IdentifiedConnectionSDKType {
    client_id: string;
    counterparty: undefined | CounterpartySDKType;
    delay_period: bigint;
    id: string;
    state: State;
    versions: VersionSDKType[];
}

Properties

client_id: string
counterparty: undefined | CounterpartySDKType
delay_period: bigint
id: string
state: State
versions: VersionSDKType[]