| title | commitments |
|---|---|
| description | Every commitment on a subnet, newest first: hotkey, uid, content, block, age, reveal state. |
{/* GENERATED by scripts/generate.py from the SDK registries — do not edit. */}
One row per hotkey that has (or had) a commitment — including sealed
timelocked payloads waiting on drand (is_revealed false, reveals_at
set) and fully-revealed ones whose live storage entry the chain already
dropped. commitment is the currently visible content: the plaintext, or
the latest chain-decrypted payload; null while still sealed.
Category: Identity & commitments
| Parameter | Type | Description |
|---|---|---|
netuid |
integer | Subnet whose commitments to list. |
btcli query commitments --netuid <integer> --jsonNamespace method (autocomplete, signature help):
import bittensor as bt
sub = bt.Subtensor()
result = sub.identity.commitments(netuid=1)Or dispatch by name, as an agent would:
result = sub.read("commitments", netuid=1)Async is the same surface awaited: async with bt.Subtensor() as client:.