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

@@ -1,7 +1,8 @@
import type Vorpal from "vorpal";
import type { CommandContext } from "./types";
export function registerCommands(_vorpal: Vorpal, _ctx: CommandContext): void {
// Add more command registrations here:
// registerMyNewCommand(vorpal, ctx);
import { registerSeedTestContracts } from "./seed-test-contracts.cmd";
export function registerCommands(vorpal: Vorpal, ctx: CommandContext): void {
registerSeedTestContracts(vorpal, ctx);
}