Minted
Event v149 → current #10Emitted when new tokens are minted into an account.
View events on chainFrom Chain Metadata
Some amount was minted into an account.
Triggers
Preconditions
- Minting operation authorized
Effects
Postconditions
- Account balance increased
- Total issuance increased
Side Effects
- Inflationary effect on token supply
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 Minted events
client.finalizedBlock$.subscribe(async (block) => {
const events = await api.event.Balances.Minted.get(block.hash);
for (const evt of events) {
console.log("Minted:", evt.payload);
}
});Runtime Info
- Pallet Index
- 5
- Event Index
- 10
- First Version
- v149
- Current Version
- v411