This storage item was removed in v127
This storage item is no longer available in the current runtime. Existed from v101 to v127. Shown here for historical reference.
SynergyScalingLawPower
Storage Removed Map v101 → v411SynergyScalingLawPower storage from SubtensorModule pallet .
Purpose & Usage
Purpose
Stores chain state data.
Common Query Patterns
- Query by key
- Iterate all entries
Query Keys
| # | Name | Type | Description |
|---|---|---|---|
| 1 | key1 | u16 | key1 (u16) |
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 SynergyScalingLawPower storage
const key1 = 0;
const result = await api.query.SubtensorModule.SynergyScalingLawPower.getValue(key1);
console.log("SynergyScalingLawPower:", result);Version History
v101 block 1 Added
v123 block 720,235 Internal re-bind
v127 Removed
Runtime Info
View Source- Pallet
- SubtensorModule
- Storage Kind
- Map
- First Version
- v101
- Removed In
- v127