lnd version, "hacked" to enable seedless restore from xprv + scb
Go to file
BitfuryLightning 327768f4ad routing: Move tools inside lnd. Refactor and delete unneeded stuff
Use [33]byte for graph vertex representation.
Delete unneeded stuff:
1. DeepEqual for graph comparison
2. EdgePath
3. 2-thread BFS
4. Table transfer messages and neighborhood radius
5. Beacons

Refactor:
1. Change ID to Vertex
2. Test use table driven approach
3. Add comments
4. Make graph internal representation private
5. Use wire.OutPoint as  EdgeId
6. Decouple routing messages from routing implementation
7. Delete Async methods
8. Delete unneeded channels and priority buffer from manager
9. Delete unneeded interfaces in internal graph realisation
10. Renamed ID to Vertex
2016-11-23 20:37:43 -06:00
brontide brontide: the encrypted packet length is no longer the associated data 2016-11-14 15:10:54 -08:00
chainntnfs chainntfns: eliminate dead lock possibility when dispatching notifications 2016-09-22 19:12:22 -07:00
channeldb channeldb: move .SyncVersions() into .Open(), minor migration cleanups 2016-11-22 16:00:02 -06:00
cmd/lncli routing: Move tools inside lnd. Refactor and delete unneeded stuff 2016-11-23 20:37:43 -06:00
docker docker: revamp docker set up to allow for an LN test cluster 2016-08-29 15:18:04 -07:00
docs docs: add code contribution guidelines 2016-11-08 12:31:01 -08:00
elkrem elkrem: remove extra prints from serdes tests 2016-07-25 16:37:59 -07:00
lnrpc lnrpc: added rpc support for querying a channel's satoshis sent/received 2016-11-22 14:57:03 -06:00
lnwallet lnwallet: add HTLC count validation 2016-11-23 20:02:29 -06:00
lnwire routing: Move tools inside lnd. Refactor and delete unneeded stuff 2016-11-23 20:37:43 -06:00
routing routing: Move tools inside lnd. Refactor and delete unneeded stuff 2016-11-23 20:37:43 -06:00
shachain multi: change all imports to roasbeef's forks 2016-05-15 17:22:37 +03:00
uspv uspv: update to new upstream btcd api to fix compile errors 2016-05-22 22:04:25 -07:00
.gitignore Add RPC to show current total available channel capacity #29 (#35) 2016-09-15 12:00:56 -07:00
.travis.yml build: update travis to build against go 1.7.3 2016-10-26 14:28:51 -07:00
config.go config: add --pendingchannel lnd flag 2016-10-22 02:11:18 +03:00
doc.go add some daemon related skeleton files 2015-12-26 00:09:17 -06:00
fundingmanager.go routing: Move tools inside lnd. Refactor and delete unneeded stuff 2016-11-23 20:37:43 -06:00
glide.lock routing: Move tools inside lnd. Refactor and delete unneeded stuff 2016-11-23 20:37:43 -06:00
glide.yaml routing: Move tools inside lnd. Refactor and delete unneeded stuff 2016-11-23 20:37:43 -06:00
htlcswitch.go routing: Move tools inside lnd. Refactor and delete unneeded stuff 2016-11-23 20:37:43 -06:00
invoiceregistry.go invoices: properly set pointer in invoiceSubscription to fix panic 2016-11-21 21:33:34 -06:00
LICENSE add copyright, license and discouragement in readme 2016-01-16 00:13:11 -08:00
lnd_test.go general: fix typos, rename variables, add comments 2016-11-23 20:02:29 -06:00
lnd.go channeldb: move .SyncVersions() into .Open(), minor migration cleanups 2016-11-22 16:00:02 -06:00
log.go lnd: introduce the utxoNursery which incubates outputs until maturity 2016-09-12 19:07:39 -07:00
networktest_test.go netharness: remove test for the node restart method 2016-11-16 12:46:45 -08:00
networktest.go test: add a callback to networkHarness.RestartNode 2016-11-21 21:08:52 -06:00
params.go lnd: properly switch RPC port with target net change 2016-07-13 18:37:59 -07:00
peer_test.go plasma: rough draft of peer struct 2015-12-20 15:16:38 -06:00
peer.go routing: Move tools inside lnd. Refactor and delete unneeded stuff 2016-11-23 20:37:43 -06:00
README.md README: fix typo in build instructions 2016-10-16 15:39:21 -07:00
rpcserver.go routing: Move tools inside lnd. Refactor and delete unneeded stuff 2016-11-23 20:37:43 -06:00
server.go routing: Move tools inside lnd. Refactor and delete unneeded stuff 2016-11-23 20:37:43 -06:00
signal.go create signal.go to handle SIGINT's 2016-03-22 18:42:01 -07:00
utxonursery.go utxonursery: expand duties to channel contract breach retribution 2016-11-21 13:28:56 -06:00
version.go create version.go file 2016-03-22 18:40:54 -07:00

