@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
12 lines (11 loc) • 506 B
TypeScript
import { GenesisNodeKey } from "../chainSpec";
import { Node } from "../sharedTypes";
declare function generateKeyForNode(nodeName?: string): Promise<any>;
export declare function getNodeKey(node: Node): GenesisNodeKey;
export declare function addCollatorSelection(specPath: string, node: Node): Promise<void>;
declare const _default: {
getNodeKey: typeof getNodeKey;
generateKeyForNode: typeof generateKeyForNode;
addCollatorSelection: typeof addCollatorSelection;
};
export default _default;