Go to file
Johan T. Halseth 7662ea5d4d invoice: Add invoice package
The invoice package can be used to encoded and decode invoices
in the format defined in BOLT-0011. This format utilizes bech32
encoding to create invoices that can be shared and understood
by the different Lightning implementations.
2017-09-19 12:05:58 -07:00
autopilot
brontide
chainntnfs
channeldb channeldb: check chanIndex bucket for nilness instead of edges 2017-09-19 05:40:29 +02:00
cmd/lncli
contrib
discovery
docker docker: don't specify datadir in lnd container 2017-09-19 05:42:48 +02:00
docs
htlcswitch config+htlclink+peer: htlc hodl mode! 2017-09-19 11:31:52 -07:00
invoice invoice: Add invoice package 2017-09-19 12:05:58 -07:00
lnrpc
lnwallet lnwallet: move txout serialization out of lnwire 2017-09-14 13:56:25 +02:00
lnwire lnwire: export SerializeSigToWire and DeserializeSigFromWire 2017-09-19 12:05:58 -07:00
macaroons
routing
shachain
zpay32
.gitignore
.travis.yml
LICENSE
README.md README: fix incorrect links to dev sites 2017-09-18 20:26:23 -07:00
breacharbiter.go
breacharbiter_test.go
chainparams.go
chainregistry.go
config.go config+htlclink+peer: htlc hodl mode! 2017-09-19 11:31:52 -07:00
doc.go
features.go
fundingmanager.go funding: properly display pending chan ID within logs 2017-09-18 19:33:43 +02:00
fundingmanager_test.go
glide.lock build: update to latest build of neutrino to face race condition 2017-09-14 01:08:30 +02:00
glide.yaml build: update to latest build of neutrino to face race condition 2017-09-14 01:08:30 +02:00
gotest.sh
invoiceregistry.go
lnd.go rpc: add additional go 1.8 TLS cipher suites 2017-09-19 05:45:31 +02:00
lnd_test.go test: within testListPayments also wait for bob to learn of channel 2017-09-18 17:16:47 -07:00
log.go
mock.go
networktest.go
networktest_test.go
nodesigner.go
peer.go config+htlclink+peer: htlc hodl mode! 2017-09-19 11:31:52 -07:00
peer_test.go
pilot.go
release.sh
rpcserver.go
server.go
signal.go
test_utils.go
utxonursery.go
utxonursery_test.go
version.go

README.md

Lightning Network Daemon

Build Status MIT licensed Irc Godoc Coverage Status

The Lightning Network Daemon (lnd) - is a complete implementation of a Lightning Network node and currently deployed on testnet3 - the Bitcoin Test Network. lnd has several pluggable back-end chain services including btcd (a full-node) 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. In the current state lnd is capable of:

  • Creating channels.
  • Closing channels.
  • Completely managing all channel states (including the exceptional ones!).
  • Maintaining a fully authenticated+validated channel graph.
  • Performing path finding within the network, passively forwarding incoming payments.
  • Sending outgoing onion-encrypted payments through the network.
  • Updating advertised fee schedules.
  • Automatic channel management (autopilot).

Lightning Network Specification Compliance

lnd doesn't yet fully conform to the Lightning Network specification (BOLTs). BOLT stands for: Basic of Lightning Technologies. 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. With that said, lnd the current status of lnd's BOLT compliance is:

  • BOLT 1: Base Protocol
  • BOLT 2: Peer Protocol for Channel Management
    • lnd has not yet integrated full channel re-transmission upon reconnection
  • BOLT 3: Bitcoin Transaction and Script Formats
  • BOLT 4: Onion Routing Protocol
  • BOLT 5: Recommendations for On-chain Transaction Handling
  • BOLT 7: P2P Node and Channel Discovery
  • BOLT 8: Encrypted and Authenticated Transport

Developer Resources

The daemon has been designed to be as developer friendly as possible in order to facilitate application development on top of lnd. Two primary RPC interfaces are exported: an HTTP REST API, and a gRPC service. The exported API's are not yet stable, so be warned: they may change drastically in the near future.

An automatically generated set of documentation for the RPC APIs can be found at api.lightning.community. A set of developer resources including talks, articles, and example applications can be found at: dev.lightning.community.

Finally, we also have an active Slack where protocol developers, application developers, testers and users gather to discuss various aspects of lnd and also Lightning in general.

Installation

In order to build from source, please see the installation instructions.

IRC

  • irc.freenode.net
  • channel #lnd
  • webchat

Further reading