MechanismEmissionSplit
Storage Map v320 → v411 Changed in v411Emission distribution ratios between mechanisms per subnet .
Explore chainQueried by: subnet ownersdevelopersanalytics
The Big Picture
When a subnet has multiple mechanisms, this defines how emissions are split between them. Normalized proportions determining each mechanism share.
Use Cases
- Understand emission distribution
- Plan multi-mechanism strategies
- Build emission calculators
From Chain Metadata
MAP ( netuid ) --> Normalized vector of emission split proportion between subnet mechanisms
Purpose & Usage
Purpose
Control how emissions are split across multiple mechanisms.
Common Query Patterns
- Query by netuid
Query Keys
| # | Name | Type | Description |
|---|---|---|---|
| 1 | netuid | u16 | netuid (u16, hashed key component) |
Stored Value
Vec<u16> Vec
Normalized (Vec<u16>)
Code Examples
import { createClient, Binary } from "polkadot-api";
import { getWsProvider } from "polkadot-api/ws";
import { sub } from "@polkadot-api/descriptors"; // generated by: npx papi add sub -w wss://entrypoint-finney.opentensor.ai:443
const client = createClient(getWsProvider("wss://entrypoint-finney.opentensor.ai:443"));
const api = client.getTypedApi(sub);
// Query MechanismEmissionSplit storage
const netuid = 1;
const result = await api.query.SubtensorModule.MechanismEmissionSplit.getValue(netuid);
console.log("MechanismEmissionSplit:", result);Version History
v320 block 6,523,566 Added
v327–v333 · runtime versions skipped on chain (never deployed)
v334 block 6,811,690 Internal re-bind
v353–v360 · runtime versions skipped on chain (never deployed)
v361 block 7,063,679 Internal re-bind
v363–v364 · runtime versions skipped on chain (never deployed)
v365 block 7,135,419 Internal re-bind
v386–v390 · runtime versions skipped on chain (never deployed)
v391 block 7,782,857 Internal re-bind
v394–v400 · runtime versions skipped on chain (never deployed)
v401 block 8,036,576 Internal re-bind
v403–v410 · runtime versions skipped on chain (never deployed)
v411 block 8,283,784 Internal re-bind Current
Runtime Info
View Source- Pallet
- SubtensorModule
- Storage Kind
- Map
- First Version
- v320
- Current Version
- v411