You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Circuit-specific setup optionally takes the path to a PTAU file as argument. If not provided, it will automatically decide the PTAU to use with respect to constraint count, and download that for you! This feature only works for bn128 prime, and has an upper-limit of at most $2^{28}$ constraints.
Some actions such as generating a witness, generating a proof and verifying a proof require JSON inputs to provide the signal values. For that, we specifically create our input files under the inputs folder, and under the target circuit name there. For example, an input named foo for some circuit named bar would be at inputs/bar/foo.json.
# Generate a witness
npx circomkit witness <circuit><input># Generate a proof
npx circomkit prove <circuit><input># Verify a proof with public signals
npx circomkit verify <circuit><input># Export Solidity calldata to console
npx circomkit calldata <circuit><input>
You can also list the circuit templates and compiled instances with the command:
npx circomkit list
Circomkit Configurations
Everything used by Circomkit can be optionally overridden by providing the selected fields in its constructor. Circomkit CLI does this automatically by checking out circomkit.json and overriding the defaults with that. You can print the active configuration via the following command:
npx circomkit config
You can edit any of the fields there to fit your needs. Most importantly, you can change the protocol to be groth16, plonk or fflonk; and you can change the underlying prime field to bn128, bls12381 and goldilocks.
Note
Using a prime other than bn128 makes things a bit harder in circuit-specific setup, as you will have to find the PTAU files yourself, whereas in bn128 we can use Perpetual Powers of Tau.
Circuit Configurations
A circuit config within circuits.json looks like below, where the key is the circuit name to be used in commands, and the value is an object that describes the filename, template name, public signals and template parameters:
The pubs and params options can be omitted, in which case they will default to [].
Using Circomkit in Code
All CLI commands other than init can be used with the same name and arguments within Circomkit. Furthermore, you can provide configuration & inputs directly, instead of letting Circomkit read from circuits.json or from within the inputs folder.
import{Circomkit}from'circomkit';constcircomkit=newCircomkit({// custom configurationsprotocol: 'plonk',});// artifacts output at `build/multiplier_3` directoryawaitcircomkit.compile('multiplier_3',{file: 'multiplier',template: 'Multiplier',params: [3],});// proof & public signals at `build/multiplier_3/my_input` directoryawaitcircomkit.prove('multiplier_3','my_input',{in: [3,5,7]});// verify with proof & public signals at `build/multiplier_3/my_input`awaitcircomkit.verify('multiplier_3','my_input');
Writing Tests
Circomkit provides two tester utilities that use Chai assertions within, which may be used in a test suite such as Mocha. The key point of these utilities is to help reduce boilerplate code and let you simply worry about the inputs and outputs of a circuit.
Witness Tester
The Witness tester extends require('circom_tester').wasm tool with type-safety and few assertion functions. It provides a very simple interface:
expectPass(input) checks if constraints & assertions are passing for an input
expectPass(input, output) additionally checks if the outputs are matching
expectFail(input) checks if any constraints / assertions are failing
See an example below:
describe('witness tester',()=>{// input signals and output signals can be given as type parameters// this makes all functions type-safe!letcircuit: WitnessTester<['in'],['out']>;beforeAll(async()=>{constcircomkit=newCircomkit();circuit=awaitcircomkit.WitnessTester(CIRCUIT_NAME,CIRCUIT_CONFIG);});it('should pass on correct input & output',async()=>{awaitcircuit.expectPass(INPUT,OUTPUT);});it('should fail on wrong output',async()=>{awaitcircuit.expectFail(INPUT,WRONG_OUTPUT);});it('should fail on bad input',async()=>{awaitcircuit.expectFail(BAD_INPUT);});});
You can check if the number of constraints are correct using expectConstraintCount, as shown below:
it('should have correct number of constraints',async()=>{// expects at least N constraintsawaitcircuit.expectConstraintCount(N);// expects exactly N constraintsawaitcircuit.expectConstraintCount(N,true);});
If you want more control over the output signals, you can use the compute function. It takes in an input, and an array of output signal names used in the main component so that they can be extracted from the witness.
Finally, you can run tests on the witnesses too. This is most useful when you would like to check for soundness errors.
expectConstraintPass(witness) checks if constraints are passing for a witness
expectConstraintFail(witness) checks if constraints are failing
You can compute the witness via the calculateWitness(input) function. To test for soundness errors, you may edit the witness and see if constraints are failing.
Circomkit provides a nice utility for this purpose, called editWitness(witness, symbols). You simply provide a dictionary of symbols to their new values, and it will edit the witness accordingly. See the example below:
it('should pass on correct witness',async()=>{constwitness=awaitcircuit.calculateWitness(INPUT);awaitcircuit.expectConstraintPass(witness);});it('should fail on fake witness',async()=>{constwitness=awaitcircuit.calculateWitness(INPUT);constbadWitness=awaitcircuit.editWitness(witness,{'main.signal': BigInt(1234),'main.component.signal': BigInt('0xCAFE'),'main.foo.bar[0]': BigInt('0b0101'),});awaitcircuit.expectConstraintFail(badWitness);});
Using C Tester (Work in Progress ⌛)
You can make use of the C-tester as well, which performs much better for larger circuits than the WASM alternative.
There may be some prerequisites to compile, and we have an issue on this right now until we can have a complete setup guide.
Proof Tester
As an alternative to simulate generating a proof and verifying it, you can use Proof Tester. The proof tester makes use of WASM file, prover key and verifier key in the background. It will use the underlying Circomkit configuration to look for those files, and it can generate them automatically if they do not exist. An example using Plonk protocol is given below. Notice how we create the necessary files before creating the tester, as they are required for proof generation and verification.
describe('proof tester',()=>{// input signals and output signals can be given as type parameters// this makes all functions type-safe!letcircuit: ProofTester<['in']>;constprotocol='plonk';beforeAll(async()=>{constcircomkit=newCircomkit({protocol});circomkit.instantiate(CIRCUIT_NAME,CIRCUIT_CONFIG);awaitcircomkit.setup(CIRCUIT_NAME,PTAU_PATH);circuit=awaitcircomkit.ProofTester(CIRCUIT_NAME,protocol);});it('should verify a proof correctly',async()=>{const{proof, publicSignals}=awaitcircuit.prove(INPUT);awaitcircuit.expectPass(proof,publicSignals);});it('should NOT verify a proof with invalid public signals',async()=>{const{proof}=awaitcircuit.prove(INPUT);awaitcircuit.expectFail(proof,BAD_PUBLIC_SIGNALS);});});
Type-Safety
You may notice that there are optional template parameters in both testers: WitnessTester<InputSignals, OutputSignals> and ProofTester<InputSignals>. These template parameters take in an array of strings corresponding to signal names. For example, if your circuit has two input signals in1, in2 and an output out, you may instantiate the tester as WitnessTester<['in1', 'in2'], ['out']>. In doing so, you will get type-checking on all inputs and outputs required by the tester.
File Structure
Circomkit with its default configuration follows an opinionated file structure, abstracting away the pathing and orientation behind the scenes. All of these can be customized by overriding the respective settings in circomkit.json.
An example structure is shown below. Suppose there is a generic circuit for a Sudoku solution knowledge proof written under circuits folder. When instantiated, a main component for a 9x9 board is created under circuits/main. The solution along with it's puzzle is stored as a JSON object under inputs/sudoku_9x9. You can see the respective artifacts under build directory. In particular, we see groth16 prefix on some files, indicating that Groth16 protocol was used to create them.
circomkit
├── circuits.json -"circuit configurations"
├── circomkit.json -"circomkit configurations"
│
├── circuits -"circuit codes are here"
│ ├── main -"main components will be here"
│ │ └── sudoku_9x9.circom -"auto-generated circuit instance"
│ └── sudoku.circom -"circuit template"
│
├── inputs -"circuit inputs are here"
│ └── sudoku_9x9 -"folder name is the circuit instance name"
│ └── my_solution.json -"file name is the input name"
│
├── ptau -"PTAU files are here"
│ └── powersOfTau28_hez_final_08.ptau
│
└── build -"build artifacts are stored here"
└── sudoku_9x9 -"folder name is the circuit instance name"
├── sudoku_9x9_js -"WASM outputs"
│ │── generate_witness.js
│ │── witness_calculator.js
│ └── sudoku_9x9.wasm
│
├── my_solution -"folder name is the input name"
│ │── groth16_proof.json -"proofs are created per protocol"
│ │── public.json
│ └── witness.wtns
│
├── sudoku_9x9.r1cs
├── sudoku_9x9.sym -"symbol file, used by tests"
│
├── groth16_pkey.zkey -"proving key per protocol"
├── groth16_vkey.json -"verification key per protocol"
└── groth16_verifier.sol -"verifier contract"
Testing
Run all tests via:
pnpm test
Tip
You can also use the CLI while developing Circomkit locally via pnpm cli as if you are using npx circomkit. This is useful for hands-on testing stuff.