From Chain Metadata
Some balance was thawed.
Triggers
Preconditions
- Account has frozen balance
- Thaw operation authorized
Effects
Postconditions
- Balance available again
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 Thawed events
client.finalizedBlock$.subscribe(async (block) => {
const events = await api.event.Balances.Thawed.get(block.hash);
for (const evt of events) {
console.log("Thawed:", evt.payload);
}
});Runtime Info
- Pallet Index
- 5
- Event Index
- 20
- First Version
- v149
- Current Version
- v411