Queries

childkey-threshold-suspended

Whether a parent hotkey's child relations are currently inert.

View as Markdown

The chain re-checks a parent's total stake against the childkey stake threshold (StakeThreshold) whenever that stake changes. A parent that has dropped below it is flagged here: its children and parents rows stay stored, but stake inheritance and dividend routing ignore them on every subnet the parent does not own. The flag clears on its own once the parent's stake meets the threshold again.

Category: Delegation

Parameters

ParameterTypeDescription
hotkey_ss58stringParent hotkey to check.

CLI

btcli query childkey-threshold-suspended --hotkey <ss58|name> --json

Python

Namespace method (autocomplete, signature help):

import bittensor as bt

sub = bt.Subtensor()
result = sub.delegation.childkey_threshold_suspended(hotkey_ss58="5F...")

Or dispatch by name, as an agent would:

result = sub.read("childkey_threshold_suspended", hotkey_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.