lnd - Lightning Network Daemon

Build Status

This repo is preliminary work on a lightning network peer-to-peer node and wallet.

It's currently being tested on Segnet4, where malleability has been solved with segwit.

This version of Lnd is not yet fully-operational, but a proof of concept on Segnet4 will likely exist soon. The projection is it will be operational before the necessary malleability soft-forks are into bitcoin mainnet (may be significantly before if there are any delays in mainnet malleability fix).

Don't try to port it to mainnet or an altcoin and use it today! No really. Lightning transactions will be fast, but for now, please wait just a little bit.

Installation

  • In order to build form source, the following build dependancies are required:
    • Go 1.5 or 1.6

      Installation instructions can be found here: http://golang.org/doc/install. It is recommended to add $GOPATH/bin to your PATH at this point. Note: If you are building with Go 1.5, then you'll need to enable the vendor experiment by setting the GO15VENDOREXPERIMENT environment variable to 1. If you're using Go 1.6 or later, then it is safe to skip this step.

    • Glide

      This project uses Glide to manage depdnancies as well as to provide reproducable builds. To install Glide, execute the following command (assumes you already have Go properly installed):

      $ go get -u github.com/Masterminds/glide

With the prelimnary steps completed, to install lnd, lncli, and all related depenancies run the following commands:

$ git clone https://github.com/lightningnetwork/lnd $GOPATH/src/github.com/lightningnetwork/lnd
$ cd $GOPATH/src/github.com/lightningnetwork/lnd
$ glide install
$ go install . ./cmd/...

Updating

To update your version of lnd to the latest version run the following commands:

$ cd $GOPATH/src/github.com/lightningnetwork/lnd
$ git pull && glide install
$ go install . ./cmd/...

Packages and Utilities

chainntfs

A package centered around a generic interface for receiving transaction/confirmation based notifications concerning the blockchain. Such notifications are required in order for pending payment channels to be notified once the funding transaction gains a specified number of confirmations, and in order to catch a counter-party attempting a non-cooperative close using a past commitment transaction to steal funds.

At the moment, it only has a single concrete implementation: using btcd's websockets notifications. However, more implementations of the interface are planned, such as electrum, polling via JSON-RPC, Bitcoin Core's ZeroMQ notifications, and more.

channeldb

lnd's primary datastore. It uses a generic interface defined in walletdb allowing for usage of any storage backend which adheres to the interface. The current concrete implementation used is driven by bolt. channeldb is responsible for storing state such as meta-data concerning the current open channels, closed channels, past routes we used, fee schedules within the network, and information about remote peers (ID, uptime, reputation, etc).

cmd / lncli

A command line to query and control a running lnd. Similar to bitcoin-cli

cmd / lnshell

Interactive shell for commands to direct the lnd node. Will probably be merged into lnd soon as a command line option.

elkrem

Library to send and receive a tree structure of hashes which can be sequentially revealed. If you want to send N secrets, you only need to send N secrets (no penalty there) but the receiver only needs to store log2(N) hashes, and can quickly compute any previous secret from those.

This is useful for the hashed secrets in LN payment channels.

lndc

Library for authenticated encrypted communication between LN nodes. It uses chacha20_poly1305 for the symmetric cipher, and the secp256k1 curve used in bitcoin for public keys. No signing is used, only two ECDH calculations: first with ephemeral key pairs and second with persistent identifying public keys.

lnrpc

lnd's RPC interface. Currently gRPC, a high-performance RPC framework is used. gRPC provides features such as a stub-based client interface in several languages, streaming RPCs, payload agnostic request/response handling, and more. In addition to gRPC, lnd will also offer a basic REST-based http RPC interface. For now, connections are not encrypted, or authenticated. For authentication, macaroons will likely be integrated due to their simplicity, flexibility, and expressiveness.

lnstate

In-progress update which improves current implementation of channel state machine to allow for higher throughput.

lnwallet

An application specific, yet general Bitcoin wallet which understands all the fancy script, and transaction formats needed to transact on the Lightning Network. The interface, and interaction with the core wallet logic has been designed independent of any peer-to-peer communication. The goal is to make lnwallet self-contained, and easily embeddable within future projects interacting with the Lightning Network. The current state machine for channel updates is blocking, only allowing one pending update at a time. This will soon be replaced in favor of the highly concurrent, non-blocking state machine within lnstate.

lnwire

Library of messages for Lightning Network node to node communications. Messages for opening and closing channels, as well as updating and revoking channel states are described here.

shachain

An implementation of Rusty Russell's 64-dimensional shachain.

uspv

Wallet library to connect to bitcoin nodes and build a local SPV and wallet transaction state.