All Projects → darosior → lightning-qt

darosior / lightning-qt

Licence: BSD-3-Clause-Clear license
bitcoin-qt for lightningd

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to lightning-qt

trustedcoin
A lightningd plugin that replaces your own Bitcoin Core node with trusted public explorers.
Stars: ✭ 24 (-33.33%)
Mutual labels:  lightning, lightning-network, c-lightning
Zeus
A mobile Bitcoin/Lightning app for lnd, c-lightning, and Eclair node operators ⚡️
Stars: ✭ 175 (+386.11%)
Mutual labels:  lightning, lightning-network
lightningj
Core implementation of the lightningj API implementations.
Stars: ✭ 41 (+13.89%)
Mutual labels:  lightning, lightning-network
shango-lightning-wallet
Shango Lightning Wallet
Stars: ✭ 65 (+80.56%)
Mutual labels:  lightning, lightning-network
Paper
Lightning Network Paper
Stars: ✭ 136 (+277.78%)
Mutual labels:  lightning, lightning-network
Webln
Spec and client library for WebLN apps and providers
Stars: ✭ 165 (+358.33%)
Mutual labels:  lightning, lightning-network
Ln Service
Node.js interface to LND
Stars: ✭ 191 (+430.56%)
Mutual labels:  lightning, lightning-network
Plugins
Community curated plugins for c-lightning
Stars: ✭ 120 (+233.33%)
Mutual labels:  lightning, lightning-network
Spark Wallet
⚡️ A minimalistic wallet GUI for c-lightning, accessible over the web or through mobile and desktop apps.
Stars: ✭ 215 (+497.22%)
Mutual labels:  lightning, lightning-network
lightningtip
Get tips via the Lightning Network
Stars: ✭ 91 (+152.78%)
Mutual labels:  lightning, lightning-network
Eclair Mobile
An Android wallet for the Lightning Network
Stars: ✭ 231 (+541.67%)
Mutual labels:  lightning, lightning-network
Umbrel Os
Run Umbrel Bitcoin and Lightning node on a Raspberry Pi in one click
Stars: ✭ 132 (+266.67%)
Mutual labels:  lightning, lightning-network
Awesome Bitcoin Payment Processors
🌟 A curated list of Bitcoin payment processors enabling merchants, businesses and nonprofits to accept Bitcoin payments.
Stars: ✭ 129 (+258.33%)
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 (-8.33%)
Mutual labels:  lightning, lightning-network
Phoenix
Phoenix is a non custodial Bitcoin wallet using Lightning to send/receive payments.
Stars: ✭ 129 (+258.33%)
Mutual labels:  lightning, lightning-network
Lncli Web
Light-weight web client for the lnd daemon written in NodeJS / Angular.
Stars: ✭ 181 (+402.78%)
Mutual labels:  lightning, lightning-network
umbrel-middleware
RESTful Bitcoin and Lightning API for Umbrel
Stars: ✭ 21 (-41.67%)
Mutual labels:  lightning, lightning-network
Lightning Rfc
Lightning Network Specifications
Stars: ✭ 1,224 (+3300%)
Mutual labels:  lightning, lightning-network
Lndmanage
Channel management tool for lightning network daemon (LND) operators.
Stars: ✭ 114 (+216.67%)
Mutual labels:  lightning, lightning-network
Lndhub
Wrapper for Lightning Network Daemon. It provides separate accounts and trust minimization for end users
Stars: ✭ 203 (+463.89%)
Mutual labels:  lightning, lightning-network

pylightning-qt

bitcoin-qt for C-Lightning, as simple as : lightning-cli gui lightning-qt screenshot

What is it ?

lightning-qt is a Python plugin for C-lightning, a Lightning Network daemon. It enables the use of a bitcoin-qt-like Graphical User Interface (actually, part of the icons and forms have been taken from bitcoin-qt and modified) via the RPC interface.

Why ?

Currently lightning does not have a GUI, and I think that having one which looks like bitcoin-qt is great for people coming from bitcoin-core, which most of the C-Lightning users do (or have at least ever used bitcoin-qt). Having it directly available from the RPC is also quite convenient.

How to install it ?

The easiest way is to install it with bug :-). If you have lightningd running with the bug plugin loaded you can install lightning-qt with :

lightning-cli install_plugin lightning-qt

Otherwise the traditional solution :

git clone https://github.com/darosior/lightning-qt && cd lightning-qt
pip3 install -r requirements.txt
chmod a+x lightning-qt.py
# And just start lightningd like
lightningd --plugin=lightning-qt.py

You can also add lightning-qt directly in the default plugins directory so that it is automatically loaded on startup :

git clone https://github.com/darosior/lightning-qt ~/.lightning/plugins/lightning-qt
python3 -m pip install ~/.lightning/plugins/lightning-qt/requirements.txt
chmod a+x ~/.lightning/plugins/lightning-qt/lightning-qt.py
lightningd

Or you can even start it dynamically like (C-lightning v0.7.2 and above) :

git clone https://github.com/darosior/lightning-qt && cd lightning-qt
pip3 install -r requirements.txt
chmod a+x lightning-qt.py
# And just start lightningd like
lightning-cli plugin start lightning-qt.py

For more informations about plugins and their installations you can checkout the lightningd/plugins repository (which has a great list of plugins too).

How to use it ?

Just launch lightning-cli gui :D.
You can now also use lightning-qt in standalone mode. It will connect to a socket which path can be given as a command line option (and defaults to $HOME/.lightning/lightning-rpc) : this can be useful to use lightning-qt as a remote control for your lightning node hosted on another computer, you could for example share a socket through ssh and start lightning-qt listening on this socket i.e.

python3 lightning-qt --socket-path /path/to/unixdomain/socket

Contributing

Any contribution (issue, PR) is welcome. We use forms(ui files) to design pages : these are handled by PyQt5 with the pyuic5 command line tool (installed with pip install PyQt5). If you modify a ui file (you may want to use QDesigner), you can regenerate the Python code like :

pyuic5 forms/channelspage.ui -o forms/ui_channelsPage.py

Images are handled in the qrc file : if you modify this resource file (for instance to add an image/icon), you can regenerate the Python code with :

pyrcc5 gui.qrc -o resources.py

Also, if you help me on this project you may want to use the very handy auto-reload plugin. Please also note that PyQt5 has a very bad way to handle exception in slots : in short you cannot except a raised exception in a slot, so be carefull and happy debuging ;).

Licence

BSD 3-clauses clear

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