TotalAlphaIssuance
Storage Map v411 → current NewTotal alpha issued per subnet through the AlphaAssets pallet . MAP (netuid ) → AlphaBalance.
Explore chainQueried by: analyticssubnet ownersdevelopers
The Big Picture
Per-subnet alpha supply tracking. Increments on mint and is the basis for subnet-level alpha accounting.
Use Cases
- Show subnet alpha supply
- Compare alpha issuance across subnets
- Audit the alpha money supply
From Chain Metadata
Total alpha issuance tracked by the pallet.
Purpose & Usage
Purpose
Tracks cumulative alpha supply on each subnet.
Common Query Patterns
- Query TotalAlphaIssuance[netuid]
- Iterate to compare across subnets
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 TotalAlphaIssuance storage
const key1 = 0;
const result = await api.query.AlphaAssets.TotalAlphaIssuance.getValue(key1);
console.log("TotalAlphaIssuance:", result);Runtime Info
- Pallet
- AlphaAssets
- Storage Kind
- Map
- First Version
- v411
- Current Version
- v411