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).

View as Markdown

Category: Hyperparameters

Parameters

ParameterTypeDescription
netuidintegerSubnet to query.

CLI

btcli query subnet-emission-enabled --netuid <integer> --json

Python

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:.