MsgConnectionOpenAck defines a msg sent by a Relayer to Chain A to acknowledge the change of connection state to TRYOPEN on Chain B.

interface MsgConnectionOpenAck {
    clientState?: Any;
    connectionId: string;
    consensusHeight: undefined | Height;
    counterpartyConnectionId: string;
    proofClient: Uint8Array;
    proofConsensus: Uint8Array;
    proofHeight: undefined | Height;
    proofTry: Uint8Array;
    signer: string;
    version?: Version;
}

Properties

clientState?: Any
connectionId: string
consensusHeight: undefined | Height
counterpartyConnectionId: string
proofClient: Uint8Array

proof of client state included in message

proofConsensus: Uint8Array

proof of client consensus state

proofHeight: undefined | Height
proofTry: Uint8Array

proof of the initialization the connection on Chain B: UNITIALIZED -> TRYOPEN

signer: string
version?: Version