├── .gitignore ├── README.md └── example ├── circuit.circom ├── circuit.json ├── input.json ├── proof.json ├── proving_key.json ├── public.json ├── verification_key.json ├── verifier.sol └── witness.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelmota/zksnarks-example/HEAD/README.md -------------------------------------------------------------------------------- /example/circuit.circom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelmota/zksnarks-example/HEAD/example/circuit.circom -------------------------------------------------------------------------------- /example/circuit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelmota/zksnarks-example/HEAD/example/circuit.json -------------------------------------------------------------------------------- /example/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelmota/zksnarks-example/HEAD/example/input.json -------------------------------------------------------------------------------- /example/proof.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelmota/zksnarks-example/HEAD/example/proof.json -------------------------------------------------------------------------------- /example/proving_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelmota/zksnarks-example/HEAD/example/proving_key.json -------------------------------------------------------------------------------- /example/public.json: -------------------------------------------------------------------------------- 1 | [ 2 | "56" 3 | ] -------------------------------------------------------------------------------- /example/verification_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelmota/zksnarks-example/HEAD/example/verification_key.json -------------------------------------------------------------------------------- /example/verifier.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelmota/zksnarks-example/HEAD/example/verifier.sol -------------------------------------------------------------------------------- /example/witness.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miguelmota/zksnarks-example/HEAD/example/witness.json --------------------------------------------------------------------------------