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

New package for general-purpose Circom circuits #74

Closed
wants to merge 2 commits into from
Closed
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
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
"circom"
],
"workspaces": [
"packages/*"
"packages/*",
"packages/circuits/src"
],
"packageManager": "[email protected]",
"devDependencies": {
Expand Down
1 change: 1 addition & 0 deletions packages/circuits/LICENSE
1 change: 1 addition & 0 deletions packages/circuits/README.md
Binary file added packages/circuits/binary-merkle-root.r1cs
Binary file not shown.
5 changes: 5 additions & 0 deletions packages/circuits/components/binary-merkle-root.circom
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pragma circom 2.1.5;

include "../templates/binary-merkle-root.circom";

component main {public [depth]} = BinaryMerkleRoot(16);
5 changes: 5 additions & 0 deletions packages/circuits/components/poseidon-proof.circom
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pragma circom 2.1.5;

include "../templates/poseidon-proof.circom";

component main {public [scope]} = PoseidonProof();
Binary file added packages/circuits/merkle-root.r1cs
Binary file not shown.
9 changes: 9 additions & 0 deletions packages/circuits/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "circuits",
"private": true,
"description": "A comprehensive library of general-purpose Circom circuits.",
"license": "MIT",
"scripts": {
"compile": "circom --r1cs -l ../../node_modules/circomlib/circuits"
}
}
Binary file added packages/circuits/poseidon-proof.r1cs
Binary file not shown.
21 changes: 21 additions & 0 deletions packages/circuits/templates/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 Ethereum Foundation

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
50 changes: 50 additions & 0 deletions packages/circuits/templates/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<p align="center">
<h1 align="center">
ZK-kit circuits
</h1>
<p align="center">A comprehensive library of general-purpose Circom circuits.</p>
</p>

<p align="center">
<a href="https://github.com/privacy-scaling-explorations/zk-kit">
<img src="https://img.shields.io/badge/project-zk--kit-blue.svg?style=flat-square">
</a>
<a href="https://github.com/privacy-scaling-explorations/zk-kit/tree/main/packages/circuits.sol/LICENSE">
<img alt="Github license" src="https://img.shields.io/github/license/privacy-scaling-explorations/zk-kit.svg?style=flat-square">
</a>
<a href="https://www.npmjs.com/package/@zk-kit/circuits">
<img alt="NPM version" src="https://img.shields.io/npm/v/@zk-kit/circuits?style=flat-square" />
</a>
<a href="https://npmjs.org/package/@zk-kit/circuits">
<img alt="Downloads" src="https://img.shields.io/npm/dm/@zk-kit/circuits.svg?style=flat-square" />
</a>
<a href="https://bundlephobia.com/package/@zk-kit/circuits">
<img alt="npm bundle size (scoped)" src="https://img.shields.io/bundlephobia/minzip/@zk-kit/circuits" />
</a>
</p>

<div align="center">
<h4>
<a href="https://appliedzkp.org/discord">
🗣️ Chat &amp; Support
</a>
</h4>
</div>

---

## 🛠 Install

### npm or yarn

Install the `@zk-kit/circuits` package with npm:

```bash
npm i @zk-kit/circuits --save
```

or yarn:

```bash
yarn add @zk-kit/circuits
```
32 changes: 32 additions & 0 deletions packages/circuits/templates/binary-merkle-root.circom
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
pragma circom 2.1.5;

include "poseidon.circom";
include "mux1.circom";
include "comparators.circom";

template BinaryMerkleRoot(MAX_DEPTH) {
signal input leaf, depth, indices[MAX_DEPTH], siblings[MAX_DEPTH];

signal output out;

signal nodes[MAX_DEPTH + 1];
nodes[0] <== leaf;

signal roots[MAX_DEPTH];
var root = 0;

for (var i = 0; i < MAX_DEPTH; i++) {
var a = IsEqual()([depth, i]);

roots[i] <== a * nodes[i];

root += roots[i];

var c[2][2] = [ [nodes[i], siblings[i]], [siblings[i], nodes[i]] ];
var childNodes[2] = MultiMux1(2)(c, indices[i]);

nodes[i + 1] <== Poseidon(2)(childNodes);
}

out <== root;
}
24 changes: 24 additions & 0 deletions packages/circuits/templates/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "@zk-kit/circuits",
"version": "0.1.0",
"description": "A comprehensive library of general-purpose Circom circuits.",
"license": "MIT",
"files": [
"**/*.circom",
"LICENSE",
"README.md"
],
"keywords": [
"zk-kit",
"circom",
"circuits"
],
"repository": "[email protected]:privacy-scaling-explorations/zk-kit.git",
"homepage": "https://github.com/privacy-scaling-explorations/zk-kit/tree/main/packages/circuits.sol",
"publishConfig": {
"access": "public"
},
"dependencies": {
"circomlib": "^2.0.5"
}
}
24 changes: 24 additions & 0 deletions packages/circuits/templates/poseidon-proof.circom
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
pragma circom 2.1.5;

include "poseidon.circom";

