Queries

root-claim-threshold

The minimum TAO payout for a root dividend claim.

View as Markdown

claim_root and claim_root_with_hotkey silently skip any per-validator basket redemption whose estimated payout falls below this threshold; the entitlement keeps accruing and pays out once it clears. Set by root via set_root_claim_threshold.

Category: Staking

Parameters

This read takes no parameters.

CLI

btcli query root-claim-threshold --json

Python

Namespace method (autocomplete, signature help):

import bittensor as bt

sub = bt.Subtensor()
result = sub.staking.root_claim_threshold()

Or dispatch by name, as an agent would:

result = sub.read("root_claim_threshold")

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