zksync-cli
Version:
CLI tool that simplifies the process of developing applications and interacting with the ZKsync network
17 lines (16 loc) • 577 B
TypeScript
import type { NodeInfo } from "./modules/Module.js";
import type Module from "./modules/Module.js";
declare class ConfigHandlerClass {
getAllModules(): Promise<Module<{
[x: string]: unknown;
}>[]>;
getConfigModules(): Promise<Module<{
[x: string]: unknown;
}>[]>;
setConfigModules(modules: string[]): Promise<void>;
setCustomChain(chainKey?: string): Promise<void>;
getNodeInfo(): Promise<NodeInfo>;
}
export declare const modulesConfigHandler: ConfigHandlerClass;
export type ConfigHandler = typeof modulesConfigHandler;
export {};