๐ฅ Contributing ย ย |ย ย ๐ค Code of conduct ย ย |ย ย ๐ Issues ย ย |ย ย ๐ฃ๏ธ Chat & Support
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.
- Javascript: https://github.com/privacy-scaling-explorations/zk-kit
- Solidity: https://github.com/privacy-scaling-explorations/zk-kit.solidity
- Circom: https://github.com/privacy-scaling-explorations/zk-kit.circom
- Noir: https://github.com/privacy-scaling-explorations/zk-kit.noir
Package | Version | Downloads | Audited |
---|---|---|---|
@zk-kit/binary-merkle-root.circom | โ๏ธ | ||
@zk-kit/ecdh.circom | โ | ||
@zk-kit/poseidon-cipher.circom | โ | ||
@zk-kit/poseidon-proof.circom | โ | ||
@zk-kit/utils.circom | โ |
- ๐ง Work on open issues
- ๐ฆ Suggest new circuits
- ๐ Create a report if you find any bugs in the code
Clone this repository:
git clone https://github.com/privacy-scaling-explorations/zk-kit.circom.git
and install the dependencies:
cd zk-kit.circom && yarn
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
ZK-Kit uses conventional commits. A command line utility to commit using the correct syntax can be used by running:
git commit
Test the code with:
yarn test
Compile all the circuits with:
yarn compile
- 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.
- Push the changes to main:
git push origin main
- 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.