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

Fix qa bugs #46

Merged
merged 9 commits into from
May 10, 2024
Merged
Show file tree
Hide file tree
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
8 changes: 3 additions & 5 deletions content/00.build/10.quick-start/00.index.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,15 +128,13 @@ If you did not set up a local era node for development and plan to use %%zk_test
1. Obtaining Testnet ETH:

- Use the [LearnWeb3 faucet](https://learnweb3.io/faucets/zksync_sepolia/)
to directly receive testnet ETH on ZKsync Sepolia.
- Alternatively, acquire SepoliaETH from [recommended faucets](https://www.notion.so/tooling/network-faucets.md) and
to directly receive testnet ETH on %%zk_testnet_name%%.
- Alternatively, acquire SepoliaETH from [recommended faucets](/ecosystem/network-faucets)
transfer it to the %%zk_testnet_name%% via the [ZKsync bridge](https://portal.zksync.io/bridge/?network=sepolia).

2. Verify your balance:

- Check your wallet's balance using the
[%%zk_testnet_name%%
explorer](%%zk_testnet_block_explorer_url%%)
- Check your wallet's balance using the [%%zk_testnet_name%% explorer](%%zk_testnet_block_explorer_url%%).

---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,25 +124,29 @@ deploys to the configured network in your Hardhat setup. For local deployment, a
::code-group

```bash [npm]
npm run hardhat deploy-zksync --script deploy.ts
npm run deploy
# The deploy keyword will trigger the `deploy` script command on `package.json`
# To deploy the contract on local in-memory node:
# npm run hardhat deploy-zksync --script deploy.ts --network inMemoryNode
```

```bash [yarn]
yarn hardhat deploy-zksync --script deploy.ts
yarn deploy
# The deploy keyword will trigger the `deploy` script command on `package.json`
# To deploy the contract on local in-memory node:
# yarn hardhat deploy-zksync --script deploy.ts --network inMemoryNode
```

```bash [pnpm]
pnpm run hardhat deploy-zksync --script deploy.ts
pnpm run deploy
# The deploy keyword will trigger the `deploy` script command on `package.json`
# To deploy the contract on local in-memory node:
# pnpm run hardhat deploy-zksync --script deploy.ts --network inMemoryNode
```

```bash [bun]
bun run hardhat deploy-zksync --script deploy.ts
bun run deploy
# The deploy keyword will trigger the `deploy` script command on `package.json`
# To deploy the contract on local in-memory node:
# bun run hardhat deploy-zksync --script deploy.ts --network inMemoryNode
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ If you're working within the local development environment,
you can utilize pre-configured rich wallets and skip this step.
For testnet deployments, you should have your wallet funded from the [previous step](/build/quick-start#fund-your-wallet).

Ensure your project is configured to [use your wallet via the `.env` file](/build/quick-start#fund-your-wallet).
Ensure your project is configured to [use your wallet via the `.env` file](/build/quick-start#configure-your-wallet-in-a-project).
Loading