Announced
Event Re-added v149 → v323, v326 → current #3Emitted when a time-delayed proxy announces a future call .
View events on chainUseful for: stakersvalidatorsdeveloperswalletsanalytics
The Big Picture
Time-delayed proxies announce before acting, enabling review.
Use Cases
- Monitor announced proxy actions
From Chain Metadata
An announcement was placed to make a call in the future.
Triggers
Emitted by
Preconditions
- Proxy has delay > 0
- MaxPending not exceeded
Effects
Storage Modified
Postconditions
- Announcement stored with call hash
Side Effects
- Announcement deposit reserved
Event Data
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 });
// Subscribe to Announced events
api.query.system.events((events) => {
events
.filter(({ event }) =>
event.section === stringCamelCase("Proxy") &&
event.method === "Announced"
)
.forEach(({ event }) => {
console.log("Announced:", event.data.toHuman());
});
});Version History
v149 block 3,014,339 3 args
v326 block 6,608,228 3 args Current
Runtime Info
- Pallet Index
- 16
- Event Index
- 3
- First Version
- v149
- Current Version
- v393