-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcircuits.config.json
60 lines (60 loc) · 1.96 KB
/
circuits.config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[
{
"name": "hash",
"protocol": "groth16",
"circuit": "hash/circuit.circom",
"input": "hash/input.json",
"wasm": "hash/out/circuit.wasm",
"zkey": "hash/out/hash.zkey",
"vkey": "hash/out/hash.vkey",
"r1cs": "hash/out/hash.r1cs",
"beacon": "0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f"
},
{
"name": "simple-polynomial",
"protocol": "groth16",
"circuit": "simple-polynomial/circuit.circom",
"input": "simple-polynomial/input.json",
"wasm": "simple-polynomial/out/circuit.wasm",
"zkey": "simple-polynomial/out/simple-polynomial.zkey",
"vkey": "simple-polynomial/out/simple-polynomial.vkey",
"r1cs": "simple-polynomial/out/simple-polynomial.r1cs",
"beacon": "0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f"
},
{
"name": "none-zero",
"version": 2,
"protocol": "groth16",
"circuit": "none-zero/circuit.circom",
"input": "none-zero/input.json",
"wasm": "none-zero/out/circuit.wasm",
"zkey": "none-zero/out/none-zero.zkey",
"vkey": "none-zero/out/none-zero.vkey",
"r1cs": "none-zero/out/none-zero.r1cs",
"beacon": "0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f"
},
{
"name": "average",
"version": 2,
"protocol": "groth16",
"circuit": "average/circuit.circom",
"input": "average/input.json",
"wasm": "average/out/circuit.wasm",
"zkey": "average/out/average.zkey",
"vkey": "average/out/average.vkey",
"r1cs": "average/out/average.r1cs",
"beacon": "0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f"
},
{
"name": "over21",
"version": 2,
"protocol": "groth16",
"circuit": "over21/circuit.circom",
"input": "over21/input.json",
"wasm": "over21/out/circuit.wasm",
"zkey": "over21/out/over21.zkey",
"vkey": "over21/out/over21.vkey",
"r1cs": "over21/out/over21.r1cs",
"beacon": "0102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f"
}
]