fix: align deployment manifest schema

This commit is contained in:
golem
2026-08-21 02:55:41 -06:00
parent be8f01ea4e
commit c6bf8a683f
8 changed files with 389 additions and 139 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ export async function selectManifest({ root = process.cwd(), network }) {
export async function runSelectCli(argv, { root = process.cwd(), log = console.log } = {}) {
log(EDUCATIONAL_WARNING);
if (argv.length !== 1) throw new Error("usage: select-manifest.mjs <anvil|base-sepolia>");
if (argv.length !== 1) throw new Error("usage: select-manifest.mjs <anvil|baseSepolia>");
return selectManifest({ root, network: argv[0] });
}