// This circuit can be used to prove the possession of a pre-image of a
// hash without revealing the pre-image itself. It utilizes the Poseidon
// hash function, a highly efficient and secure hash function suited
// for zero-knowledge proof contexts.
// A scope value can be used to define a nullifier to prevent the same
// proof from being re-used twice.
template PoseidonProof() {
// The circuit takes two inputs: the pre-image (in) and an additional scope parameter (scope).
signal input in;
signal input scope;

// It applies the Poseidon hash function to the pre-image to produce a hash output (out).
signal output out;
out <== Poseidon(1)([in]);

// A nullifier is also computed using both the pre-image and the scope, providing a value
// to prevent the same proof from being reused twice.
signal output nullifier;
nullifier <== Poseidon(2)([scope, in]);
}
76 changes: 75 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4382,6 +4382,14 @@ __metadata:
languageName: node
linkType: hard

"@zk-kit/circuits@workspace:packages/circuits/src":
version: 0.0.0-use.local
resolution: "@zk-kit/circuits@workspace:packages/circuits/src"
dependencies:
circomlib: ^2.0.5
languageName: unknown
linkType: soft

"@zk-kit/groth16@workspace:packages/groth16":
version: 0.0.0-use.local
resolution: "@zk-kit/groth16@workspace:packages/groth16"
Expand Down Expand Up @@ -6457,6 +6465,21 @@ __metadata:
languageName: node
linkType: hard

"circom_tester@npm:0.0.20":
version: 0.0.20
resolution: "circom_tester@npm:0.0.20"
dependencies:
chai: ^4.3.6
ffjavascript: ^0.2.60
fnv-plus: ^1.3.1
r1csfile: ^0.0.47
snarkjs: ^0.7.0
tmp-promise: ^3.0.3
util: ^0.12.5
checksum: ee9f9a4ac69ee2acb2ce46c903a817ac687b621a90a7f5b8a8bd1d8f3e42076ed694f5e3e46e0d9775febf350c73837007284a33117ac66a7b233b76cbd21ea6
languageName: node
linkType: hard

"circom_tester@npm:^0.0.19":
version: 0.0.19
resolution: "circom_tester@npm:0.0.19"
Expand Down Expand Up @@ -6519,6 +6542,14 @@ __metadata:
languageName: node
linkType: hard

"circuits@workspace:packages/circuits":
version: 0.0.0-use.local
resolution: "circuits@workspace:packages/circuits"
dependencies:
circom_tester: 0.0.20
languageName: unknown
linkType: soft

"cjs-module-lexer@npm:^0.6.0":
version: 0.6.0
resolution: "cjs-module-lexer@npm:0.6.0"
Expand Down Expand Up @@ -9314,6 +9345,17 @@ __metadata:
languageName: node
linkType: hard

"ffjavascript@npm:0.2.62, ffjavascript@npm:^0.2.60":
version: 0.2.62
resolution: "ffjavascript@npm:0.2.62"
dependencies:
wasmbuilder: 0.0.16
wasmcurves: 0.2.2
web-worker: ^1.2.0
checksum: c292e88fd160e16aadfac27870fc5532d3ed1f2306f51d77ef37d5077fca0146b475ffa44a52b80a489ce8834f9c1f4853265499dcb5d0b8f0ec551341c318da
languageName: node
linkType: hard

"ffjavascript@npm:^0.2.30, ffjavascript@npm:^0.2.35, ffjavascript@npm:^0.2.38":
version: 0.2.55
resolution: "ffjavascript@npm:0.2.55"
Expand Down Expand Up @@ -16032,6 +16074,18 @@ __metadata:
languageName: node
linkType: hard

"r1csfile@npm:0.0.47, r1csfile@npm:^0.0.47":
version: 0.0.47
resolution: "r1csfile@npm:0.0.47"
dependencies:
"@iden3/bigarray": 0.0.2
"@iden3/binfileutils": 0.0.11
fastfile: 0.0.20
ffjavascript: 0.2.60
checksum: edeb325b83851a71cbca2e5de56eb622ee5347ecae921b526a5fc484c4825b6b30c73b6fde40e9bc5112b9d21e046af885bf212ed9cee2efbc6de93b8454ec06
languageName: node
linkType: hard

"randombytes@npm:^2.0.0, randombytes@npm:^2.0.1, randombytes@npm:^2.0.5, randombytes@npm:^2.1.0":
version: 2.1.0
resolution: "randombytes@npm:2.1.0"
Expand Down Expand Up @@ -17422,6 +17476,26 @@ __metadata:
languageName: node
linkType: hard

"snarkjs@npm:^0.7.0":
version: 0.7.2
resolution: "snarkjs@npm:0.7.2"
dependencies:
"@iden3/binfileutils": 0.0.11
bfj: ^7.0.2
blake2b-wasm: ^2.4.0
circom_runtime: 0.1.24
ejs: ^3.1.6
fastfile: 0.0.20
ffjavascript: 0.2.62
js-sha3: ^0.8.0
logplease: ^1.2.15
r1csfile: 0.0.47
bin:
snarkjs: build/cli.cjs
checksum: c784e2171278403b2356ddc42fac47093e7cf4c48c0ef46ac3c269c308795d2da63a00dd6b92521b166f3d0349d0b8301454f5a9633b5db447755b4568c4b5e7
languageName: node
linkType: hard

"socks-proxy-agent@npm:^7.0.0":
version: 7.0.0
resolution: "socks-proxy-agent@npm:7.0.0"
Expand Down Expand Up @@ -19071,7 +19145,7 @@ __metadata:
languageName: node
linkType: hard

"util@npm:^0.12.4":
"util@npm:^0.12.4, util@npm:^0.12.5":
version: 0.12.5
resolution: "util@npm:0.12.5"
dependencies:
Expand Down
Loading