All Projects → getAlby → lightning-browser-extension

getAlby / lightning-browser-extension

Licence: MIT license
The Bitcoin Lightning Browser extension that connects to different wallet interfaces and brings deep lightning integration to the web

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to lightning-browser-extension

shango-lightning-wallet
Shango Lightning Wallet
Stars: ✭ 65 (-66.49%)
Mutual labels:  lightning, wallet, lightning-network
awesome-lnurl
A curated list of awesome lnurl things.
Stars: ✭ 252 (+29.9%)
Mutual labels:  lightning, lightning-network, lnurl
Joule Extension
Lightning payments extension for Chrome
Stars: ✭ 303 (+56.19%)
Mutual labels:  lightning, browser-extension, lightning-network
Spark Wallet
⚡️ A minimalistic wallet GUI for c-lightning, accessible over the web or through mobile and desktop apps.
Stars: ✭ 215 (+10.82%)
Mutual labels:  lightning, wallet, lightning-network
Blixt Wallet
Bitcoin Lightning Wallet with focus on usability and user experience
Stars: ✭ 40 (-79.38%)
Mutual labels:  lightning, wallet, lightning-network
lntop
⚡ LN terminal dashboard 📊
Stars: ✭ 170 (-12.37%)
Mutual labels:  lightning, lightning-network
bitlum-front
Lightning Network mainnet custodial wallet. Fast, easy, no node install and synchronisation
Stars: ✭ 16 (-91.75%)
Mutual labels:  lightning, wallet
lightningj
Core implementation of the lightningj API implementations.
Stars: ✭ 41 (-78.87%)
Mutual labels:  lightning, lightning-network
lightningtip
Get tips via the Lightning Network
Stars: ✭ 91 (-53.09%)
Mutual labels:  lightning, lightning-network
lightning-jet
Lightning Jet is a fully automated rebalancer for Lightning nodes. Jet optimizes channel liquidity allocation based on routing volume, missed routing opportunities (htlcs), and other variables.
Stars: ✭ 33 (-82.99%)
Mutual labels:  lightning, lightning-network
zapread.com
Website for zapread.com
Stars: ✭ 19 (-90.21%)
Mutual labels:  lightning, lightning-network
lnurl
LNURL implementation for Python.
Stars: ✭ 51 (-73.71%)
Mutual labels:  lightning-network, lnurl
Eclair Mobile
An Android wallet for the Lightning Network
Stars: ✭ 231 (+19.07%)
Mutual labels:  lightning, lightning-network
umbrel-middleware
RESTful Bitcoin and Lightning API for Umbrel
Stars: ✭ 21 (-89.18%)
Mutual labels:  lightning, lightning-network
pi-factory
Bootstrap a bitcoin lightning box for Raspberry Pi 3 based on Alpine Linux
Stars: ✭ 17 (-91.24%)
Mutual labels:  lightning, lightning-network
Lndhub
Wrapper for Lightning Network Daemon. It provides separate accounts and trust minimization for end users
Stars: ✭ 203 (+4.64%)
Mutual labels:  lightning, lightning-network
speckle-browser-extension
Universal browser extension for Web 3 and the Polkadot ecosystem
Stars: ✭ 28 (-85.57%)
Mutual labels:  browser-extension, wallet
lnregtest
Regtest Lightning Networks for (python) integration testing
Stars: ✭ 17 (-91.24%)
Mutual labels:  lightning, lightning-network
lnd-routing
Lightning network liquidity service
Stars: ✭ 16 (-91.75%)
Mutual labels:  lightning, lightning-network
Lncli Web
Light-weight web client for the lnd daemon written in NodeJS / Angular.
Stars: ✭ 181 (-6.7%)
Mutual labels:  lightning, lightning-network

Lightning Browser Extension

A browser extension to bring the Bitcoin Lightning Network to the browser

The extension provides deep Lightning Network integration for websites (for payments and authentication flows).

The goal is to write a minimal web extension to allow browsers to interact with the Lightning Network programmatically. It focuses on the web-payments process and does not try to be a full node UI with advanced channel-management or similar features.

The extension implements the WebLN standard as the interface that allows websites to connect to Lightning Network nodes (to request payments, invoices, signatures, login, etc.) and enable seamless UX of web payments and authentications.

The extension can connect to different node implementations and supports custodial and non-custodial setups.

Some Features

  • Custom budgets/allowances for websites to allow payment streams/auto-payments
  • Multiple accounts and support for different node backends (lnd, etc.)
  • Full WebLN send and receive payment flows (getInfo, sendPayment, fixed makeInvoice support)
  • LNURL-pay support
  • LNURL-auth support
  • Payment history with additional website metadata
  • LNURL-withdraw support
  • WebLN signMessage, verifyMessage support
  • WebLN dynamic makeInvoice support
  • Keysend
  • Lsat support

STATUS: 🚀

Join the conversation

We have a channel on the bitcoin.design Slack community #lightning-browser-extension and a Telegram group. Come and join us!

We also do a weekly call on Thursday at 13:00 UTC on Jitsi

Browser Support

Alby supports

Installation

Add Alby to your browser

Try out the most recent version of Alby (Nightly Releases)

  • Firefox Nightly - best to install it as a temporary add-on as discussed in the "Load extension into browser" section
  • Chrome Nightly - go to chrome://extensions/, enable "Developer mode" (top right) and drag & drop the file in the browser

(Note: You might need to reconfigure your wallet after installing new versions)

Architecture Idea

architecture

Project Structure

