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