FlowNormExponent
Storage Plain v334 → currentNormalization exponent for TAO flow calculations.
Explore chainQueried by: developersanalytics
The Big Picture
The flow normalization exponent (p) affects how TAO flow values are scaled. Part of the economic formula determining subnet weight based on flow dynamics.
Use Cases
- Understand flow normalization
- Research subnet economics
From Chain Metadata
ITEM --> Flow Normalization Exponent (p)
Purpose & Usage
Purpose
Control flow normalization in subnet economics.
Common Query Patterns
- Single value query
Stored Value
value (FixedU128)
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 FlowNormExponent storage (no keys - plain value)
const result = await api.query
[stringCamelCase("SubtensorModule")]
[stringCamelCase("FlowNormExponent")]();
console.log("FlowNormExponent:", result.toHuman());Runtime Info
View Source- Pallet
- SubtensorModule
- Storage Kind
- Plain
- First Version
- v334
- Current Version
- v393