This storage item was removed in v277
This storage item is no longer available in the current runtime. Existed from v210 to v277. Shown here for historical reference.
Purpose & Usage
Purpose
Stores chain state data.
Common Query Patterns
- Query by key
- Iterate all entries
Query Keys
| # | Name | Type | Description |
|---|---|---|---|
| 1 | key1 | H160 | key1 (H160) |
Stored Value
value (())
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 Suicided storage
const key1 = 0 as any /* H160 */;
const result = await api.query
[stringCamelCase("EVM")]
[stringCamelCase("Suicided")](
key1
);
console.log("Suicided:", result.toHuman());Runtime Info
- Pallet
- EVM
- Storage Kind
- Map
- First Version
- v210
- Removed In
- v277