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

Fix spelling #525

Merged
merged 1 commit into from
Sep 10, 2024
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ This information fits with our mental map of the circuit we created: we had two
snarkjs r1cs print circuit.r1cs circuit.sym
```

To double check, we print the constraints of the circuit.
To double-check, we print the constraints of the circuit.

You should see a thousand constraints of the form:

Expand Down Expand Up @@ -318,7 +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
circuit_js$ node generate_witness.js circuit.wasm ../input.json ../witness.wtns
node generate_witness.js circuit.wasm ../input.json ../witness.wtns
```

We can check if the generated witness complies with the `r1cs` file with the following command:
Expand Down Expand Up @@ -481,7 +481,7 @@ snarkjs fflonk verify verification_key.json public.json proof.json
snarkjs groth16 verify verification_key.json public.json proof.json
```

We use the this command to verify the proof, passing in the `verification_key` we exported earlier.
We use this command to verify the proof, passing in the `verification_key` we exported earlier.

If all is well, you should see that `OK` has been outputted to your console. This signifies the proof is valid.

Expand Down Expand Up @@ -610,7 +610,7 @@ the Random Beacon Model](https://eprint.iacr.org/2017/1050.pdf)
- [Perpetual Powers of Tau](https://github.com/weijiekoh/perpetualpowersoftau)
- [Powers of Tau](https://github.com/ebfull/powersoftau)
- [Trusted setup ceremonies explored](https://www.zeroknowledge.fm/133)
- [Simple react projct using snarkjs](https://github.com/LHerskind/snarkjs-react)
- [Simple react project using snarkjs](https://github.com/LHerskind/snarkjs-react)

## Final note

Expand Down
Loading
Loading