MsgIBCSend

interface MsgIBCSend {
    channel: string;
    data: Uint8Array;
    timeoutHeight: bigint;
    timeoutTimestamp: bigint;
}

Properties

channel: string

the channel by which the packet will be sent

data: Uint8Array

Data is the payload to transfer. We must not make assumption what format or content is in here.

timeoutHeight: bigint

Timeout height relative to the current block height. The timeout is disabled when set to 0.

timeoutTimestamp: bigint

Timeout timestamp (in nanoseconds) relative to the current block timestamp. The timeout is disabled when set to 0.