zksync-cli
Version:
CLI tool that simplifies the process of developing applications and interacting with the ZKsync network
9 lines (8 loc) • 360 B
TypeScript
import type { GenericTemplate } from "../index.js";
type Template = GenericTemplate & {
framework: "Node.js";
ethereumFramework: "Ethers v6" | "viem" | "Web3.js";
};
export declare const templates: Template[];
declare const _default: (folderLocation: string, folderRelativePath: string, templateKey?: string) => Promise<void>;
export default _default;