This storage item was removed in v265
This storage item is no longer available in the current runtime. Existed from v233 to v265. Shown here for historical reference.
TotalStakeAtDynamic
Storage Removed Map v233 → v265 (removed)Purpose & Usage
Purpose
Stores chain state data.
Common Query Patterns
- Single value query for aggregate data
Query Keys
| # | Name | Type | Description |
|---|---|---|---|
| 1 | key1 | u16 | key1 (u16) |
Stored Value
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 TotalStakeAtDynamic storage
const key1 = 0;
const result = await api.query
[stringCamelCase("SubtensorModule")]
[stringCamelCase("TotalStakeAtDynamic")](
key1
);
console.log("TotalStakeAtDynamic:", result.toHuman());Runtime Info
View Source- Pallet
- SubtensorModule
- Storage Kind
- Map
- First Version
- v233
- Removed In
- v265