mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-28 21:27:25 +00:00
e253a4cb9f
* Start WebSockets server. * Expose non-working subscription. * Dummy subscription for testing. * Proper implementation with event loop. * Finalized pubsub. * Bump clap. * Fix yml. * Disable WS logs. * Remove stale TransactionHash mention * Fix build from nightly API change. * Don't panic on invalid port. * Bind server to random port. * Send only best blocks.
12 lines
326 B
Bash
Executable File
12 lines
326 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# NOTE `cargo install wasm-gc` before running this script.
|
|
|
|
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 ../../..
|