From d00aa4cec0b7a5f11142791f17174c9c77d729e6 Mon Sep 17 00:00:00 2001 From: Predrag Gruevski Date: Tue, 12 Jan 2021 19:08:42 -0500 Subject: [PATCH] Update README.md to fix typos. Just two instances of `s/contraints/constraints`. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 476410a..a7ec0f6 100644 --- a/README.md +++ b/README.md @@ -87,7 +87,7 @@ The `new` command is used to start a powers of tau ceremony. The first parameter after `new` refers to the type of curve you wish to use. At the moment, we support both `bn128` and `bls12-381`. -The second parameter, in this case `12`, is the power of two of the maximum number of contraints that the ceremony can accept: in this case, the number of constraints is `2 ^ 12 = 4096`. The maximum value supported here is `28`, which means you can use `snarkjs` to securely generate zk-snark parameters for circuits with up to `2 ^ 28` (≈268 million) constraints. +The second parameter, in this case `12`, is the power of two of the maximum number of constraints that the ceremony can accept: in this case, the number of constraints is `2 ^ 12 = 4096`. The maximum value supported here is `28`, which means you can use `snarkjs` to securely generate zk-snark parameters for circuits with up to `2 ^ 28` (≈268 million) constraints. ### 2. Contribute to the ceremony @@ -217,7 +217,7 @@ component main = Multiplier(1000); EOT ``` -We create a circom file that allows us to easily test the system with a different number of contraints. +We create a circom file that allows us to easily test the system with a different number of constraints. In this case, we've chosen `1000`, but we can change this to anything we want (as long as the value we choose is below the number we defined in step 1).