RootClaimableThreshold
Storage Map v334 → v411Minimum stake required to claim root network rewards.
Explore chainQueried by: validatorsstakers
The Big Picture
The root network distributes rewards to top stakers. This threshold determines the minimum stake needed to be eligible for those rewards.
Use Cases
- Check if stake qualifies for root claims
- Plan staking strategy for root participation
Purpose & Usage
Purpose
Sets the threshold for participating in root network claim distribution.
Common Query Patterns
- Single value query
Query Keys
| # | Name | Type | Description |
|---|---|---|---|
| 1 | netuid netuid raw: key1 | u16 | key1 (u16) |
Stored Value
value (FixedI128)
Decoding the value
FixedI128 (Q64.64 signed fixed-point)Signed Q64.64. Same divisor as FixedU128 but bits can be negative.
const fraction = Number(value as bigint) / 2 ** 64; // signed bigintRelationships
Modified By
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 RootClaimableThreshold storage
const key1 = 0;
const result = await api.query.SubtensorModule.RootClaimableThreshold.getValue(key1);
console.log("RootClaimableThreshold:", result);Version History
v334 block 6,811,690 Added
v353–v360 · runtime versions skipped on chain (never deployed)
v361 block 7,063,679 Internal re-bind
v386–v390 · runtime versions skipped on chain (never deployed)
v391 block 7,782,857 Internal re-bind
v394–v400 · runtime versions skipped on chain (never deployed)
v401 block 8,036,576 Internal re-bind Current
Runtime Info
View Source- Pallet
- SubtensorModule
- Storage Kind
- Map
- First Version
- v334
- Current Version
- v411