Queries

pending-children

Proposed child hotkeys of a parent still in cooldown, and when they apply.

View as Markdown

set_children normally does not take effect immediately: the proposal is parked here until cooldown_block, then promoted to the finalized set that the children read returns. On subnets whose subtoken is not yet enabled the cooldown is skipped and children apply immediately, so nothing lingers here. children is (proportion, child_ss58) pairs with u64-normalized proportions, matching the children read.

Category: Delegation

Parameters

ParameterTypeDescription
hotkey_ss58stringParent hotkey whose pending children to list.
netuidintegerSubnet to query.

CLI

btcli query pending-children --hotkey <ss58|name> --netuid <integer> --json

Python

import bittensor as sub

async with sub.Client("finney") as client:
    result = await client.read("pending_children", hotkey_ss58="5F...", netuid=1)