webln.enable()
To begin interacting with WebLN APIs you'll first need to enable the provider. Calling
webln.enable()
will prompt the user for permission to use the WebLN capabilities of the browser. After that you are free to call any of the other API methods. async function enable(): void;
Example
try {
if(typeof window.webln !== 'undefined') {
await window.webln.enable();
}
}
catch(error) {
// User denied permission or cancelled
console.log(error);
}
Last modified 1yr ago