⚡
Lightning Node Management
🇺🇸 English
🇺🇸 English
  • Contents
  • Lightning basics
  • Create inbound liquidity
  • Create outbound liquidity
  • Comparison table of software implementations
  • Comparison table of lightning channel markets
  • Node Types
    • Merchant
    • Spending
    • Routing
  • Advanced Tools
    • lnd.conf example
    • Advanced and automated fee settings
    • Set up an LND watchtower and connect a client
    • Methods to create a balanced channel with a trusted peer
    • Pool usage notes
    • Bos Score
  • Technicals
    • Connecting to a lightning node remotely
    • High onchain fee environment
    • Compact the LND database (channel.db)
    • Manage the LND onchain funds in Electrum Wallet
  • Recovery
    • Resources for LND
    • Resources for Core Lightning
  • Privacy
    • Resources on Lightning privacy
    • VPN tunnels
  • Hardware deployment
    • Hardware recommendations
    • RaspiBolt
    • RaspiBlitz
      • charge-lnd
      • Balance of Satoshis Telegram Bot
      • LND updates
      • Bitcoin Core updates
      • VPN and firewall setup
    • TrueNAS (FreeBSD) node
      • aliases
      • Balance of Satoshis
      • Lightning Terminal
      • Circuitbreaker
      • LNtop
      • LND notes
      • stream-lnd-htlcs
      • Suez
      • Tailscale
      • Connect Zeus
  • Donate
    • Donations
Powered by GitBook
On this page
  • Installation
  • Run first to create the default config
  • Config
  • Run

Was this helpful?

Edit on GitHub
  1. Hardware deployment
  2. TrueNAS (FreeBSD) node

LNtop

https://github.com/edouardparis/lntop

For some reason the terminal freezes when running LNtop, but still provides valuable info

Installation

# dependencies
pkg install -y git go

# install with go
go install github.com/edouardparis/lntop@latest

# or from source
git clone https://github.com/edouardparis/lntop.git
# install
cd lntop && && go build && go install ./...

Run first to create the default config

/root/go/bin/lntop

Config

nano /root/.lntop/config.toml
  • Change to:

cert = "/var/db/lnd/tls.cert"
macaroon = "/var/db/lnd/data/chain/bitcoin/mainnet/readonly.macaroon"

Run

/root/go/bin/lntop

(as my last attempt would need to close the terminal to exit)

PreviousCircuitbreakerNextLND notes

Last updated 1 year ago

Was this helpful?