Queries

hotkey-identities

On-chain identities for hotkeys (via each hotkey's owner coldkey), keyed by hotkey.

View as Markdown

Category: Identity & commitments

Parameters

ParameterTypeDescription
hotkey_ss58sarrayHotkeys to resolve identities for.

CLI

btcli query hotkey-identities --hotkey-ss58s <array> --json

Python

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=[...])