Skip to main content

Documentation Index

Fetch the complete documentation index at: https://fireblocks-43c4b3ee-chore-add-cli.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

The events handler can be tailored to match your application’s needs. It can be designed to execute various actions, such as refreshing the user interface, recording events, dispatching notifications, or initiating other behaviors specific to your application’s functionality. The events handler object should be provided when initializing the EW SDK. It must implement the following method (following a defined interface): handleEvent(event: Event): void: The method invoked whenever there’s a new event.
export interface IEventsHandler {  
  handleEvent(event: TEvent): void;  
}