feat: add the seed contracts

This commit is contained in:
ghost2023
2026-07-01 14:26:32 +03:00
parent c88c5ee450
commit abdf459289
3 changed files with 369 additions and 4 deletions

View File

@@ -18,7 +18,13 @@ async function main() {
try {
registerCommands(vorpal, { app });
vorpal.parse(process.argv);
const args = process.argv.slice(2);
if (args.length > 0) {
await vorpal.exec(args.join(" "));
} else {
vorpal.parse(process.argv);
}
} finally {
await app.close();
}