@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
14 lines (13 loc) • 609 B
TypeScript
import { getChainSpecRaw, setupChainSpec } from "./chainSpec";
import { genBootnodeDef, genNodeDef, replaceNetworkRef } from "./dynResourceDefinition";
import { NativeClient, initClient } from "./nativeClient";
export declare const provider: {
NativeClient: typeof NativeClient;
genBootnodeDef: typeof genBootnodeDef;
genNodeDef: typeof genNodeDef;
initClient: typeof initClient;
setupChainSpec: typeof setupChainSpec;
getChainSpecRaw: typeof getChainSpecRaw;
replaceNetworkRef: typeof replaceNetworkRef;
getCliArgsHelp: (image: string, command: string) => Promise<string>;
};