Lightning Web SDK
An npm package that provides useful and common tools and helpers to build lightning web applications.
🚀 Quick Start
npm install alby-tools
or
yarn add alby-tools
🤙 Usage
Lightning Address
The LightningAddress
class provides helpers to work with lightning addresses
import { LightningAddress } from "alby-tools";
const ln = new LightningAddress("hello@getalby.com");
await ln.fetch();
console.log(ln.lnurlpData);
console.log(ln.keysendData);
Get an invoice:
import { LightningAddress } from "alby-tools";
const ln = new LightningAddress("hello@getalby.com");
await ln.fetch();
const invoice = await ln.requestInvoice({satoshi: 1000});
console.log(invoice.paymentRequest);
console.log(invoice.paymentHash);
Verify a payment
import { LightningAddress } from "alby-tools";
const ln = new LightningAddress("hello@getalby.com");
await ln.fetch();
const invoice = await ln.requestInvoice({satoshi: 1000});
const paid = await invoice.verifyPayment();
if (paid) {
console.log(invoice.preimage);
}
await window.webln.enable();
const response = await window.webln.sendPayment(invoice.paymentRequest);
const paid = invoice.validatePreimage(response.preimage);
if (paid) {
console.log('paid');
}
await invoice.isPaid();
It is also possible to manually initialize the Invoice
const { Invoice } = require("alby-tools");
const invoice = new Invoice({paymentRequest: pr, preimage: preimage});
await invoice.isPaid();
Boost a LN address:
You can also attach additional metadata information like app name, version, name of the podcast which is boosted etc. to the keysend payment.
import { LightningAddress } from "alby-tools";
const ln = new LightningAddress("satoshi@getalby.com");
await ln.fetch();
const boost = {
action: "boost",
value_msat: 21000,
value_msat_total: 21000,
app_name: "Podcastr",
app_version: "v2.1",
feedId: "21",
podcast: "random podcast",
episode: "1",
ts: 2121,
name: "Satoshi",
sender_name: "Alby",
}
await ln.boost(boost);
Zapping a LN address on Nostr:
Nostr is a simple, open protocol that enables truly censorship-resistant and global value-for-value publishing on the web. Nostr integrates deeply with Lightning. more info
alby-tools provides helpers to create zaps
import { LightningAddress } from "alby-tools";
const ln = new LightningAddress("satoshi@getalby.com");
await ln.fetch();
if (!ln.nostrPubkey) {
alert('No nostr pubkey available');
}
const zapArgs = {
satoshi: 1000,
comment: "Awesome post",
relays: ["wss://relay.damus.io"],
e: "44e1827635450ebb3c5a7d12c1f8e7b2b514439ac10a67eef3d9fd9c5c68e245"
}
const response = await ln.zap(zapArgs);
console.log(response.preimage);
const invoice = await ln.zapInvoice(zapArgs);
console.log(invoice.paymentRequest);
await invoice.isPaid();
💵 Fiat conversions
Helpers to convert sats values to fiat and fiat values to sats.
getFiatValue(satoshi: number, currency: string): number
Returns the fiat value for a specified currrency of a satoshi amount
getSatoshiValue(amount: number, currency: string): number
Returns the satoshi value for a specified amount (in the smallest denomination) and currency
getFormattedFiatValue(satoshi: number, currency: string, locale: string): string
Like getFiatValue
but returns a formatted string for a given locale using JavaScript's toLocaleString
Examples
await getFiatValue(satoshi: 2100, currency: 'eur');
await getSatoshiValue(amount: 100, currency: 'eur');
await getFormattedFiatValue(stoshi: 2100, currency: 'usd', locale: 'en')
🤖 Lightning Address Proxy
alby-tools uses a proxy to simplify requests to lightning providers.
- Many ln addresses don't support CORS, which means fetching the data directly in a browser environment will not always work.
- Two requests are required to retrieve lnurlp and keysend data for a lightning address. The proxy will do these for you with a single request.
You can disable the proxy by explicitly setting the proxy to false when initializing a lightning address:
const lightningAddress = new LightningAddress("hello@getalby.com", {proxy: false});
🛠 Development
yarn install
yarn run build