MsgConnectionOpenInit defines the msg sent by an account on Chain A to initialize a connection with Chain B.

interface MsgConnectionOpenInit {
    clientId: string;
    counterparty: undefined | Counterparty;
    delayPeriod: bigint;
    signer: string;
    version?: Version;
}

Properties

clientId: string
counterparty: undefined | Counterparty
delayPeriod: bigint
signer: string
version?: Version