CRV3WeightCommits
Storage Map v216 → currentCommit-reveal v3 weight commits storage (deprecated).
Explore chainQueried by: developers
The Big Picture
Deprecated storage for commit-reveal v3. Use TimelockedWeightCommits for current commit-reveal functionality. Kept for historical data access.
Use Cases
- Access legacy commit data
- Migration tooling
From Chain Metadata
MAP (netuid, commit_epoch) --> VecDeque<(who, serialized_compressed_commit, reveal_round)> | Stores a queue of v3 commits for an account on a given netuid.
Purpose & Usage
Purpose
Legacy storage for v3 commit-reveal weight submissions.
Common Query Patterns
- Query by (netuid, epoch)
Query Keys
Stored Value
Value in RAO (÷10⁹ for TAO)
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 CRV3WeightCommits storage
const key1 = 0;
const key2 = 0;
const result = await api.query
[stringCamelCase("SubtensorModule")]
[stringCamelCase("CRV3WeightCommits")](
key1,
key2
);
console.log("CRV3WeightCommits:", result.toHuman());On-Chain Activity
Write Frequency
●●●●●○ High 1M–10M est. writes
1M–10M estimated writes
#15 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
- v216
- Current Version
- v393