Queries
subnet-emission-enabled
Root-controlled pool-side TAO emission flag for a subnet (1 = enabled). When 0, the subnet earns no TAO emission share even while subnet_is_active is true; only root can flip it (see the set_subnet_emission_enabled intent).
Category: Hyperparameters
Parameters
| Parameter | Type | Description |
|---|---|---|
netuid | integer | Subnet to query. |
CLI
btcli query subnet-emission-enabled --netuid <integer> --jsonPython
Namespace method (autocomplete, signature help):
import bittensor as bt
sub = bt.Subtensor()
result = sub.hyperparameters.subnet_emission_enabled(netuid=1)Or dispatch by name, as an agent would:
result = sub.read("subnet_emission_enabled", netuid=1)Async is the same surface awaited: async with bt.Subtensor() as client:.