This constant was removed in v219
This constant is no longer available in the current runtime. Existed from v195 to v219. Shown here for historical reference.
Current Value
7200From Chain Metadata
Initial hotkey emission tempo.
Use Cases
- Genesis configuration
- Default value initialization
Value History
| Version | Block | Change | Value |
|---|---|---|---|
| v195 | #3,791,350 | Added | 7200 |
| v233 | #4,920,350 | Removed | 7200 |
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 InitialHotkeyEmissionTempo constant
const value = await api.constants.SubtensorModule.InitialHotkeyEmissionTempo();
console.log("InitialHotkeyEmissionTempo:", value);
// Balance: divide by 10^9 for TAO
const tao = value / 1_000_000_000n;Type Information
- Type
- u64
- Byte Size
- 8 bytes
- Encoding
- fixed
- Raw Hex
- 0x201c000000000000
Runtime Info
- Pallet
- SubtensorModule
- First Version
- v195
- Latest Version
- v219
- Removed In
- v219