boneyard93501 52483833c0
Evm integration example (#323)
* init repo

* cfg update

* add aqua

* update nottion

* init readme
2022-06-15 12:21:24 -05:00

17 lines
379 B
Bash
Executable File

#!/usr/bin/env bash -o errexit -o nounset -o pipefail
mkdir -p artifacts
rm -f artifacts/*.wasm
cd curl-adapter
cargo update --aggressive
marine build --release
cp target/wasm32-wasi/release/curl_adapter.wasm ../artifacts/
cd ../multi-provider-query
cargo update --aggressive
marine build --release
cp target/wasm32-wasi/release/multi_provider_query.wasm ../artifacts/
cd ..