@zombienet/orchestrator
Version:
ZombieNet aim to be a testing framework for substrate based blockchains, providing a simple cli tool that allow users to spawn and test ephemeral Substrate based networks
15 lines (14 loc) • 616 B
TypeScript
import type { LogType } from "@zombienet/utils";
import { Network } from "./network";
import { LaunchConfig } from "./configTypes";
export interface OrcOptionsInterface {
monitor?: boolean;
spawnConcurrency?: number;
inCI?: boolean;
dir?: string;
force?: boolean;
logType?: LogType;
setGlobalNetwork?: (network: Network) => void;
}
export declare function start(credentials: string, launchConfig: LaunchConfig, options?: OrcOptionsInterface): Promise<Network>;
export declare function test(credentials: string, networkConfig: LaunchConfig, cb: (network: Network) => void): Promise<void>;