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

docs: Minor fixes to dapp tutorial #2203

Merged
merged 1 commit into from
Sep 11, 2023
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
2 changes: 1 addition & 1 deletion docs/docs/dev_docs/dapps/tutorials/contract_interaction.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Balance of 0x226f8087792beff8d5009eb94e65d2a4a505b70baf4a9f28d33c8d620b0ba972: 0
Balance of 0x0e1f60e8566e2c6d32378bdcadb7c63696e853281be798c107266b8c3a88ea9b: 0

Awaiting transaction to be mined
Transaction has been mind on block 4
Transaction has been mined on block 4

Balance of 0x0c8a6673d7676cc80aaebe7fa7504cf51daa90ba906861bfad70a58a98bf5a7d: 99
Balance of 0x226f8087792beff8d5009eb94e65d2a4a505b70baf4a9f28d33c8d620b0ba972: 1
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/dev_docs/dapps/tutorials/project_setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Let's start by setting up a regular Javascript NodeJS project. Feel free to skip

We'll use [`yarn`](https://yarnpkg.com/) for managing our project and dependencies, though you can also use `npm` or your Javascript package manager of choice.

1. Ensure node version is 18 or more by running.
1. Ensure node version is 18 or higher by running.

```sh
node -v
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/dev_docs/dapps/tutorials/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ yarn add -D @aztec/aztec-sandbox

Create a new file `src/index.test.mjs` with the imports we'll be using and an empty test suite to begin with:

```ts
```js
import { createSandbox } from '@aztec/aztec-sandbox';
import { Contract, createAccount } from '@aztec/aztec.js';
import PrivateTokenArtifact from '../contracts/private_token/target/PrivateToken.json' assert { type: 'json' };
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/dev_docs/getting_started/sandbox.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Let's create an empty project called `private-token`. If you are familiar with s

Although both `yarn` and `npm` would work, this example uses `yarn`. Open the terminal and do the following

1. Ensure node version is 18 or more by running
1. Ensure node version is 18 or higher by running

```sh
node -v
Expand Down