You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
356 B

  1. #!/bin/bash
  2. # if artifacts does not exist, make it
  3. if [ ! -d "./artifacts" ]; then
  4. mkdir -p ./artifacts
  5. fi
  6. # install dependencies
  7. yarn
  8. # compile circuit
  9. circom grapevine.circom \
  10. --r1cs \
  11. --wasm \
  12. --prime bn128 \
  13. --output ./artifacts
  14. # cleanup
  15. mv ./artifacts/grapevine_js/grapevine.wasm ./artifacts
  16. rm -rf ./artifacts/grapevine_js