Queries
root-baskets
Basket summaries for every validator with an active basket.
The network-wide leaderboard: one validator_basket_summary record per
validator with an active fund, sorted by NAV descending, each including
its basket_rate (the cumulative entitlement accumulator: β raw units
minted per rao of root stake, migration-seeded history included).
Compare lifetime_return across validators to rank basket performance;
for staker returns use chain_pricing (staker_twr / stake_price).
Category: Staking
Parameters
This read takes no parameters.
CLI
btcli query root-baskets --jsonPython
Namespace method (autocomplete, signature help):
import bittensor as bt
sub = bt.Subtensor()
result = sub.staking.root_baskets()Or dispatch by name, as an agent would:
result = sub.read("root_baskets")Async is the same surface awaited: async with bt.Subtensor() as client:.
On-chain implementation
- Storage
SubtensorModule.BasketRate - Runtime API
BetaBasketRuntimeApi.get_all_validator_baskets
Every file is browsable under /code exactly as built into the runtime.