Skip to content

Commit f9abc44

Browse files
committed
feat: Add verify subcommand
1 parent ed35321 commit f9abc44

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,6 @@ WGET_ARGS := -q --show-progress
1010
PERSONAL_NOTE := ""
1111

1212
verify:
13-
@echo "Downloading R1CS files..."
14-
wget -O proof_of_burn.r1cs.gz $(WGET_ARGS) -c https://github.com/worm-privacy/trusted-setup/releases/download/circuit_data/proof_of_burn.r1cs.gz
15-
wget -O spend.r1cs.gz $(WGET_ARGS) -c https://github.com/worm-privacy/trusted-setup/releases/download/circuit_data/spend.r1cs.gz
16-
gunzip proof_of_burn.r1cs.gz
17-
gunzip spend.r1cs.gz
18-
1913
@echo "Downloading parameter files..."
2014
@mkdir -p params_old
2115
cd params_old && wget -O params.tar.gz.aa $(WGET_ARGS) -c $(PARAMS).aa
@@ -28,6 +22,12 @@ verify:
2822
@cd params_old && tar xzf params.tar.gz
2923
@if [ "$$REMOVE_PARAMS" != "" ]; then rm -rf params_old/*.tar.gz params_old/*.tar.gz.*; fi
3024

25+
@echo "Downloading R1CS files..."
26+
wget -O proof_of_burn.r1cs.gz $(WGET_ARGS) -c https://github.com/worm-privacy/trusted-setup/releases/download/circuit_data/proof_of_burn.r1cs.gz
27+
wget -O spend.r1cs.gz $(WGET_ARGS) -c https://github.com/worm-privacy/trusted-setup/releases/download/circuit_data/spend.r1cs.gz
28+
gunzip proof_of_burn.r1cs.gz
29+
gunzip spend.r1cs.gz
30+
3131
@echo "Downloading Powers-of-Tau file..."
3232
wget -O powersOfTau28_hez_final_24.ptau $(WGET_ARGS) -c https://storage.googleapis.com/zkevm/ptau/powersOfTau28_hez_final_24.ptau
3333

0 commit comments

Comments
 (0)