AlphaBurned

Storage Map v411 → current New

Cumulative alpha burned per subnet through the AlphaAssets pallet . MAP (netuid ) → AlphaBalance.

Explore chain
Queried 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

#NameTypeDescription
1
netuid netuid
raw: key1
u16 key1 (u16)

Stored Value

Value in RAO (÷10⁹ for TAO)

RAO -> TAO (/ 10^9)

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