From 918bf83397de453b859cdb7d9edb5ffc088e7fa4 Mon Sep 17 00:00:00 2001 From: Jen <60794961+jennyg0@users.noreply.github.com> Date: Mon, 26 Aug 2024 16:44:32 -0400 Subject: [PATCH 1/2] chore: update use of quickstart template --- content/tutorials/custom-zk-chain/10.index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorials/custom-zk-chain/10.index.md b/content/tutorials/custom-zk-chain/10.index.md index 9df1bea..558cecc 100644 --- a/content/tutorials/custom-zk-chain/10.index.md +++ b/content/tutorials/custom-zk-chain/10.index.md @@ -248,7 +248,7 @@ Now that your chain is deployed and your wallet is funded, let's create a templa Move out of your ecosystem folder and initialize a new hardhat project using ZKsync CLI: ```bash -npx zksync-cli@latest create --template qs-hello-zksync zk-chain-test +npx zksync-cli@latest create --template zksync-101 zk-chain-test cd zk-chain-test ``` From b4d85a26211dee95963020dde55fa634676c0bc4 Mon Sep 17 00:00:00 2001 From: Jen <60794961+jennyg0@users.noreply.github.com> Date: Tue, 27 Aug 2024 10:42:33 -0400 Subject: [PATCH 2/2] fix: update --- content/tutorials/custom-zk-chain/10.index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorials/custom-zk-chain/10.index.md b/content/tutorials/custom-zk-chain/10.index.md index 558cecc..e584287 100644 --- a/content/tutorials/custom-zk-chain/10.index.md +++ b/content/tutorials/custom-zk-chain/10.index.md @@ -269,7 +269,7 @@ defaultNetwork: "dockerizedNode", Finally, compile the contract and run the deploy script: ```bash -yarn compile && yarn deploy +yarn compile && yarn deploy:hello-zksync ``` Nice - you just deployed a contract to your own local ZK chain!