This storage item was removed in v326

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

ProposalOf

Storage Removed Map v123 → v326 (removed)

Proposal content by hash.

Queried by: validatorsanalytics

The Big Picture

The actual calls to be executed.

Use Cases

  • View proposal details

From Chain Metadata

Actual proposal for a given hash, if it's current.

Purpose & Usage

Purpose

Store proposed calls.

Common Query Patterns

  • Query by hash

Query Keys

#NameTypeDescription
1
key1
H256 key1 (H256)

Stored Value

value (RuntimeCall)

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 ProposalOf storage
const key1 = 0 as any /* H256 */;

const result = await api.query
  [stringCamelCase("Triumvirate")]
  [stringCamelCase("ProposalOf")](
  key1
);

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

Runtime Info

Pallet
Triumvirate
Storage Kind
Map
First Version
v123
Removed In
v326