BurnRegistrationsThisInterval

Storage Map v101 → current

Burn registrations in current interval.

Explore chain
Queried by: developersanalytics

The Big Picture

Burn registration requires paying TAO instead of computing POW. BurnRegistrationsThisInterval tracks how many chose this method. Despite the name, the TAO isn't destroyed - it's swapped into the subnet's liquidity pool (SubnetTAO), and the Alpha received is burned.

Why This Matters

How much TAO is being spent on registration? This count × current Burn cost = TAO spent this interval. The portion that's actually burned vs recycled depends on subnet config.

Example Scenario

Query BurnRegistrationsThisInterval(netuid=1) returns 3. Burn cost is 10 TAO. So 30 TAO was spent on registration. That TAO went into the subnet's liquidity pool.

Common Questions

Is burned TAO gone forever?
Despite the name, TAO isn't destroyed. It's swapped into the subnet's liquidity pool (SubnetTAO), and the Alpha received is burned. The TAO stays in circulation.

Use Cases

  • Analyze which registration method is more popular
  • Research registration economics
  • Track TAO burned for registration
  • Build registration method analytics
  • Monitor network deflation from burns

Purpose & Usage

Purpose

Track burn registration count - shows burn method popularity.

Common Query Patterns

  • Query by netuid
  • Analyze registration method preferences
  • Compare POW vs burn economics

Query Keys

#NameTypeDescription
1
key1
u16 key1 (u16)

Stored Value

value (u16)

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 BurnRegistrationsThisInterval storage
const key1 = 0;

const result = await api.query
  [stringCamelCase("SubtensorModule")]
  [stringCamelCase("BurnRegistrationsThisInterval")](
  key1
);

console.log("BurnRegistrationsThisInterval:", result.toHuman());

Runtime Info

View Source
Pallet
SubtensorModule
Storage Kind
Map
First Version
v101
Current Version
v393