TaoFlowCutoff
Storage Plain v334 → currentCutoff threshold for TAO flow calculations.
Explore chainQueried by: developersanalytics
The Big Picture
Small flows may be ignored in economic calculations. This cutoff defines the minimum flow that affects subnet weight calculations.
Use Cases
- Understand flow thresholds
- Research subnet economics
From Chain Metadata
ITEM --> TAO Flow Cutoff
Purpose & Usage
Purpose
Minimum flow for economic calculations.
Common Query Patterns
- Single value query
Stored Value
value (FixedI128)
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 TaoFlowCutoff storage (no keys - plain value)
const result = await api.query
[stringCamelCase("SubtensorModule")]
[stringCamelCase("TaoFlowCutoff")]();
console.log("TaoFlowCutoff:", result.toHuman());Runtime Info
View Source- Pallet
- SubtensorModule
- Storage Kind
- Plain
- First Version
- v334
- Current Version
- v393