Example

import { Relay, Events } from "@chainpatrol/sdk";

Relay.on(Events.ContinueAtOwnRisk, (request) => {
  // Handle the event
});

Parameters

The on() method accepts two parameters:

type
EventType
required

The type property specifies what type of event you want to listen for.

callback
(data: EventData) => void
required

The callback property is a function that will be called when the event is triggered. The event data is passed to the callback function as the first parameter.