Skip to content

privacy-scaling-explorations/zk-kit.circom

Repository files navigation

ZK-Kit logo Circom

Github license Main GitHub Workflow Code style prettier Commitizen friendly

ZK-Kit is a set of libraries (algorithms or utility functions) that can be reused in different projects and zero-knowledge protocols, making it easier for developers to access user-friendly, tested, and documented code for common tasks. ZK-Kit provides different repositories for each language - this one contains Circom templates only.

Important

Installation of Circom required for circuit tests.

๐Ÿ—‚๏ธ Repositories

๐Ÿ“ฆ Packages

Package Version Downloads Audited
@zk-kit/binary-merkle-root.circom NPM version Downloads โœ”๏ธ
@zk-kit/ecdh.circom NPM version Downloads โŒ
@zk-kit/poseidon-cipher.circom NPM version Downloads โŒ
@zk-kit/poseidon-proof.circom NPM version Downloads โŒ
@zk-kit/utils.circom NPM version Downloads โŒ

๐Ÿ‘ฅ Ways to contribute

  • ๐Ÿ”ง Work on open issues
  • ๐Ÿ“ฆ Suggest new circuits
  • ๐Ÿ› Create a report if you find any bugs in the code

๐Ÿ›  Install

Clone this repository:

git clone https://github.com/privacy-scaling-explorations/zk-kit.circom.git

and install the dependencies:

cd zk-kit.circom && yarn

๐Ÿ“œ Usage

Code quality and formatting

Install and run Circomspect to analyze the code and catch bugs:

yarn lint

Warning

You need to install Circomspect with cargo install circomspect to run this command.

Run Prettier to check formatting rules:

yarn format

or to automatically format the code:

yarn format:write

Conventional commits

ZK-Kit uses conventional commits. A command line utility to commit using the correct syntax can be used by running:

git commit

Testing

Test the code with:

yarn test

Compile

Compile all the circuits with:

yarn compile

Releases

  1. Bump a new version of the package with:
yarn version:bump <package-name> <version>
# e.g. yarn version:bump utils 2.0.0

This step creates a commit and a git tag.

  1. Push the changes to main:
git push origin main
  1. Push the new git tag:
git push origin <package-name>-<version>
# e.g. git push origin utils-v2.0.0

After pushing the new git tag, a workflow will be triggered and will publish the package on npm and release a new version on Github with its changelogs automatically.