Difference between revisions of "Lnd"

From lightningwiki.net
Jump to navigation Jump to search
(update instructions)
Line 12: Line 12:
* [https://github.com/lightningnetwork/lnd/tree/master/docker Set up lnd on Docker]
* [https://github.com/lightningnetwork/lnd/tree/master/docker Set up lnd on Docker]
* [https://github.com/Stadicus/guides/blob/master/raspibolt/README.md Beginner’s Guide to Lightning on a Raspberry Pi by Stadicus]
* [https://github.com/Stadicus/guides/blob/master/raspibolt/README.md Beginner’s Guide to Lightning on a Raspberry Pi by Stadicus]
= Updating to a specific tag =
If you build from source, go to the srv dir and do:
# cd $GOPATH/src/github.com/lightningnetwork/lnd
# git fetch --tags
# git checkout v0.5.2-beta
# make
# make install


= Links / resources =
= Links / resources =

Revision as of 06:48, 7 February 2019

About

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

Template:TODO

Updating to a specific tag

If you build from source, go to the srv dir and do:

  1. cd $GOPATH/src/github.com/lightningnetwork/lnd
  2. git fetch --tags
  3. git checkout v0.5.2-beta
  4. make
  5. make install

Links / resources

Template:TODO