AlphaBurned
Storage Map v411 → current NewCumulative alpha burned per subnet through the AlphaAssets pallet . MAP (netuid ) → AlphaBalance.
Explore chainQueried by: analyticssubnet owners
The Big Picture
Pair with TotalAlphaIssuance for the burn/issuance ratio. Lets you see how aggressively a subnet has been net-burning alpha over its lifetime.
Use Cases
- Track deflationary pressure on a subnet
- Audit total burn per subnet
From Chain Metadata
Total alpha burned per subnet through this pallet.
Purpose & Usage
Purpose
Tracks alpha permanently removed from supply.
Common Query Patterns
- Query AlphaBurned[netuid]
Query Keys
| # | Name | Type | Description |
|---|---|---|---|
| 1 | netuid netuid raw: key1 | u16 | key1 (u16) |
Stored Value
Code Examples
import { createClient, Binary } from "polkadot-api";
import { getWsProvider } from "polkadot-api/ws";
import { sub } from "@polkadot-api/descriptors"; // generated by: npx papi add sub -w wss://entrypoint-finney.opentensor.ai:443
const client = createClient(getWsProvider("wss://entrypoint-finney.opentensor.ai:443"));
const api = client.getTypedApi(sub);
// Query AlphaBurned storage
const key1 = 0;
const result = await api.query.AlphaAssets.AlphaBurned.getValue(key1);
console.log("AlphaBurned:", result);Runtime Info
- Pallet
- AlphaAssets
- Storage Kind
- Map
- First Version
- v411
- Current Version
- v411