Alby Developer Guide
Alby Browser Extension APIs
Ask or search…
K
Links
Comment on page

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 modified 3mo ago