Queries
hotkey-identities
On-chain identities for hotkeys (via each hotkey's owner coldkey), keyed by hotkey.
Category: Identity & commitments
Parameters
| Parameter | Type | Description |
|---|---|---|
hotkey_ss58s | array | Hotkeys to resolve identities for. |
CLI
btcli query hotkey-identities --hotkey-ss58s <array> --jsonPython
Typed namespace method (autocomplete, signature help):
import bittensor as sub
async with sub.Client("finney") as client:
result = await client.identity.hotkey_identities(hotkey_ss58s=[...])Or dispatch by name, as an agent would:
result = await client.read("hotkey_identities", hotkey_ss58s=[...])