Queries
mechanism-emission-split
Emission split between mechanisms on a subnet.
Returns the raw on-chain per-mechanism share values, in mechanism order; an empty list means no explicit split is set.
Category: Subnets
Parameters
| Parameter | Type | Description |
|---|---|---|
netuid | integer | Subnet to query. |
CLI
btcli query mechanism-emission-split --netuid <integer> --jsonPython
Namespace method (autocomplete, signature help):
import bittensor as bt
sub = bt.Subtensor()
result = sub.subnets.mechanism_emission_split(netuid=1)Or dispatch by name, as an agent would:
result = sub.read("mechanism_emission_split", netuid=1)Async is the same surface awaited: async with bt.Subtensor() as client:.
On-chain implementation
Every file is browsable under /code exactly as built into the runtime.