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

11 lines (10 loc) 810 B
import { Network } from "../../network"; import { Node } from "../../sharedTypes"; export declare function genBootnodeDef(namespace: string, nodeSetup: Node): Promise<any>; export declare function genPrometheusDef(namespace: string): Promise<any>; export declare function genGrafanaDef(namespace: string, prometheusIp: string, tempoIp: string): Promise<any>; export declare function getIntrospectorDef(namespace: string, wsUri: string): Promise<any>; export declare function genTempoDef(namespace: string): 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>;