DissolveNetworkScheduleDuration

Storage Plain v195 → current

Duration before scheduled network dissolution executes.

Explore chain
Queried by: subnet ownersdevelopersanalytics

The Big Picture

Subnet dissolution is not instant - it is scheduled with a delay. This gives participants time to unstake or prepare. The duration defines how long the delay is.

Use Cases

  • Plan subnet dissolution timing
  • Understand dissolution delay
  • Build subnet lifecycle tools

Purpose & Usage

Purpose

Delay period for subnet dissolution operations.

Common Query Patterns

  • Single value query

Stored Value

value (u32)

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

Runtime Info

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