ColdkeySwapReannouncementDelay
Storage Plain v385 → currentThe delay after the initial delay has passed before a new announcement can be made.
Explore chainFrom Chain Metadata
The delay after the initial delay has passed before a new announcement can be made.
Purpose & Usage
Purpose
Stores chain state data.
Common Query Patterns
- Query by key
- Iterate all entries
Stored Value
value (u32)
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 ColdkeySwapReannouncementDelay storage (no keys - plain value)
const result = await api.query.SubtensorModule.ColdkeySwapReannouncementDelay.getValue();
console.log("ColdkeySwapReannouncementDelay:", result);Runtime Info
View Source- Pallet
- SubtensorModule
- Storage Kind
- Plain
- First Version
- v385
- Current Version
- v411