@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) • 570 B
TypeScript
import type { LogType } from "@zombienet/utils";
import { Network } from "./network";
import { Client } from "./providers/client";
import { NodeMultiAddress, fileMap } from "./types";
import { Node, Parachain } from "./sharedTypes";
export declare const spawnNode: (client: Client, node: Node, network: Network, bootnodes: string[], filesToCopy: fileMap[], opts: {
logType: LogType;
inCI: boolean;
monitorIsAvailable: boolean;
userDefinedTypes?: any;
local_ip?: string;
jaegerUrl?: string;
}, parachain?: Parachain) => Promise<NodeMultiAddress>;