Queried by: validatorsdelegatorswalletsanalytics
The Big Picture
V2 of the identity system. Stores display names, contact info, and other metadata for coldkey accounts. Essential for building human-readable interfaces and validator discovery tools.
Use Cases
- Display account names and info
- Build account directories
- Verify account identity before delegating
Purpose & Usage
Purpose
Store human-readable identity information for accounts.
Common Query Patterns
- Query by coldkey address
Query Keys
| # | Name | Type | Description |
|---|---|---|---|
| 1 | key1 | AccountId | key1 (AccountId) (hex -> SS58) |
Stored Value
value (ChainIdentityV2)
Relationships
Modified By
Related Events
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 IdentitiesV2 storage
const key1 = "5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY";
const result = await api.query
[stringCamelCase("SubtensorModule")]
[stringCamelCase("IdentitiesV2")](
key1
);
console.log("IdentitiesV2:", result.toHuman());On-Chain Activity
Write Frequency
●●○○○○ Minimal <10K est. writes
<10K estimated writes
#56 most written storage item
Write Source User Extrinsics
Modified via user-submitted extrinsics
As of block 7,429,232
Runtime Info
View Source- Pallet
- SubtensorModule
- Storage Kind
- Map
- First Version
- v233
- Current Version
- v393