Alby Developer Guide
User GuideDeveloper Portal
Alby Browser Extension APIs
Alby Browser Extension APIs
  • 📚Overview
  • window.webln
    • 👀See Webln.guide
  • window.liquid
    • enable
    • 🆕isEnabled
    • getAddress
    • signPset
    • 🆕on
    • 🆕off
  • window.nostr
    • getPublicKey
    • signEvent
    • nip04.encrypt
    • nip04.decrypt
    • signSchnorr
    • 🆕on
    • 🆕off
  • window.webbtc
    • enable
    • 🆕isEnabled
    • getAddress
    • signPsbt
    • 🆕on
    • 🆕off
  • window.alby
    • enable
    • 🆕isEnabled
    • ➕Adding accounts
Powered by GitBook
LogoLogo

Our content

  • Website
  • Blog
  • GitHub

Follow us

  • Nostr
  • Twitter / X
  • Youtube

Contact us

  • E-mail
  • Community Chat
  • Open Hours

Your bitcoin & nostr companion / from 🐝 with 🧡

On this page

Was this helpful?

  1. window.alby

isEnabled

Last updated 1 year ago

Was this helpful?

alby.isEnabled() allows you to check if the alby provider is enabled without explicitly enabling it through alby.enable() (which may cause a confirmation popup in some providers)

Method

function isEnabled(): Promise<boolean>;

Example

if(typeof window.alby !== 'undefined' && window.alby.isEnabled) {
    const isEnabled = await window.alby.isEnabled();
    // do something with the value
    console.log(isEnabled)
  }

Demo

🆕