Delphinus Lab Book

Documentation for the zkWasm.

View on GitHub

Host Environment & Building

To build and run these projects require the Rust compiler. Install with:

curl --proto '=https' --tlsv1.3 https://sh.rustup.rs -sSf | sh

Verify the installation with:

rustc --version

Clone the zkWasm repo and move into the directory:

git clone https://github.com/DelphinusLab/zkWasm.git
cd zkWasm

Remove the current wasmi directory:

rm -rf ./wasmi

clone the web assembily interpreter wasmi repo from Delphinus Labs and build:

git clone https://github.com/DelphinusLab/wasmi.git
cd wasmi
cargo build --release

Build zkWasm:

cd ..
cargo build --release

back