mirror of
https://github.com/logos-blockchain/lssa-zkvm-testing.git
synced 2026-01-02 13:23:08 +00:00
8 lines
164 B
Bash
Executable File
8 lines
164 B
Bash
Executable File
WASM_PATH=$1
|
|
|
|
pushd $WASM_PATH
|
|
wasm-pack build --release --out-name test.wasm --out-dir pkg
|
|
wasm-opt -Oz -o output.wasm pkg/test.wasm
|
|
|
|
rm -rf pkg output params
|
|
popd |