Queried by: subnet ownersvalidatorsanalytics
The Big Picture
Subnet owners receive a percentage of emissions as payment for running the subnet. This parameter sets that percentage network-wide.
Use Cases
- Calculate owner earnings
- Research subnet economics
- Compare with validator earnings
Purpose & Usage
Purpose
Define what portion of emissions goes to subnet owners.
Common Query Patterns
- Single value query
Stored Value
value (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 SubnetOwnerCut storage (no keys - plain value)
const result = await api.query
[stringCamelCase("SubtensorModule")]
[stringCamelCase("SubnetOwnerCut")]();
console.log("SubnetOwnerCut:", result.toHuman());Runtime Info
View Source- Pallet
- SubtensorModule
- Storage Kind
- Plain
- First Version
- v133
- Current Version
- v393