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

cd to correct directories #263

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,7 @@ EOT
Now, we use the Javascript/WASM program created by `circom` in the directory *circuit_js* to create the witness (values of all the wires) for our inputs:

```sh
cd circuit_js
circuit_js$ node generate_witness.js circuit.wasm ../input.json ../witness.wtns
```

Expand All @@ -329,13 +330,15 @@ Groth16 requires a trusted ceremony for each circuit. PLONK does not require it,

#### Plonk
```sh
cd ..
snarkjs plonk setup circuit.r1cs pot12_final.ptau circuit_final.zkey
```

You can jump directly to Section 21 as PLONK does not require a specific trusted ceremony.

#### Groth16
```sh
cd ..
snarkjs groth16 setup circuit.r1cs pot12_final.ptau circuit_0000.zkey
```

Expand Down