UNPKG

@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

7 lines (6 loc) 462 B
import { Network } from "../../network"; import { Node } from "../../sharedTypes"; export declare function genBootnodeDef(namespace: string, nodeSetup: Node): Promise<any>; export declare function genNodeDef(namespace: string, nodeSetup: Node): Promise<any>; export declare function replaceNetworkRef(podDef: any, network: Network): void; export declare function createTempNodeDef(name: string, image: string, chain: string, fullCommand: string): Promise<Node>;