This storage item was removed in v277
This storage item is no longer available in the current runtime. Existed from v273 to v277. Shown here for historical reference.
Purpose & Usage
Purpose
Stores chain state data.
Common Query Patterns
- Query by key
- Iterate all entries
Query Keys
Stored Value
StakeJob
value (StakeJob)
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 StakeJobs storage
const key1 = 0;
const key2 = 0n;
const result = await api.query.SubtensorModule.StakeJobs.getValue(key1, key2);
console.log("StakeJobs:", result);Runtime Info
View Source- Pallet
- SubtensorModule
- Storage Kind
- Map
- First Version
- v273
- Removed In
- v277