diff --git a/src/host/host-commands.ts b/src/host/host-commands.ts index e6e55ea..3634ef3 100644 --- a/src/host/host-commands.ts +++ b/src/host/host-commands.ts @@ -82,6 +82,7 @@ interface LocalSpawnOpts { templatesFile?: string; healthPort?: string; baseDir?: string; + network?: string; } interface LocalStopOpts { @@ -736,6 +737,7 @@ async function handleLocalSpawn(cmd: Command, opts: LocalSpawnOpts): Promise', 'Override templates.json (defaults to bundled trader-agent + escrow-service)') .option('--health-port ', 'Override health-check port on 127.0.0.1 (default: derived from wallet)') .option('--base-dir ', `Override per-controller data dir (default: ${DEFAULT_LOCAL_HM_BASE_DIR})`) + .option('--network ', 'Sphere network for the HM (testnet|testnet2|mainnet|dev)') .action(async function (this: Command, opts: LocalSpawnOpts) { await handleLocalSpawn(this, opts); });