From f2819dfb686a6007c535b71dc293a25a42554ff6 Mon Sep 17 00:00:00 2001 From: Sabrina Ferguson Date: Tue, 20 Aug 2024 09:28:21 -0400 Subject: [PATCH] feat: add zksync-101 template --- src/commands/create/groups/quickstart.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/commands/create/groups/quickstart.ts b/src/commands/create/groups/quickstart.ts index 6c71851..10a659b 100644 --- a/src/commands/create/groups/quickstart.ts +++ b/src/commands/create/groups/quickstart.ts @@ -16,6 +16,15 @@ export type Template = GenericTemplate & { }; export const templates: Template[] = [ + { + name: "ZKsync 101", + value: "zksync-101", + framework: "Hardhat", + ethereumFramework: "Ethers v6", + language: "Solidity", + path: "templates/101", + git: "https://github.com/matter-labs/zksync-contract-templates/", + }, { name: "Quickstart - Hardhat + Solidity", value: "qs-hello-zksync",