./lightning-browser-extension
├── src                     # Source Code
│   ├── app                     # React UI App
│   ├── extension               # Browser Extension
│   ├── common                  # Helpers and utilities used by both the React App and the Browser Extension
├── static                  # Static Resources
│   ├── assets                  # Images, logos, etc
│   └── views                   # Static HTML files
├── doc                     # Documentation (guidelines, architecture docs, etc)
├── dist                    # Build
│   └── development             # Developer Builds (not to be shared)
│   └── production              # Production Builds
├── tests                   # E2E tests and related helpers

🚀 Quick Start

Ensure you have

  • Node.js 14 or later installed
  • Yarn v1 or v2 installed

Suppported but not required

Then run the following

  1. Install dependencies
    yarn install
  2. Start the development server for the extension
    • yarn run dev:chrome
    • yarn run dev:firefox
    • yarn run dev:opera
  3. To build the extension
    • yarn run build:chrome
    • yarn run build:firefox
    • yarn run build:opera
  4. Build and pack extensions all at once to the dist/production directory
    yarn run build
  5. Build the production packages in the dist/production directory
    yarn run package

🛠 Development

  • Install dependencies
    yarn install
  • To watch file changes in development
    • Chrome
      yarn run dev:chrome
    • Firefox
      yarn run dev:firefox
    • Opera
      yarn run dev:opera

Testnet/testing-accounts for development

We set up our own internal testnet, which can be used for your development.
If this is not reachable please let us know.

Storybook.js

We have a working Storybook-setup and some components have stories.
You can find the deployed Storybook here: https://lbe-stories.netlify.app

Tests

E2E tests via playwright (using testing-library)

yarn run dev:chrome
yarn test:e2e

💁‍♀️ For now we only do E2E tests for Chrome

Unit tests tests via Jest

yarn test:unit

Run all tests

yarn test

💻 Load extension into browser

  • Chrome

    • Go to the browser address bar and type chrome://extensions
    • Check the Developer Mode button to enable it.
    • Click on the Load Unpacked Extension… button.
    • Select the extension’s dist directory: dist/development/chrome
    • To see the debug console check the inspect views in the extension details
  • Firefox

    • Load the Add-on via about:debugging => This Firefox as temporary Add-on. (about:debugging#/runtime/this-firefox)
    • Choose a .xpi file or the manifest.json file in the extension's dist directory: dist/development/firefox
    • debugging details
    • To see the debug console click "inspect" on the list of temporary extensions (about:debugging#/runtime/this-firefox)
  • Opera

    • Load the extension via opera:extensions
    • Check the Developer Mode and load as unpacked from extension’s extracted directory.

To connect to a remote development LND node you can use a test account

Debugging

Most logs are written to the background script. Make sure to "inspect" the background script to see the console. Help for Chrome, Firefox

⌨️ Production package files

  • yarn run package builds the extension for all the browsers to dist/production directory respectively.

You can also use a Docker container and run the yarn commands within a container:

docker run --rm --volume="$(pwd):/app" --workdir="/app" -t -i node:lts "yarn install && yarn run package"

Note: By default the manifest.json is set with version 0.0.0. The webpack loader will update the version in the build with that of the package.json version. In order to release a new version, update version in package.json and run script.

Native Companions

Alby supports native connectors to native applications on the host computer. For this the extension passes each call to a native application (using native messaging). This allows Alby also to connect to nodes behind Tor (through this native "proxy" application).

Currently, there is one native companion app available to connect to Tor nodes: https://github.com/getAlby/alby-companion-rs

Contributing

We welcome and appreciate new contributions.

Find a task

We use the Development Project Board to plan to-dos. Best choose something from the to-do column. (If there is nothing for you, feel free to pick something from the backlog)

Developer

Designer

Anyone

  • Have a look at this Readme. Can it be improved? Do you see typos? You can open a PR or reach out to us in our community chat.
  • You can help with translations

Creating a PR

When creating a PR please take this points as a reminder:

  • If there's not yet an issue for your PR please first create an issue with a proposal what you would like to do. This allows us to give feedback and helps you no wasting time and motivation
  • Think in iterations (babysteps)
    You can always start a PR and if you feel like adding on more things to it, better branch off and create a new i.e. draft-PR
  • Newly added components should have a unit-test
  • If you work on a more complex PR please join our community chat to get feedback, discuss the best way to tackle the challenge, and to ensure that there's no duplication of work. It's often faster and nicer to chat or call about questions than to do ping-pong comments in PRs

Code format & preferences

Code Editors

VS Code

For better support we reccomend these extensions:

Commit message format

Alby enforces Conventional Commits Specification

A specification for adding human and machine readable meaning to commit messages

Translations

Alby uses Weblate to manage translations for different locales. If you'd like to contribute, you can add translations here.

FAQs

Why not use Joule?

Joule is a full interface to manage a LND node. It only supports one LND account. Our goal is NOT to write a full UI for a Lightning Network node with all the channel management features, but instead to only focus on what is necessary for the web (for payment and authentication flows). We believe there are already way better management UIs. Also we focus on supporting multipe different node backends (non-custodial and custodial).

What is WebLN?

WebLN is a library and set of specifications for lightning apps and client providers to facilitate communication between apps and users' lightning nodes in a secure way. It provides a programmatic, permissioned interface for letting applications ask users to send payments, generate invoices to receive payments, and much more. This documentation covers how to use WebLN in your Lightning-driven applications.

Is there a bounty program and can I contribute?

Yes. Thanks to generous donors, Alby is able to offer several bounties. You can find them on our Wiki page. If you want to support Alby's bounty program, please donate here. We greatly appreciate your contribution! 🙏

Thanks

Based on the web extension starter kit: /abhijithvijayan/web-extension-starter heavily inspired by the super-amazing work of the Joule extension

⚡️Donations

Want to support the work on Alby?

Support the Alby team ⚡️[email protected]
You can also contribute to our bounty program: ⚡️[email protected]

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].