Lightning Network Daemon
Go to file
2018-03-08 21:12:05 -05:00
aezeed aezeed: add a set of benchmarks 2018-03-01 17:10:54 -08:00
autopilot
brontide
chainntnfs chainntnfs/neutrinonotify: log height hint for spend notifications 2018-03-01 16:49:28 -08:00
channeldb channeldb: replace raw keys in ChannelConfig with keychain.KeyDescriptor 2018-03-06 16:04:01 -05:00
cmd/lncli cmd/lncli: remove the --witness_only flag from walletbalance 2018-03-06 16:04:05 -05:00
contractcourt contractcourt: update test due to recent SignDescriptor API changes 2018-03-06 16:04:06 -05:00
contrib
discovery discovery: avoid always validating ECDSA sigs by asking router if item is fresh 2018-03-06 13:34:51 -05:00
docker
docs docs/grpc/ruby: fix incorrect documentation in ruby.md value to amt (#799) 2018-03-02 19:16:22 -08:00
htlcswitch htlcswitch/test_utils: use new ErrorEncrypter and HopIterator ifaces 2018-03-08 21:12:05 -05:00
keychain keychain/btcwallet: convert Locked() -> IsLocked() 2018-03-08 20:07:27 -05:00
lnrpc lnrpc: update photo comments to fix api.lightning.community tool 2018-03-08 17:06:34 -08:00
lntest
lnwallet Merge pull request #769 from Roasbeef/new-lightning-key-derivation 2018-03-06 17:21:55 -05:00
lnwire lnwire: make ErrorCode satisfy error interface 2018-03-06 22:02:34 +01:00
macaroons
multimutex
routing routing: add new methods to check the freshness of an edge/node 2018-03-06 13:34:48 -05:00
shachain
torsvc
walletunlocker walletunlocker: modify service to implement new 2-step wallet creation 2018-03-05 11:07:06 -05:00
zpay32
.gitignore
.travis.yml
breacharbiter_test.go multi: update packages due to recent SignDescriptor and WalletController changes 2018-03-06 16:04:03 -05:00
breacharbiter.go breacharbiter: use EstimateFeePerVSize 2018-02-26 22:42:26 +01:00
chainparams.go
chainregistry.go lnd: populate the secret key ring in the lnwallet config 2018-03-06 16:04:05 -05:00
chancloser.go
config.go
doc.go
fundingmanager_test.go multi: update packages due to recent SignDescriptor and WalletController changes 2018-03-06 16:04:03 -05:00
fundingmanager.go Merge pull request #769 from Roasbeef/new-lightning-key-derivation 2018-03-06 17:21:55 -05:00
glide.lock glide: update to most recent batch replay 2018-03-08 21:11:12 -05:00
glide.yaml glide: update to most recent batch replay 2018-03-08 21:11:12 -05:00
gotest.sh
invoiceregistry.go
LICENSE
lnd_test.go lnd_test: bump async bidrect timeout to account sphinx replay writes 2018-03-08 21:12:05 -05:00
lnd.go lnd: verify proper keychain derivation version upon initial creation 2018-03-06 16:04:06 -05:00
log.go
logo.png
mock.go lnd: use first key in keychain.KeyFamilyNodeKey as our nodeID 2018-03-06 16:04:04 -05:00
nodesigner.go
nursery_store_test.go
nursery_store.go
peer_test.go peer test: remove var casting 2018-02-26 22:42:27 +01:00
peer.go peer: use EstimateFeePerVSize 2018-02-26 22:42:26 +01:00
pilot.go lnd: use first key in keychain.KeyFamilyNodeKey as our nodeID 2018-03-06 16:04:04 -05:00
README.md
release.sh
rpcserver.go rpc: update RPC server to disallow p2pkh adds, assume segwit for ConfirmedBalance 2018-03-06 16:04:04 -05:00
sample-lnd.conf docs: clarify usage of externalip in sample-lnd.conf 2018-03-06 16:03:26 -05:00
server_test.go
server.go server: initialize server with persistent sphinx router 2018-03-08 21:12:05 -05:00
signal.go
test_utils.go multi: update packages due to recent SignDescriptor and WalletController changes 2018-03-06 16:04:03 -05:00
utxonursery_test.go multi: update packages due to recent SignDescriptor and WalletController changes 2018-03-06 16:04:03 -05:00
utxonursery.go utxonursery: use EstimateFeePerVSize 2018-02-26 22:42:26 +01:00
version.go
witness_beacon.go

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 fully conforms 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, the current status of lnd's BOLT compliance is:

  • BOLT 1: Base Protocol
  • BOLT 2: Peer Protocol for Channel Management
  • 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
  • BOLT 9: Assigned Feature Flags
  • BOLT 10: DNS Bootstrap and Assisted Node Location
  • BOLT 11: Invoice Protocol for Lightning Payments

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