This storage item was removed in v219

This storage item is no longer available in the current runtime. Existed from v210 to v219. Shown here for historical reference.

PendingdHotkeyEmissionUntouchable

Storage Removed Map v210 → v219 (removed)

Map ( hot ) --> emission | Part of accumulated hotkey emission that will not be distributed to nominators.

From Chain Metadata

Map ( hot ) --> emission | Part of accumulated hotkey emission that will not be distributed to nominators.

Purpose & Usage

Purpose

Stores chain state data.

Common Query Patterns

  • Query by key
  • Iterate all entries

Query Keys

#NameTypeDescription
1
key1
AccountId key1 (AccountId) (hex -> SS58)

Stored Value

Value in RAO (÷10⁹ for TAO)

RAO -> TAO (/ 10^9)

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 PendingdHotkeyEmissionUntouchable storage
const key1 = "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY";

const result = await api.query
  [stringCamelCase("SubtensorModule")]
  [stringCamelCase("PendingdHotkeyEmissionUntouchable")](
  key1
);

console.log("PendingdHotkeyEmissionUntouchable:", result.toHuman());

Runtime Info

View Source
Pallet
SubtensorModule
Storage Kind
Map
First Version
v210
Removed In
v219