Queries
hotkey-owner
The coldkey that owns a hotkey, or None if unowned.
Category: Neurons & registration
Parameters
| Parameter | Type | Description |
|---|---|---|
hotkey_ss58 | string | Hotkey whose owning coldkey to look up. |
CLI
btcli query hotkey-owner --hotkey <ss58|name> --jsonPython
Typed namespace method (autocomplete, signature help):
import bittensor as sub
async with sub.Client("finney") as client:
result = await client.neurons.hotkey_owner(hotkey_ss58="5F...")Or dispatch by name, as an agent would:
result = await client.read("hotkey_owner", hotkey_ss58="5F...")