Alby JS SDK
Introduction
This JavaScript SDK for the Alby OAuth2 Wallet API and the Nostr Wallet Connect API.
Installing
npm install @getalby/sdk
This library relies on a global fetch() function which will work in browsers and node v18.x or newer. (In older versions you have to use a polyfill.)
Content
Nostr Wallet Connect Documentation
Nostr Wallet Connect is an open protocol enabling applications to interact with bitcoin lightning wallets. It allows users to connect their existing wallets to your application allowing developers to easily integrate bitcoin lightning functionality.
The Alby JS SDK allows you to easily integrate Nostr Wallet Connect into any JavaScript based application.
The NostrWebLNProvider
exposes the WebLN sendPayment interface to execute lightning payments through Nostr Wallet Connect.
(note: in the future more WebLN functions will be added to Nostr Wallet Connect)
NostrWebLNProvider (aliased as NWC) Options
providerName
: name of the provider to load the default options. currently alby
(default)nostrWalletConnectUrl
: full Nostr Wallet Connect URL as defined by the specrelayUrl
: URL of the Nostr relay to be used (e.g. wss://nostr-relay.getalby.com)walletPubkey
: pubkey of the Nostr Wallet Connect appsecret
: secret key to sign the request event (if not available window.nostr will be used)authorizationUrl
: URL to the NWC interface for the user to and the app connection
Quick start example
import { webln } from "@getalby/sdk";
const nwc = new webln.NostrWebLNProvider({ nostrWalletConnectUrl: loadNWCUrl() });
const nwc = new webln.NWC({ nostrWalletConnectUrl: loadNWCUrl });
await nwc.enable();
const response = await nwc.sendPayment(invoice);
You can use NWC as a webln compatible object in your web app:
if (!window.webln) {
window.webln = new webln.NostrWebLNProvider({ nostrWalletConnectUrl: loadNWCUrl })
}
NostrWebLNProvider Functions
The goal of the Nostr Wallet Connect provider is to be API compatible with webln. Currently not all methods are supported and only sendPayment
is specified.
static withNewSecret()
Initialized a new NostrWebLNProvider
instance but generates a new random secret. The pubkey of that secret then needs to be authorized by the user (this can be initiated by redirecting the user to the getAuthorizationUrl()
URL or calling initNWC()
to open an authorization popup.
Example
const nwc = NostrWebLNProvider.withNewSecret();
await nwc.initNWC();
sendPayment(invice: string)
Takes a bolt11 invoice and calls the NWC pay_invoice
function.
It returns a promise object that is resolved with an object with the preimage or is rejected with an error
Example
const nwc = new NostrWebLNProvider({ nostrWalletConnectUrl: loadNWCUrl });
await nwc.enable();
const response = await nwc.sendPayment(invoice);
console.log(response);
getNostrWalletConnectUrl()
Returns the nostr+walletconnect://
URL which includes all the connection information (walletPubkey
, relayUrl
, secret
)
This can be used to get and persist the string for later use.
initNWC({name: string})
Opens a new window prompt with the getAuthorizationUrl()
(the user's NWC UI) to ask the user to authorize the app connection.
The promise resolves when the connection is authorized and the popup sends a nwc:success
message or rejects when the prompt is closed.
Pass a name
to the NWC provider describing the application.
const nwc = NostrWebLNProvider.withNewSecret();
try {
await nwc.initNWC({name: 'ACME app' );
} catch(e) {
console.warn("Prompt closed");
}
await nwc.enable();
let response;
try {
response = await nwc.sendPayment(invoice);
console.info(`payment successful, the preimage is ${response.preimage}`);
}
catch (e) {
console.error(e.error || e);
}
For Node.js
To use this on Node.js you first must install websocket-polyfill
and import it:
import 'websocket-polyfill';
if you get an crypto is not defined
error you have to import it first:
import * as crypto from 'crypto';
globalThis.crypto = crypto as any;
Examples
Defaults
import { NostrWebLNProvider } from '@getalby/sdk';
const webln = new NostrWebLNProvider();
await webln.enable();
const response = await webln.sendPayment(invoice);
console.log(response.preimage);
webln.close();
Use a custom, user provided Nostr Wallet Connect URL
import { NostrWebLNProvider } from '@getalby/sdk';
const webln = new NostrWebLNProvider({ nostrWalletConnectUrl: 'nostrwalletconnect://69effe7b49a6dd5cf525bd0905917a5005ffe480b58eeb8e861418cf3ae760d9?relay=wss://nostr.bitcoiner.social&secret=c60320b3ecb6c15557510d1518ef41194e9f9337c82621ddef3f979f668bfebd');
await webln.enable();
const response = await webln.sendPayment(invoice);
console.log(response.preimage);
webln.close();
Generate a new NWC connect url using a locally-generated secret
const webln = webln.NostrWebLNProvider.withNewSecret();
webln.getConnectUrl({ name: `My app name` });
webln.getConnectUrl({ name: `My app name`, returnTo: document.location.toString() });
await webln.initNWC("alby", {
name: `My app name`,
});
OAuth API Documentation
Please have a look a the Alby OAuth2 Wallet API:
https://guides.getalby.com/alby-wallet-api/reference/getting-started
Avalilable methods
- accountBalance
- accountSummary
- accountInformation
- accountValue4Value
- incomingInvoices
- outgoingInvoices
- getInvoice
- createInvoice
- keysend
- sendPayment
- sendBoostagram
- sendToAlbyAccount
- createWebhookEndpoint
- deleteWebhookEndpoint
Examples
Full OAuth Authentication flow
const authClient = new auth.OAuth2User({
client_id: process.env.CLIENT_ID,
client_secret: process.env.CLIENT_SECRET,
callback: "http://localhost:8080/callback",
scopes: ["invoices:read", "account:read", "balance:read", "invoices:create", "invoices:read", "payments:send"],
token: {access_token: undefined, refresh_token: undefined, expires_at: undefined}
});
const authUrl = authClient.generateAuthURL({
code_challenge_method: "S256",
});
await authClient.requestAccessToken(code);
console.log(authClient.token);
const client = new Client(authClient);
const result = await client.accountBalance();
Initialize a client from existing token details
const token = loadTokenForUser();
const authClient = new auth.OAuth2User({
client_id: process.env.CLIENT_ID,
callback: "http://localhost:8080/callback",
scopes: ["invoices:read", "account:read", "balance:read", "invoices:create", "invoices:read", "payments:send"],
token: token
});
const client = new Client(authClient);
const result = await client.createInvoice({amount: 1000});
Sending payments
const token = loadTokenForUser();
const authClient = new auth.OAuth2User({
client_id: process.env.CLIENT_ID,
callback: "http://localhost:8080/callback",
scopes: ["invoices:read", "account:read", "balance:read", "invoices:create", "invoices:read", "payments:send"],
token: token
});
const client = new Client(authClient);
await client.sendPayment({ invoice: bolt11 });
await client.keysend({
destination: nodekey,
amount: 10,
memo: memo
});
Send a boostagram
refer also to the boostagram spec: https://github.com/lightning/blips/blob/master/blip-0010.md
const token = loadTokenForUser();
const authClient = new auth.OAuth2User({
client_id: process.env.CLIENT_ID,
callback: "http://localhost:8080/callback",
scopes: ["payments:send"],
token: token
});
const client = new Client(authClient);
await client.sendBoostagram({
recipient: {
address: '030a58b8653d32b99200a2334cfe913e51dc7d155aa0116c176657a4f1722677a3',
customKey: '696969',
customValue: 'bNVHj0WZ0aLPPAesnn9M'
},
amount: 10,
boostagram: {
"app_name": "Alby SDK Demo",
"value_msat_total": 49960,
"value_msat": 2121,
"url": "https://feeds.buzzsprout.com/xxx.rss",
"podcast": "Podcast title",
"action": "boost",
"episode": "The episode title",
"episode_guid": "Buzzsprout-xxx",
"ts": 574,
"name": "Podcaster - the recipient name",
"sender_name": "Satoshi - the sender/listener name"
}
});
await client.keysend({
destination: nodekey,
amount: 10,
customRecords: {
"7629169": JSON.stringify(boostagram),
"696969": "user",
}
});
Send multiple boostagrams
You often want to send a boostagram for multiple splits. You can do this with one API call. Simply pass in an array of boostagrams. See example above.
const response = await client.sendBoostagram([boostagram1, boostagram2, boostagram3]);
console.log(response.keysends);
response.keysends
is an array of objects that either has an error
key if a payment faild or the keysend
key if everything succeeded.
{
"keysends":[
{
"keysend": { "amount":10, "fee":0, "destination":"xx","payment_preimage":"xx","payment_hash":"xx"}
},
{
"keysend":{"amount":10,"fee":0,"destination":"xxx","payment_preimage":"xxx","payment_hash":"xxx"}
}
]
}
fetch() dependency
This library relies on a global fetch()
function which will only work in browsers and node v18.x or newer. In older versions you can manually install a global fetch option or polyfill if needed.
For example:
import fetch from "cross-fetch";
globalThis.fetch = fetch;
import 'cross-fetch/polyfill';
Full usage examples
You can find examples in the examples/ directory.
Need help?
We are happy to help, please contact us or create an issue.
Thanks
The client and the setup is inspired and based on the twitter-api-typescript-sdk.
License
MIT