Endowed
Event v101 → current #0Emitted when an account is created with some free balance.
View events on chainFrom Chain Metadata
An account was created with some free balance.
Triggers
Preconditions
- Account did not exist or had zero balance
- Balance meets existential deposit
Effects
Postconditions
- Account has initial free balance
Side Effects
- Typically accompanies NewAccount event
Event Data
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 Endowed events
client.finalizedBlock$.subscribe(async (block) => {
const events = await api.event.Balances.Endowed.get(block.hash);
for (const evt of events) {
console.log("Endowed:", evt.payload);
}
});On-Chain Activity
Emission Frequency
●●●○○○ Active 100K–1M emissions
Regular feature-level activity
#29 most emitted event
As of block 7,429,232
Runtime Info
- Pallet Index
- 5
- Event Index
- 0
- First Version
- v101
- Current Version
- v411