1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
A toolbox for zkSNARKs on Ethereum
Find a file
2023-01-24 18:43:14 +01:00
.circleci install headless chrome 2023-01-24 18:43:14 +01:00
.githooks precommit - exclude deleted files on git diff 2020-05-28 12:04:04 +02:00
.github try with prettier_options 2022-08-29 13:00:28 +02:00
changelogs use buffer first, add changelog 2023-01-23 13:52:42 +01:00
scripts Merge pull request #1196 from Zokrates/remove-cpp 2022-08-05 16:20:12 +02:00
zokrates_abi bump nightly, fix clippy errors 2022-07-06 15:51:45 +02:00
zokrates_analysis Fix typos 2023-01-11 03:14:28 +02:00
zokrates_ark wip 2022-10-05 15:27:45 +02:00
zokrates_ast merge assembly-tweaks, fix conflicts, add tests 2022-12-02 21:28:07 +01:00
zokrates_bellman optimize js lib size, inline wasm 2023-01-23 03:28:06 +01:00
zokrates_book update book 2023-01-24 18:26:16 +01:00
zokrates_circom make tests pass, introduce ir blocks, try optimising directive outputs 2022-11-30 22:41:28 +01:00
zokrates_cli Fix typos 2023-01-11 03:14:28 +02:00
zokrates_codegen Fix typos 2023-01-11 03:14:28 +02:00
zokrates_common wip 2022-10-11 09:24:28 -05:00
zokrates_core Fix typos 2023-01-11 03:14:28 +02:00
zokrates_core_test Fix typos 2023-01-11 03:14:28 +02:00
zokrates_embed bump versions, generate changelog, generate js lock 2022-07-06 16:31:24 +02:00
zokrates_field implement better check, add test 2022-09-19 18:37:25 +02:00
zokrates_fs_resolver bump versions, update changelog 2021-08-16 19:02:42 +02:00
zokrates_interpreter Fix typos 2023-01-11 03:14:28 +02:00
zokrates_js install headless chrome 2023-01-24 18:43:14 +01:00
zokrates_parser improvements 2 2022-11-28 20:25:05 +01:00
zokrates_pest_ast fix formatting 2022-11-30 14:57:46 +01:00
zokrates_proof_systems minor refactor 2022-10-17 13:39:16 +02:00
zokrates_solidity_test bump versions, generate changelog, generate js lock 2022-07-06 16:31:24 +02:00
zokrates_stdlib update changelog, bump versions 2022-10-10 18:00:35 +02:00
zokrates_test add getrandom dependency 2023-01-23 03:29:49 +01:00
zokrates_test_derive clippy 2021-12-10 15:08:15 +01:00
.codecov.yml disable codecov comments (#197) 2018-12-07 17:47:07 +01:00
.dockerignore split into cli and lib 2018-06-30 00:32:15 -04:00
.gitignore fix conflicts 2022-07-04 19:50:12 +02:00
build.sh drop support for libsnark 2022-05-19 12:38:42 +02:00
build_release.sh drop support for libsnark 2022-05-19 12:38:42 +02:00
Cargo.lock add getrandom dependency 2023-01-23 03:29:49 +01:00
Cargo.toml wip 2022-10-11 09:24:28 -05:00
CHANGELOG.md bump zokrates_core_test 2022-10-11 01:53:33 +02:00
clippy.toml make clippy happy 2021-03-05 16:53:19 +01:00
dev.Dockerfile drop support for libsnark 2022-05-19 12:38:42 +02:00
Dockerfile remove leftover cpp support 2022-08-01 19:44:58 +01:00
Dockerfile.env remove leftover cpp support 2022-08-01 19:44:58 +01:00
integration_test.sh drop support for libsnark 2022-05-19 12:38:42 +02:00
LICENSE Create LICENSE - closes #14 2018-04-12 09:59:36 +02:00
README.md prettier 2022-09-02 11:50:52 +02:00
rust-toolchain.toml bump nightly, fix clippy errors 2022-07-06 15:51:45 +02:00
test.sh drop support for libsnark 2022-05-19 12:38:42 +02:00
zokrates_logo.svg update logo 2021-05-18 11:44:21 +02:00

ZoKrates

Join the chat at https://gitter.im/ZoKrates/Lobby CircleCI develop

ZoKrates is a toolbox for zkSNARKs on Ethereum.

This is a proof-of-concept implementation. It has not been tested for production.

Getting Started

Load the ZoKrates Plugin on Remix to write your first SNARK program!

Alternatively, you can install the ZoKrates CLI:

curl -LSfs get.zokrat.es | sh

Have a look at the documentation for more information about using ZoKrates. Get started, then try a tutorial!

Getting Help

If you run into problems, ZoKrates has a Gitter room.

License

ZoKrates is released under the GNU Lesser General Public License v3.

Contributing

We happily welcome contributions. You can either pick an existing issue or reach out on Gitter.

Unless you explicitly state otherwise, any contribution you intentionally submit for inclusion in the work shall be licensed as above, without any additional terms or conditions.

Git Hooks

You can enable zokrates git hooks locally by running:

git config core.hooksPath .githooks

{js,json,ts} formatting

We enforce strict formatting of .{js,json,ts} files in CI. This check is not included in the git hooks. If you modify such a file, you can ensure its formatting is correct by running:

npm i -g prettier
prettier --write "./**/*.{js,ts,json}" --ignore-path .gitignore