StartCallDelay

Storage Plain v372 → current

Delay before subnet can call start.

Explore chain
Queried by: subnet ownersdevelopers

The Big Picture

New subnets may need to wait before calling certain operations. This delay ensures proper initialization before operations begin.

Use Cases

  • Plan subnet launch timing
  • Understand start delays
  • Build launch tools

From Chain Metadata

ITEM( start_call_delay )

Purpose & Usage

Purpose

Control when new subnets can begin operations.

Common Query Patterns

  • Single value query

Stored Value

Value in RAO (÷10⁹ for TAO)

RAO -> TAO (/ 10^9)

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

Runtime Info

View Source
Pallet
SubtensorModule
Storage Kind
Plain
First Version
v372
Current Version
v393