This storage item was removed in v377

This storage item is no longer available in the current runtime. Existed from v273 to v377. Shown here for historical reference.

ColdkeySwapRescheduleDuration

Storage Removed Plain v273 → v377 (removed)

Duration for rescheduling coldkey swaps.

Queried by: stakersvalidatorswallets

The Big Picture

Coldkey swaps have a schedule. If circumstances change, swaps can be rescheduled within this duration. After the duration, the original schedule executes.

Use Cases

  • Plan coldkey swap operations
  • Understand swap timing constraints
  • Build swap management tools

Purpose & Usage

Purpose

Time window for when coldkey swaps can be rescheduled.

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

Runtime Info

View Source
Pallet
SubtensorModule
Storage Kind
Plain
First Version
v273
Removed In
v377