https://github.com/ivanceras/mycelium
https://github.com/ivanceras/mycelium
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ivanceras/mycelium
- Owner: ivanceras
- Created: 2022-06-29T21:41:23.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-08-24T14:58:06.000Z (over 3 years ago)
- Last Synced: 2025-06-13T15:18:09.552Z (7 months ago)
- Language: Rust
- Size: 380 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mycelium
An RPC client for substrate base chain.
This project is based from https://github.com/scs/substrate-api-client
Changes as follows:
- [X] Use of async instead of threads
- [X] Compilable to Web assembly
- [X] Minimize the use of macro in composing extrinsics
- [X] Use of RPC via http
## Usage
1. Checkout and run the [substrate-node-template](https://github.com/substrate-developer-hub/substrate-node-template)
```shell
git clone --depth=1 https://github.com/substrate-developer-hub/substrate-node-template
cd substrate-node-template
cargo run --release -- --dev
```
2. Run the examples
```
cargo run --example do_something
```