Skip to content

Circuits URL Update #369

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ COINMARKETCAP_KEY=<<your coinmarketcap key>> REPORT_GAS=true npx hardhat test

## Circuits needed for some maintenance and upgrade scripts
For some of the scripts you need to download the zk circuits for generation and verification of the proofs.
Download the zk circuits into `./scripts/upgrade/verifiers/helpers/circuits` by running `./scripts/upgrade/verifiers/helpers/dl_circuits.sh`. This will download the latest files from `https://iden3-circuits-bucket.s3.eu-west-1.amazonaws.com/latest.zip`
Download the zk circuits into `./scripts/upgrade/verifiers/helpers/circuits` by running `./scripts/upgrade/verifiers/helpers/dl_circuits.sh`. This will download the latest files from `https://circuits.privado.id/latest.zip`

```bash
cd ./scripts/upgrade/verifiers/helpers
Expand Down
4 changes: 2 additions & 2 deletions scripts/upgrade/verifiers/helpers/dl_circuits.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/bash

# Download the latest.zip file
curl -LO https://iden3-circuits-bucket.s3.eu-west-1.amazonaws.com/latest.zip
curl -LO https://circuits.privado.id/latest.zip

# Unzip the file into ./circuits
unzip -d ./circuits latest.zip

# remove the zip file
rm latest.zip
rm latest.zip