Setup & Build the ZKWASM binary
To build and run these projects requires the Rust compiler. Install rustup with:
curl --proto '=https' --tlsv1.3 https://sh.rustup.rs -sSf | shVerify the installation with:
rustc --versionClone the zkWasm repo and move into the directory:
git clone --recurse-submodules https://github.com/DelphinusLab/zkWasm.gitBuild using cargo (CPU version):
cargo build --releaseBuild GPU version (The recommended way of running zkWASM prover):
cargo build --release --features perfAlso if you do not have a powerful gpu (eg. nvidia-4090), you can compromize the performance by
cargo build --release --features cudaLast updated