This storage item was removed in v240

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

MaxTempo

Storage Removed Plain v233 → current

MaxTempo storage from SubtensorModule pallet .

Purpose & Usage

Purpose

Stores chain state data.

Common Query Patterns

  • Query by key
  • Iterate all entries

Stored Value

value (u16)

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

Runtime Info

View Source
Pallet
SubtensorModule
Storage Kind
Plain
First Version
v233
Removed In
v240