SubnetAlphaOutEmission

Storage Map v233 → v411

Alpha tokens emitted out of subnet pools per block .

Explore chain
Queried by: analyticsdevelopers

The Big Picture

Alpha tokens flow out of subnets to participants. This tracks the rate of alpha leaving each subnet pool via emissions.

Use Cases

  • Track alpha distribution rates
  • Research subnet economics
  • Build emission dashboards

From Chain Metadata

MAP ( netuid ) --> alpha_out_emission | Returns the amount of alpha out emission into the network per block.

Purpose & Usage

Purpose

Track alpha outflow from emissions.

Common Query Patterns

  • Query by netuid

Query Keys

#NameTypeDescription
1
netuid
u16 netuid (u16, hashed key component)

Stored Value

alpha_out_emission (u64)

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 SubnetAlphaOutEmission storage
const netuid = 1;

const result = await api.query.SubtensorModule.SubnetAlphaOutEmission.getValue(netuid);
console.log("SubnetAlphaOutEmission:", result);

Version History

v233 block 4,920,350 Added
v278–v289 · runtime versions skipped on chain (never deployed)
v290 block 5,947,548 Internal re-bind
v353–v360 · runtime versions skipped on chain (never deployed)
v361 block 7,063,679 Internal re-bind Current

Runtime Info

View Source
Pallet
SubtensorModule
Storage Kind
Map
First Version
v233
Current Version
v411