RootClaimableThreshold
Storage Map v334 → currentMinimum 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 | key1 | u16 | key1 (u16) |
Stored Value
value (FixedI128)
Relationships
Modified By
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 RootClaimableThreshold storage
const key1 = 0;
const result = await api.query
[stringCamelCase("SubtensorModule")]
[stringCamelCase("RootClaimableThreshold")](
key1
);
console.log("RootClaimableThreshold:", result.toHuman());Runtime Info
View Source- Pallet
- SubtensorModule
- Storage Kind
- Map
- First Version
- v334
- Current Version
- v393