🆕webln.off()

This particular method enables you to cancel your subscription to an event that was initially set up using the webln.on() function. This allows you to stop receiving notifications or triggers when a specific event occurs.

This API may not be available on all providers.

Method

function off(eventName: "accountChanged", listener: () => void): void;

Code Example

if (!webln.on) { alert('not supported'); }

await webln.enable();
// subscribe to the accountChanged event
webln.on("accountChanged", accountChangedHandler); // callback is executed once account is changed in provided with multiple accounts

// use .off() to unsubscribe from the event. 
webln.off("accountChanged", accountChangedHandler);

function accountChangedHandler() {
    console.log("Account Changed!");
}

Last updated