parser-attestor
is a project focused on implementing parsers and extractors/selective-disclosure for various data formats inside of zero-knowledge circuits.
circuits/
: Current implementation of circuitshttp
: HTTP parser and extractorjson
: JSON parser and extractorjson
has its own documentation here
utils
: Utility circuitstest
: Circuit tests
src/
: Rustpabuild
binarypabuild
has its own documentation here
examples/
: Reference examples for JSON and HTTP parsers
Documentation, in general, can be found in the docs
directory.
We will add to this over time to make working with parser-attestor
easier.
To use this repo, you will need to install the following dependencies. These instructions should work on Linux/GNU and MacOS, but aren't guaranteed to work on Windows.
To install Rust, you need to run:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
exec $SHELL
Check this is installed by running:
rustc --version && cargo --version
to see the path to your Rust compiler and Cargo package manager.
Succinctly, cd
to a directory of your choosing and run:
git clone https://github.com/iden3/circom.git
cd circom
cargo build --release
cargo install --path circom
in order to install circom
globally.
First, install nvm
by running:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
exec $SHELL
Now with nvm
installed, run:
nvm install --lts
nvm use --lts
node --version && npm --version
From the root of the repository, you can now run:
npm install
which will install all the necessary packages for working with Circom.
This includes executables circomkit
, snarkjs
, and mocha
which are accessible with Node: npx
.
This repository uses circomkit
to manage Circom circuits.
To see what you can do with circomkit
, we suggest running:
npx circomkit help
circomkit
can essentially do everything you would want to do with these Circuits, though we can't guarantee all commands work properly.
Example:
For example, to compile the json-parser
, you can run the following from the repository root:
npx circomkit compile json-parser
which implicitly checks the circuits.json
for an object that points to the circuit's code itself.
If you are having trouble with circomkit
, consider:
Likewise, snarkjs
is used to handle proofs and verification under the hood.
There is documentation on Circom's usage to work with this.
We suggest starting at that link and carrying through to "Proving circuits with ZK".
mocha
will also be installed from before.
Running
npx mocha
will run every circuit test.
To filter tests, you can use the -g
flag (very helpful!).
From the root of this repository, run:
cargo install --path .
to install the pabuild
binary.
You can see a help menu with the subcommands by:
pabuild --help
This is our local Rust command line application. Please see the documentation for how to use this alongside the other tools.
Licensed under the Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
We welcome contributions to our open-source projects. If you want to contribute or follow along with contributor discussions, join our main Telegram channel to chat about Pluto's development.
Our contributor guidelines can be found in CONTRIBUTING.md. A good starting point is issues labelled 'bounty' in our repositories.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.