Queries

root-basket-owed-breakdown

A coldkey's pending root dividends, itemized per validator hotkey.

View as Markdown

For each hotkey the coldkey stakes to: the TAO its accrued entitlement would realize if claimed now with claim_root_with_hotkey. Zero-owed validators are omitted. Use this to pick a validator before claiming.

Category: Staking

Parameters

ParameterTypeDescription
coldkey_ss58stringColdkey whose pending root dividends to break down.

CLI

btcli query root-basket-owed-breakdown --coldkey <ss58|name> --json

Python

Namespace method (autocomplete, signature help):

import bittensor as bt

sub = bt.Subtensor()
result = sub.staking.root_basket_owed_breakdown(coldkey_ss58="5F...")

Or dispatch by name, as an agent would:

result = sub.read("root_basket_owed_breakdown", coldkey_ss58="5F...")

Async is the same surface awaited: async with bt.Subtensor() as client:.

On-chain implementation

Every file is browsable under /code exactly as built into the runtime.