From 39162aa48d603f88253188e7f3824a38e48a4499 Mon Sep 17 00:00:00 2001 From: 0xsisyfos <107465625+0xsisyfos@users.noreply.github.com> Date: Sun, 24 Mar 2024 15:32:12 -0600 Subject: [PATCH] fix: add missing cd command for hello world (#912) --- docs/build/quick-start/hello-world.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/build/quick-start/hello-world.md b/docs/build/quick-start/hello-world.md index d1940968e1..960a0a417e 100644 --- a/docs/build/quick-start/hello-world.md +++ b/docs/build/quick-start/hello-world.md @@ -113,6 +113,12 @@ Smart contracts deployed to zkSync must be compiled using our custom compilers: As this is a Solidity project, it already has the `hardhat-zksync-solc` plugin installed and configured so there's nothing you need to setup. To compile the contracts in the project, run the following command: +1. Navigate into the project directory: + +```sh +cd hello-zksync +``` + ::: code-tabs @tab:active yarn