@aztec/builder 0.36.0 → 0.37.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -13
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,12 +1,11 @@
1
- # Aztec.nr compiler
1
+ # Aztec builder
2
2
 
3
- The Aztec.nr compiler compiles Aztec.nr contracts using nargo and outputs Aztec formatted contract ABIs.
4
- The compiler can also generate typescript classes for each contract, as well as Aztec.nr interfaces for calling external functions.
3
+ The Aztec builder generates typescript classes for Noir contract, as well as Aztec.nr interfaces for calling external functions.
5
4
  It can also be used to update aztec project dependencies.
6
5
 
7
6
  ## Installation
8
7
 
9
- To install the package, run:
8
+ To install the package, run:
10
9
 
11
10
  ```bash
12
11
  yarn add @aztec/builder
@@ -14,15 +13,8 @@ yarn add @aztec/builder
14
13
 
15
14
  ## Usage
16
15
 
17
- To run the compiler as a CLI tool, first install the package and then run:
16
+ To run the tool, first install the package and then run:
18
17
 
19
18
  ```bash
20
- yarn aztec-builder compile --help
19
+ yarn aztec-builder --help
21
20
  ```
22
-
23
- You can also run the compiler from the [main Aztec CLI](../cli/README.md), which includes several other features for interacting with the Aztec Network:
24
-
25
- ```bash
26
- yarn add @aztec/cli
27
- yarn aztec-cli compile --help
28
- ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aztec/builder",
3
- "version": "0.36.0",
3
+ "version": "0.37.0",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": "./dest/index.js",
@@ -57,9 +57,9 @@
57
57
  ]
58
58
  },
59
59
  "dependencies": {
60
- "@aztec/circuits.js": "0.36.0",
61
- "@aztec/foundation": "0.36.0",
62
- "@aztec/types": "0.36.0",
60
+ "@aztec/circuits.js": "0.37.0",
61
+ "@aztec/foundation": "0.37.0",
62
+ "@aztec/types": "0.37.0",
63
63
  "@iarna/toml": "^2.2.5",
64
64
  "base64-js": "^1.5.1",
65
65
  "commander": "^9.0.0",