You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+132-6Lines changed: 132 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# bittensor-rs
2
2
3
-
Rust SDK for the Bittensor network — wallet management, chain interaction, neuron serving, and subnet monitoring.
3
+
Rust SDK for the Bittensor decentralized AI network. Wallet management, chain interaction, neuron serving, and subnet monitoring, built on subxt 0.50 with typed storage queries and extrinsics.
4
4
5
5
## Architecture
6
6
@@ -69,9 +69,50 @@ Rust SDK for the Bittensor network — wallet management, chain interaction, neu
69
69
|**bittensor-wasm**| WASM bindings for browser usage |
You can also connect directly with `SubtensorClient::from_url`:
200
+
201
+
```rust,no_run
202
+
let client = SubtensorClient::from_url("wss://entrypoint-finney.opentensor.ai:443").await?;
203
+
```
204
+
205
+
## Documentation
206
+
207
+
Full documentation is available in the `docs/` directory:
208
+
209
+
-[Documentation Index](docs/index.md)
210
+
-[Getting Started](docs/getting-started.md)
211
+
-[Architecture](docs/architecture.md)
212
+
213
+
## Metadata
214
+
215
+
Chain metadata is stored at `metadata/finney.scale` and auto-loaded at compile time. When the Finney runtime upgrades, regenerate the metadata and API bindings:
0 commit comments