NetworkRegistrationStartBlock

Storage Plain v320 → current

Block when network registration opens.

Explore chain
Queried by: subnet ownersdevelopersanalytics

The Big Picture

New subnet registration may be delayed until a specific block. This tracks when registration opens network-wide.

Use Cases

  • Check when registration opens
  • Plan subnet launches
  • Build registration countdown tools

From Chain Metadata

ITEM( NetworkRegistrationStartBlock )

Purpose & Usage

Purpose

Schedule when new subnet registration becomes available.

Common Query Patterns

  • Single value query

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 NetworkRegistrationStartBlock storage (no keys - plain value)
const result = await api.query.SubtensorModule.NetworkRegistrationStartBlock.getValue();
console.log("NetworkRegistrationStartBlock:", result);

Runtime Info

View Source
Pallet
SubtensorModule
Storage Kind
Plain
First Version
v320
Current Version
v411