UNPKG

@holographxyz/cli

Version:
18 lines (17 loc) 614 B
import { Command } from '@oclif/core'; import { NetworkMonitor } from '../../utils/network-monitor'; /** * Bond * Description: Bond and operator into a pod. */ export default class Bond extends Command { static description: string; static examples: string[]; static flags: { pod: import("@oclif/core/lib/interfaces").OptionFlag<number | undefined>; amount: import("@oclif/core/lib/interfaces").OptionFlag<number | undefined>; network: import("@oclif/core/lib/interfaces").OptionFlag<string | undefined>; }; networkMonitor: NetworkMonitor; run(): Promise<void>; }