MechanismEmissionSplit
Storage Map v320 → currentEmission 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 | key1 | u16 | key1 (u16) |
Stored Value
Vec<u16> Vec
value (Vec<u16>)
Code Examples
import { ApiPromise, WsProvider } from "@polkadot/api";
import { stringCamelCase } from "@polkadot/util";
const provider = new WsProvider("wss://entrypoint-finney.opentensor.ai:443");
const api = await ApiPromise.create({ provider });
// Query MechanismEmissionSplit storage
const key1 = 0;
const result = await api.query
[stringCamelCase("SubtensorModule")]
[stringCamelCase("MechanismEmissionSplit")](
key1
);
console.log("MechanismEmissionSplit:", result.toHuman());Runtime Info
View Source- Pallet
- SubtensorModule
- Storage Kind
- Map
- First Version
- v320
- Current Version
- v393