Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update use of quickstart template #49

Merged
merged 2 commits into from
Aug 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/tutorials/custom-zk-chain/10.index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand All @@ -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!
Expand Down
Loading