Welcome to LNDg, an advanced web interface designed for analyzing LND data and automating node management tasks.
Choose your preferred installation method:
- 1-Click Installation: Easily install LNDg directly from popular platforms like Umbrel, Citadel, Start9 and RaspiBlitz.
- Docker Installation: Ideal for users familiar with Docker and Docker Compose.
- Manual Installation: If you prefer a hands-on approach to set up LNDg.
# Clone the repository
git clone https://github.com/cryptosharks131/lndg.git
# Change directory to the repository
cd lndg
# Customize the docker-compose.yaml file
nano docker-compose.yaml
Replace the contents of docker-compose.yaml
with your desired volume paths and settings. An example configuration is shown below.
services:
lndg:
build: .
volumes:
- /home/<user>/.lnd:/root/.lnd:ro
- /home/<user>/<path-to>/lndg/data:/app/data:rw
command:
- sh
- -c
- python initialize.py -net 'mainnet' -rpc '127.0.0.1:10009' -wn && python controller.py runserver 0.0.0.0:8889 > /var/log/lndg-controller.log 2>&1
network_mode: "host"
# Deploy the Docker image
docker-compose up -d
# Retrieve the admin password for login
nano data/lndg-admin.txt
- This example configuration will host LNDg at http://0.0.0.0:8889. Use the machine IP to reach the LNDg instance.
- Log in to LNDg using the provided password and the username
lndg-admin
.
docker-compose down
docker-compose build --no-cache
docker-compose up -d
# OPTIONAL: remove unused builds and objects
docker system prune -f
- Clone the repository:
git clone https://github.com/cryptosharks131/lndg.git
- Change the directory into the repository:
cd lndg
- Ensure you have Python virtualenv installed:
sudo apt install virtualenv
- Set up a Python 3 virtual environment:
virtualenv -p python3 .venv
- Install the required dependencies:
.venv/bin/pip install -r requirements.txt
- Initialize necessary settings for your Django site:
.venv/bin/python initialize.py
- use
.venv/bin/python initialize.py --help
to see additional options - add
-wn | --whitenoise
option to serve static (.js, .css) files (required if installing manually)- if whitenoise option is provided, you'll need to install it via
.venv/bin/pip install whitenoise
- if whitenoise option is provided, you'll need to install it via
- use
- The initial login user is
lndg-admin
, and the password will be genereted and stored in:data/lndg-admin.txt
- Run the server using a Python development server:
.venv/bin/python manage.py runserver 0.0.0.0:8889
Step 2 - Setup Backend Controller For Data, Automated Rebalancing, HTLC Stream Data and p2p-trade-secrets
The file controller.py
orchastrates the services needed to update the backend database with the most up-to-date information, rebalance any channels based on your LNDg dashboard settings, listen for any failure events in your HTLC stream and serves the p2p trade secrets.
Recommended Setup with Supervisord (least setup) or Systemd (most compatible):
-
Systemd (2 options)
- Option 1 - Bash script install:
sudo bash systemd.sh
- Option 2 - Manual Setup Instructions
- Option 1 - Bash script install:
-
Supervisord
- Configure Supervisord by running:
.venv/bin/python initialize.py -sd
- Install Supervisord:
.venv/bin/pip install supervisor
- Start Supervisord:
supervisord
- Configure Supervisord by running:
Alternatively, you may create your own task for these files using your preferred tool (task scheduler, cron job, etc).
- Make sure you are in the LNDg folder:
cd lndg
- Pull the new files from the repository:
git pull
- Migrate any database changes:
.venv/bin/python manage.py migrate
- If you're not using default settings for LND or you'd like to run on a network other than
mainnet
, use the correct flags in step 6 (seeinitialize.py --help
) or edit the variables directly inlndg/settings.py
. - You can not run the development server outside of DEBUG mode due to static file issues. To address this, install and configure Whitenoise by running the following command:
.venv/bin/pip install whitenoise && rm lndg/settings.py && .venv/bin/python initialize.py -wn
. (see 6.1) - You can always update the
lndg/settings.py
file by directly modifying it or re-running the script.venv/bin/python initialize.py <options> -f
. (see 6) - If you plan to run this site continuously, it's advisable to set up a proper web server to host it (see Nginx below).
- You can manage your login credentials from the admin page, accessible at
http:<your-hosting-lndg-ip:port>/lndg-admin
. - If you encounter issues accessing the site, ensure that any firewall is open on port 8889, where LNDg is running.
You can serve the dashboard at all times using a webserver instead of the development server. Using a webserver will serve your static files, and installing whitenoise is not required when running in this manner. Any webserver can be used to host the site if configured properly. A bash script has been included to help aid in the setup of an nginx webserver.
To set up the nginx webserver, run the following command:
sudo bash nginx.sh
When updating your LNDg installation, follow the same steps as described above. However, after updating, you will also need to restart the uWSGI service to apply the changes to the user interface (UI).
To restart the uWSGI service, use the following command:
sudo systemctl restart uwsgi.service
Optionally, you may chose to run LNDg using a postgres database instead of the default sqlite3.
A setup guide can be found here: Postgres Setup
LNDg will track the changes your peers make to channel policies you have in open channels and any connection events that may happen with those channels.
You can use LNDg to batch open up to 10 channels at a time with a single transaction. This can help to significantly reduce the channel open fees incurred when opening multiple channels.
You can use LNDg to add, monitor, or remove watch towers from the LND node.
LNDg will make suggestions on an adjustment to the current set outbound fee rate for each channel. This uses historical payment and forwarding data over the last 7 days to drive suggestions. You can use the Auto-Fees feature in order to automatically act upon the suggestions given.
You may see another adjustment right after setting the new suggested fee rate on some channels. This is normal, and you should wait ~24 hours before changing the fee rate again on any given channel.
LNDg will make suggestions for new peers to open channels to based on your node's successful routing history.
- Volume Score - A score based upon both the count of transactions and the volume of transactions routed through the peer
- Savings By Volume (ppm) - The amount of sats you could have saved during rebalances if you were peered directly with this node over the total amount routed through the peer
- Outbound Flow Details - This shows the amount routed outbound next to the amount rebalanced in
- Revenue Details - This shows the revenue earned on the left, the profit (revenue - cost) in the middle, and the assisted revenue (amount earned due to this channel's inbound flow) on the right
- Inbound Flow Details - This shows the amount routed inbound next to the amount rebalanced out
- Updates - This is the number of updates the channel has had and is directly correlated to the space it takes up in channel.db
The initial login username is lndg-admin
but can be easily modified by going to the page found here: /lndg-admin
LNDg will make suggestions for actions to take around Auto-Rebalancing.
LNDg will automatically act upon the suggestions it makes on the Suggests AR Actions page.
LNDg will listen for failure events in your htlc stream and record them to the dashboard when they occur.
The following data can be accessed at the /api endpoint:
payments
paymenthops
invoices
forwards
onchain
peers
channels
rebalancer
settings
pendinghtlcs
failedhtlcs
LNDg will automatically try to resolve any channels that are seen as inactive, no more than every 3 minutes per peer.
LNDg can update your fees on a channel every 24 hours (default) if there is a suggestion listed on the fee rates page. You must make sure the AF-Enabled
setting is set to 1
and that individual channels you want to be managed are also set to enabled
. You can view a log of AF changes by opening the Autofees tab.
You can customize some settings of AF by updating the following settings:
AF-FailedHTLCs
- The minimum daily failed HTLCs count in which we could trigger a fee increase (depending on flow)
AF-Increment
- The increment size of our potential fee changes, all fee suggestions will be a multiple of this value
AF-MaxRate
- The maximum fee rate in which we can adjust to
AF-MinRate
- The minimum fee rate in which we can adjust to
AF-Multiplier
- Multiplier to increase incremental movements, the larger the multiplier, the larger the incremental moves
AF-UpdateHours
- Change the number of hours that must pass since the last fee rate change before AF may adjust the fee rate again
AF-LowLiqLimit
- The liquidity (%) a channel must drop below before running the Low Liquidity
fee algorithm
AF-ExcessLimit
- The liquidity (%) a channel must go above before running the Excess Liquidity
fee algorithm
AF Notes:
- AF changes only trigger after
AF-UpdateHours
hours of no fee updates via LNDg - Channels with less than
AF-LowLiqLimit
outbound liquidty will increase based on failed HTLC counts and incoming flow - Channels with more than
AF-ExcessLimit
outbound liquidty will decrease based on no flows or assisted revenues - Channels between the previous two groups will increase or decrease based on flow
Auto-Rebalancer - Quick Start Guide
The objective of the Auto-Rebalancer is to "refill" the liquidity on the local side (i.e. OUTBOUND) of profitable and lucrative channels. So that, when a forward comes in from another node there is always enough liquidity to route the payment and in return collect the desired routing fees.
- The AR variable
AR-Enabled
must be set to 1 (enabled) in order to start looking for new rebalance opportunities. (default=0) - The AR variable
AR-Target%
defines the % size of the channel capacity you would like to use for rebalance attempts. Example: If a channel size is 1M Sats and AR-Target% = 0.05 LNDg will select an amount of 5% of 1M = 50K for rebalancing. (default=5) - The AR variable
AR-Time
defines the maximum amount of time (minutes) we will spend looking for a route. (default=5) - The AR variable
AR-MaxFeeRate
defines the maximum amount in ppm a rebalance attempt can ever use for a fee limit. This is the maximum limit to ensure the total fee does not exceed this amount. Example: AR-MaxFeeRate = 800 will ensure the rebalance fee is always less than 800 ppm. (default=100) - The AR variable
AR-MaxCost%
defines the maximum % of the ppm being charged on theINBOUND
receving channel that will be used as the fee limit for the rebalance attempt. Example: If your fee to node A is 1000ppm and AR-MaxCost% = 0.5 LNDg will use 50% of 1000ppm = 500ppm max fee limit for rebalancing. (default=65) - The AR variable
AR-Outbound%
helps identify all the channels that would be a candidate for rebalancing targetd channels. Rebalances will only consider anyOUTBOUND
channel that has more outbound liquidity than the currentAR-Outbound%
setting AND the channel is not currently being targeted as anINBOUND
receving channel for rebalances. Example: AR-Outboud% = 0.6 would make all channels with an outbound capacity of 60% or more AND not enabled under AR on the channel line to be a candidate for rebalancing. (default=75) - Channels need to be targeted in order to be refilled with outbound liquidity and in order to control costs as a first prioirty, all calculations are based on the specific
INBOUND
receving channel. - Enable
INBOUND
receving channels you would like to target and set an inbound liquidityTarget%
on the specific channel. Rebalance attempts will be made until inbound liquidity falls below this channel settting. - The
INBOUND
receving channel is the channel that later routes out real payments and earns back the fees paid. Target channels that have lucrative outbound flows. - Attempts that are successful or attempts with only incorrect payment information are tried again immediately. Example: If a rebalancing for 50k was sucessful, AR will try another 50k immediately with the same parameters.
- Attempts that fail for other reasons will not be tried again for 30 minutes after the stop time. This allows the liquidity in the network to move around for 30 mins before trying another rebalancing attempt that previously failed. The 30 minute window can be customized by updating the
AR-WaitPeriod
setting.
Additional customization options:
AR-Autopilot
- Automatically act upon suggestions on the AR Actions page. (default=0)AR-WaitPeriod
- How much time (minutes) AR should wait before scheduling a channel that has recently failed an attempt. (default=30)AR-Variance
- How much to randomly vary the target rebalance amount by this % of the target amount. (default=0)AR-Inbound%
- The defaultiTarget%
value to assign to new channels. (default=100)AR-APDays
- The number of days of historical data AP should use to decide actions to take. (default=7)AR-Workers
- Define how many parallel rebalances to spin up at once. (default=1)
-
Update Channel Specific Settings
a. Go to Active Channels section
b. Find the channels you would like to activate for rebalancing (this refills its outbound)
c. On far right column Click the Enable button to activate rebalancing
d. The dashboard will refresh and show AR-Target 100%
e. Adjust the AR-Target to desired % of liquidity you want to keep on remote INBOUND side. Example select 0.60 if you want 60% of the channel capacity on Remote/INBOUND side which would mean that there is 40% on Local/OUTBOUND side
f. Hit Enter
g. Dashboard will refresh in the browser
h. Make sure you enable all channels that are valuable outbound routes for you to ensure they are not used for filling up routes you have targeted (you can enable and target 100% in order to avoid any action on this channel from the rebalancer) -
Update Global Settings
a. Go to section Update Auto Rebalancer Settings
b. Select the global settings (sample below):
c. Click OK button to submit
d. Once enabled is set to 1 in the global settings - the rebalancer will become active
Enabled: 1
Target Amount (%): 0.03
Target Time (min): 3
Target Outbound Above (%): 0.4
Global Max Fee Rate (ppm): 500
Max Cost (%): 0.6
- Go to section Last 10 Rebalance Requests - that will show the list of the rebalancing queue and status.
If you want a channel not to be picked for rebalancing (i.e. it is already full with OUTBOUND capacity that you desire), enable the channel and set the AR-Target% to 100. The rebalancer will ignore the channel while selecting the channels for outbound candidates and since its INBOUND can never be above 100% it will never trigger a rebalance.