Skip to content

Commit 33ab26a

Browse files
author
Esau
committed
init
1 parent ac71126 commit 33ab26a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

docs/docs/developers/getting_started/getting_started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ For easier development, install the Noir extension/LSP for VSCode ([download](ht
2222

2323
Once the prerequisites are met, run this command to install the Aztec toolchain:
2424

25-
`aztec-up #include_version_without_prefix`
25+
`aztec-up -v #include_version_without_prefix`
2626

2727
(optional) To set up the LSP for Aztec programming, go to the Noir extension settings in VSCode and under `Noir: Nargo Path` set this value to the location of `aztec-nargo` installed in the command above (this should be in `~/.aztec/bin/aztec-nargo`). `aztec-nargo` is the Noir build tool pinned at a version bundled with each Aztec release to ensure compatibility.
2828

@@ -54,7 +54,7 @@ compiler_version = ">=1.0.0"
5454
type = "contract"
5555

5656
[dependencies]
57-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v1.2.1", directory = "noir-projects/aztec-nr/aztec" }
57+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "#include_aztec_version", directory = "noir-projects/aztec-nr/aztec" }
5858
```
5959

6060
This file is required and defines the contract's metadata and dependencies (including Aztec.nr).
@@ -217,8 +217,8 @@ As setup, first import `easy_private_state` by adding it to your `[dependencies]
217217

218218
```
219219
[dependencies]
220-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v1.2.1", directory = "noir-projects/aztec-nr/aztec" }
221-
easy_private_state = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v1.2.1", directory = "noir-projects/aztec-nr/easy-easy_private-state" }
220+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "#include_aztec_version", directory = "noir-projects/aztec-nr/aztec" }
221+
easy_private_state = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "#include_aztec_version", directory = "noir-projects/aztec-nr/easy-easy_private-state" }
222222
```
223223

224224
Then import `EasyPrivateUint` at the top of your contract:

docs/versioned_docs/version-v1.2.0/developers/getting_started/getting_started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ For easier development, install the Noir extension/LSP for VSCode ([download](ht
2222

2323
Once the prerequisites are met, run this command to install the Aztec toolchain:
2424

25-
`aztec-up #include_version_without_prefix`
25+
`aztec-up -v 1.2.0`
2626

2727
(optional) To set up the LSP for Aztec programming, go to the Noir extension settings in VSCode and under `Noir: Nargo Path` set this value to the location of `aztec-nargo` installed in the command above (this should be in `~/.aztec/bin/aztec-nargo`). `aztec-nargo` is the Noir build tool pinned at a version bundled with each Aztec release to ensure compatibility.
2828

@@ -54,7 +54,7 @@ compiler_version = ">=1.0.0"
5454
type = "contract"
5555

5656
[dependencies]
57-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v1.2.1", directory = "noir-projects/aztec-nr/aztec" }
57+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v1.2.0", directory = "noir-projects/aztec-nr/aztec" }
5858
```
5959

6060
This file is required and defines the contract's metadata and dependencies (including Aztec.nr).
@@ -217,8 +217,8 @@ As setup, first import `easy_private_state` by adding it to your `[dependencies]
217217

218218
```
219219
[dependencies]
220-
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v1.2.1", directory = "noir-projects/aztec-nr/aztec" }
221-
easy_private_state = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v1.2.1", directory = "noir-projects/aztec-nr/easy-easy_private-state" }
220+
aztec = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v1.2.0", directory = "noir-projects/aztec-nr/aztec" }
221+
easy_private_state = { git = "https://github.com/AztecProtocol/aztec-packages/", tag = "v1.2.0", directory = "noir-projects/aztec-nr/easy-easy_private-state" }
222222
```
223223

224224
Then import `EasyPrivateUint` at the top of your contract:

0 commit comments

Comments
 (0)