πoff
Method
function off(eventName: "accountChanged", listener: () => void): void;Code Example
if (!liquid.on) { alert('not supported'); }
await liquid.enable();
// subscribe to the accountChanged event
liquid.on("accountChanged", accountChangedHandler); // callback is executed once account is changed in provided with multiple accounts
// use .off() to unsubscribe from the event.
liquid.off("accountChanged", accountChangedHandler);
function accountChangedHandler() {
console.log("Account Changed!");
}Last updated
Was this helpful?

