An open API service indexing awesome lists of open source software.

https://github.com/paritytech/subxt-explorer

Web App for exploring Substrate-based Chains using Subxt
https://github.com/paritytech/subxt-explorer

Last synced: about 1 year ago
JSON representation

Web App for exploring Substrate-based Chains using Subxt

Awesome Lists containing this project

README

          

# Subxt Explorer

Check it out at https://paritytech.github.io/subxt-explorer/.

An SPA for exploring metadata of substrate based blockchains in the Browser.
Uses [Subxt](https://github.com/paritytech/subxt) in WASM to connect to nodes, fetch storage values and generate example code snippets of how to interact with the chain using Subxt.

## Development:

Prerequisites:

- node.js
- rust + cargo (nightly)
- wasm-pack

```sh
# build the wasm module
cd codegen
wasm-pack build --no-default-features --features web
cd ..

# run the frontend
npm install
npm run dev
```