NetworkRegistrationStartBlock
Storage Plain v320 → currentBlock when network registration opens.
Explore chainQueried 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
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 NetworkRegistrationStartBlock storage (no keys - plain value)
const result = await api.query
[stringCamelCase("SubtensorModule")]
[stringCamelCase("NetworkRegistrationStartBlock")]();
console.log("NetworkRegistrationStartBlock:", result.toHuman());Runtime Info
View Source- Pallet
- SubtensorModule
- Storage Kind
- Plain
- First Version
- v320
- Current Version
- v393