Lnd
About[edit]
The Lightning Network Daemon (lnd) - is a complete implementation of a Lightning Network node. lnd has several pluggable back-end chain services including btcd (a full-node), bitcoind, and neutrino (a new experimental light client). The project's codebase uses the btcsuite set of Bitcoin libraries, and also exports a large set of isolated re-usable Lightning Network related libraries within it.
lnd fully conforms to the Lightning Network specification (BOLTs). BOLT stands for: Basis of Lightning Technology. The specifications are currently being drafted by several groups of implementers based around the world including the developers of lnd. The set of specification documents as well as our implementation of the specification are still a work-in-progress.
Howto[edit]
You can help by adding more information. Suggestion: Add more pages with HOWTOs, or links to HOWTOs.
- LND Node on Windows: https://medium.com/@martinschrer/installing-a-mainnet-lnd-node-on-windows-and-accessing-it-on-an-iphone-da1e63a613cb
- Lnd + Zap on bitcoind medium post by Pierre Rochard
- Setting up a LND node
- Using Autopilot on LND
- Set up lnd on Docker
- Beginner’s Guide to Lightning on a Raspberry Pi by Stadicus
Updating to a specific tag[edit]
If you build from source, go to the src dir and do:
- cd $GOPATH/src/github.com/lightningnetwork/lnd
- git fetch --tags
- git checkout v0.5.2-beta
- make
- make install
Links / resources[edit]
You can help by adding more information. Suggestion: Add more links.