1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
A toolbox for zkSNARKs on Ethereum
Find a file
2018-01-15 18:25:54 +01:00
examples Added less-than-flattening example. LT-Flattening is experimental! 2018-01-15 18:25:54 +01:00
lib Removed run_libsnark and shortcut cli operation. Some output cleanup. 2017-10-29 11:42:05 +01:00
src Flattening reworked. 2018-01-15 18:21:39 +01:00
templates Contract renamed 2017-10-30 09:55:54 +01:00
.dockerignore Add Sub to R1CS; Add Dockerfile 2017-02-01 17:24:44 +01:00
.gitignore Add first tests of parser and equality of structs 2017-02-08 22:06:38 +01:00
build.rs Intermediary commit. Serialization added, Deserialization still ToDo. Formatted. 2017-10-09 13:24:31 +02:00
Cargo.lock added export verifier functionality and required template 2017-10-25 10:02:52 +02:00
Cargo.toml added export verifier functionality and required template 2017-10-25 10:02:52 +02:00
Dockerfile Dockerfile fixed. Example fixed. 2017-10-23 16:02:46 +02:00
README.md Add Gitter badge 2017-11-09 09:59:27 +00:00

ZoKrates

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

Zokrates is a toolbox for zkSNARKs on Ethereum.

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

Using ZoKrates

ZoKrates provides a command line interface. To see an overview of the available subcommands, run

./zokrates

Example

To execute the program, perform the setup for the program, generate a proof

def add(a, b, c):
  return a + b + c

with add(1, 2, 3), call

./zokrates compile -i 'add.code_path'
./zokrates compute-witness -a 1 2 3
./zokrates setup
./zokrates generate-proof
./zokrates export-verifier

Building

Currently needs to be build with nightly Rust.

Example usage:

docker build -t zokrates .
docker run -ti zokrates /bin/bash
cd ZoKrates
./target/release/zokrates compile -i examples/add.code

Without libsnark

Build with the feature nolibsnark

cargo build --features nolibsnark

Environment Variables

Set the libsnark library path in LD_LIBRARY_PATH

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib

Testing

Run normal tests with

cargo test

and run long and expensive tests with

cargo test -- --ignored