UNPKG

@hyperlane-xyz/cli

Version:

A command-line utility for common Hyperlane operations

25 lines 597 B
import { CommandModule, Options } from 'yargs'; /** * Parent command */ export declare const sendCommand: CommandModule; /** * Base options for all message/warp send/status commands */ export declare const messageOptions: { [k: string]: Options; }; /** * Options for message/warp send command with destination chain specified */ export declare const messageSendOptions: { [k: string]: Options; }; export interface MessageOptionsArgTypes { origin?: string; destination?: string; timeout: number; quick: boolean; relay: boolean; } //# sourceMappingURL=send.d.ts.map