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