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

interface MsgChannelOpenAck {
    channelId: string;
    counterpartyChannelId: string;
    counterpartyVersion: string;
    portId: string;
    proofHeight: undefined | Height;
    proofTry: Uint8Array;
    signer: string;
}

Properties

channelId: string
counterpartyChannelId: string
counterpartyVersion: string
portId: string
proofHeight: undefined | Height
proofTry: Uint8Array
signer: string