mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 21:58:00 +00:00
8b23b2b83c
* parachain rpc lists * guide almost done * add the 3rd config * subscribe to block with configs * delete table file * spaces instead of tabs * remove original ajuna example * zombienet setup * nft minting example * include port, use different names * link the example from the book * format book * add config creation to book, simplify example structure * fix the nft creation script * fix doc ref * fixing links to foreign crates * fix table formatting * include nits * move more docs to book, and simplify parachain-example * another pass over docs and link to exampels from guide * nit: adjust comment to numbers * teeny README fix for parachain-example * fix command in readme * add CI for examples and fix parachain-example bug I left in * add target arch * cargo fmt * make CI not fail * remove index from docs --------- Co-authored-by: James Wilson <james@jsdw.me>
24 lines
564 B
Markdown
24 lines
564 B
Markdown
# wasm-example
|
|
|
|
This is a small WASM app using the Yew UI framework to showcase how to use Subxt's features in a WASM environment.
|
|
|
|
To run the app locally we first install Trunk, a WASM bundler:
|
|
|
|
```
|
|
cargo install --locked trunk
|
|
```
|
|
|
|
You need to have a local polkadot/substrate node with it's JSON-RPC HTTP server running at 127.0.0.1:9933 in order for the examples to be working.
|
|
If you have a `polkadot` binary already, running this should be sufficient:
|
|
|
|
```
|
|
polkadot --dev
|
|
```
|
|
|
|
Then, in another terminal, run the app locally with:
|
|
|
|
```
|
|
trunk serve --open
|
|
```
|
|
|