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

interface MsgConnectionOpenAckAmino {
    client_state?: AnyAmino;
    connection_id?: string;
    consensus_height?: HeightAmino;
    counterparty_connection_id?: string;
    proof_client?: string;
    proof_consensus?: string;
    proof_height?: HeightAmino;
    proof_try?: string;
    signer?: string;
    version?: VersionAmino;
}

Properties

client_state?: AnyAmino
connection_id?: string
consensus_height?: HeightAmino
counterparty_connection_id?: string
proof_client?: string

proof of client state included in message

proof_consensus?: string

proof of client consensus state

proof_height?: HeightAmino
proof_try?: string

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

signer?: string
version?: VersionAmino