Skip to main content
API referenceAccounts

Network Parameters

Last updated

GET
/api/v1/network/parameters

Fetch live global Subtensor protocol/governance parameters (#6343) — TaoWeight, StakeThreshold, PendingChildKeyCooldown — queried from the finney RPC at request time with 300s KV cache. Each field is independently null on its own RPC failure. READ field_sources BEFORE CITING ANY VALUE HERE: it labels every field measured (with the storage item behind it) or reconstructed (our arithmetic), and three are reconstructed. block_emission_tao and block_emission_halvings are derived from TotalIssuance, never read from the BlockEmission storage item, which is stale at 1.0 TAO (#8747). emission_gate_exponent_effective is the runtime default (3) whenever the storage item is unset, which is its current state on finney — that 3 comes from our source tree, not from chain.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/api/v1/network/parameters"
{  "data": {    "block_emission_halvings": 5000000,    "block_emission_tao": 5000000,    "emission_bar_quantile": 0.5,    "emission_gate_bar": 0.5,    "emission_gate_exponent": 0.5,    "emission_gate_exponent_effective": 0.5,    "field_sources": {      "example": {        "kind": "measured",        "storage": "example"      }    },    "pending_childkey_cooldown_blocks": 5000000,    "queried_at": "2026-06-01T00:00:00.000Z",    "schema_version": 1,    "stake_threshold_tao": 0.5,    "subnet_owner_cut": 0.5,    "subnet_owner_cut_effective": 0.5,    "tao_weight": 0.5,    "total_issuance_tao": 0.5  },  "meta": {    "artifact_path": "example",    "cache": "short",    "contract_version": "2026-06-29.1",    "generated_at": "2026-06-01T00:00:00.000Z",    "observed_through": "2026-06-01T00:00:00.000Z",    "pagination": {      "collection": "example",      "cursor": 1,      "limit": 1,      "next_cursor": 1,      "order": "asc",      "returned": 1,      "sort": "example",      "total": 1    },    "published_at": "2026-06-01T00:00:00.000Z",    "source": "live-cron-prober",    "stale_contract": {      "built_under": "example",      "live": "example"    }  },  "ok": true,  "schema_version": 1}