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.liquid

getAddress

Gets the first address from your liquid account

Method

async function getAddress(): {
  address: string,
  blindingPrivateKey: string,
  publicKey: string
}

Response

The first address of your liquid account generated by your master key, including the public key and blinding private key (for confidential transactions).

Code Example

const address = await window.liquid.getAddress();

Last updated 1 year ago

Was this helpful?