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

Runtime Info

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