RAORecycledForRegistration
Storage Map v118 → currentRAO recycled from registration burns per subnet .
Explore chainQueried by: analyticsdevelopers
The Big Picture
When neurons register by burning, the RAO is tracked here. Shows cumulative burn amounts per subnet for economic research.
Use Cases
- Track registration burn history
- Research subnet economics
- Build burn analytics
Purpose & Usage
Purpose
Track burned registration fees per subnet.
Common Query Patterns
- Query by netuid
Query Keys
| # | Name | Type | Description |
|---|---|---|---|
| 1 | key1 | u16 | key1 (u16) |
Stored Value
Relationships
Modified By
Related Events
Code Examples
import { ApiPromise, WsProvider } from "@polkadot/api";
import { stringCamelCase } from "@polkadot/util";
const provider = new WsProvider("wss://entrypoint-finney.opentensor.ai:443");
const api = await ApiPromise.create({ provider });
// Query RAORecycledForRegistration storage
const key1 = 0;
const result = await api.query
[stringCamelCase("SubtensorModule")]
[stringCamelCase("RAORecycledForRegistration")](
key1
);
console.log("RAORecycledForRegistration:", result.toHuman());Runtime Info
View Source- Pallet
- SubtensorModule
- Storage Kind
- Map
- First Version
- v118
- Current Version
- v393