Files
self/circuits/scripts/download_ptau.sh
2024-06-18 16:44:13 -07:00

12 lines
325 B
Bash

#!/bin/bash
mkdir -p build
cd build
if [ ! -f powersOfTau28_hez_final_20.ptau ]; then
echo "Download power of tau...."
wget https://hermez.s3-eu-west-1.amazonaws.com/powersOfTau28_hez_final_20.ptau
echo "Finished download!"
else
echo "Powers of tau file already downloaded... Skip download action!"
fi
cd ..