This storage item was removed in v127
This storage item is no longer available in the current runtime. Existed from v123 to v127. Shown here for historical reference.
Members
Storage Removed Plain v123 → v127 (removed)Current Senate members.
Queried by: validatorsanalytics
The Big Picture
The set of accounts with governance authority.
Use Cases
- List Senate membership
- Verify voting eligibility
From Chain Metadata
The current members of the collective. This is stored sorted (just by value).
Purpose & Usage
Purpose
Defines who can vote on Senate proposals.
Common Query Patterns
- Query all to list members
Stored Value
Vec<AccountId> Vec
value (Vec<AccountId>)
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 Members storage (no keys - plain value)
const result = await api.query
[stringCamelCase("Senate")]
[stringCamelCase("Members")]();
console.log("Members:", result.toHuman());Runtime Info
- Pallet
- Senate
- Storage Kind
- Plain
- First Version
- v123
- Removed In
- v127