mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 05:57:59 +00:00
5a56fbcea3
* Add primitives for sandboxing. * Add sandbox module. * Implement the runtime part of the sandbox. * Rebuild binaries. * Implement smart-contract execution. * Add more documentation.
13 lines
405 B
Bash
Executable File
13 lines
405 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# NOTE `cargo install wasm-gc` before running this script.
|
|
# NOTE `cargo install --git https://github.com/pepyakin/wasm-export-table.git`
|
|
|
|
set -e
|
|
export CARGO_INCREMENTAL=0
|
|
|
|
cd demo/runtime/wasm && ./build.sh && cd ../../..
|
|
cd substrate/executor/wasm && ./build.sh && cd ../../..
|
|
cd substrate/test-runtime/wasm && ./build.sh && cd ../../..
|
|
cd polkadot/runtime/wasm && ./build.sh && cd ../../..
|