Browse Source

init

main
arnaucube 5 months ago
commit
ede9e16a2a
2 changed files with 26 additions and 0 deletions
  1. +15
    -0
      .gitignore
  2. +11
    -0
      README.md

+ 15
- 0
.gitignore

@ -0,0 +1,15 @@
/target
Cargo.lock
# Circom generated files
circuit/keccak-chain_js
node_modules
package-lock.json
*.r1cs
*.sym
# generated contracts at test time
generated
*.sol
*.calldata
*.inputs

+ 11
- 0
README.md

@ -0,0 +1,11 @@
# keccak-chain-sonobe
Repo to test a more complex [Circom](https://github.com/iden3/circom) circuit with [Sonobe](https://github.com/privacy-scaling-explorations/sonobe).
Proves a chain of keccak256 hashes, using the [vocdoni/keccak256-circom](https://github.com/vocdoni/keccak256-circom) circuit.
> WIP
assuming rust and circom have been installed:
- `./compile-circuit.sh`
- `cargo test --release -- --nocapture`

Loading…
Cancel
Save