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) 409 B
import { ChaosSpec } from "./types"; import { DelayNetworkSettings } from "../../../sharedTypes"; export declare class ChaosResource { protected readonly name: string; protected readonly namespace: string; protected readonly delay: DelayNetworkSettings; constructor(name: string, namespace: string, delay: DelayNetworkSettings); generateSpec(): ChaosSpec; private generateChaosSpec; }