VotingPowerTrackingDisabled
Event v385 → v402, v411 → current Changed in v411 #117Voting power tracking has been fully disabled and entries cleared.
View events on chainFrom Chain Metadata
Voting power tracking has been fully disabled and entries cleared.
Triggers
Emitted by
Event Data
| # | Name | Type | Description |
|---|---|---|---|
| 0 | netuid | u16 NetUid | netuid: Subnet ID (u16, 0-65535) |
Code Examples
import { createClient, Binary } from "polkadot-api";
import { getWsProvider } from "polkadot-api/ws";
import { sub } from "@polkadot-api/descriptors"; // generated by: npx papi add sub -w wss://entrypoint-finney.opentensor.ai:443
const client = createClient(getWsProvider("wss://entrypoint-finney.opentensor.ai:443"));
const api = client.getTypedApi(sub);
// Subscribe to VotingPowerTrackingDisabled events
client.finalizedBlock$.subscribe(async (block) => {
const events = await api.event.SubtensorModule.VotingPowerTrackingDisabled.get(block.hash);
for (const evt of events) {
console.log("VotingPowerTrackingDisabled:", evt.payload);
}
});Version History
v385 block 7,782,670 1 args
v411 block 8,283,784 1 args Current
Runtime Info
View Source- Pallet Index
- 7
- Event Index
- 117
- First Version
- v385
- Current Version
- v411