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
- Host: GitHub
- URL: https://github.com/paritytech/subxt-explorer
- Owner: paritytech
- License: other
- Created: 2023-09-25T10:30:27.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-04-19T19:49:47.000Z (about 2 years ago)
- Last Synced: 2024-04-19T20:52:24.761Z (about 2 years ago)
- Language: Rust
- Size: 29.8 MB
- Stars: 11
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
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
```