@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) • 504 B
TypeScript
import { Node } from "../sharedTypes";
export type GenesisNodeKey = [string, string, {
[key: string]: string;
}];
export declare function getNodeKey(node: Node): GenesisNodeKey;
declare function clearAuthorities(specPath: string): Promise<void>;
declare function addParaCustom(specPath: string, node: Node): Promise<void>;
declare const _default: {
getNodeKey: typeof getNodeKey;
clearAuthorities: typeof clearAuthorities;
addParaCustom: typeof addParaCustom;
};
export default _default;