create-izi-noir 0.2.19 → 0.2.21
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.
- package/README.md +1 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ npx create-izi-noir my-project --skip-install --skip-git
|
|
|
28
28
|
## Templates
|
|
29
29
|
|
|
30
30
|
### Default
|
|
31
|
-
Includes balance proof and
|
|
31
|
+
Includes balance proof and square proof circuit examples.
|
|
32
32
|
|
|
33
33
|
### Minimal
|
|
34
34
|
Empty circuit for starting from scratch.
|
package/dist/index.js
CHANGED
|
@@ -12,7 +12,7 @@ import pc3 from "picocolors";
|
|
|
12
12
|
import prompts from "prompts";
|
|
13
13
|
import pc from "picocolors";
|
|
14
14
|
var TEMPLATES = [
|
|
15
|
-
{ title: "Default (balance +
|
|
15
|
+
{ title: "Default (balance + square proofs)", value: "default" },
|
|
16
16
|
{ title: "Minimal (empty circuit)", value: "minimal" },
|
|
17
17
|
{ title: "Balance Proof only", value: "balance-proof" }
|
|
18
18
|
];
|
|
@@ -316,7 +316,7 @@ function createGitProgress() {
|
|
|
316
316
|
function generatePackageJson(options) {
|
|
317
317
|
const isSolana = options.provider === "arkworks";
|
|
318
318
|
const dependencies = {
|
|
319
|
-
"@izi-noir/sdk": "^0.1.
|
|
319
|
+
"@izi-noir/sdk": "^0.1.15",
|
|
320
320
|
"@noir-lang/acvm_js": "1.0.0-beta.13-1d260df.nightly",
|
|
321
321
|
"@noir-lang/noirc_abi": "1.0.0-beta.13-1d260df.nightly",
|
|
322
322
|
"react": "^18.3.1",
|