This storage item was removed in v326

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

SenateRequiredStakePercentage

Storage Removed Plain v123 → v326 (removed)

SenateRequiredStakePercentage storage from SubtensorModule pallet .

Purpose & Usage

Purpose

Stores chain state data.

Common Query Patterns

  • Query by key
  • Iterate all entries

Stored Value

Value in RAO (÷10⁹ for TAO)

RAO -> TAO (/ 10^9)

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

Runtime Info

View Source
Pallet
SubtensorModule
Storage Kind
Plain
First Version
v123
Removed In
v326