lnd version, "hacked" to enable seedless restore from xprv + scb
Go to file
Olaoluwa Osuntokun 48491a7fee
channeldb: fix commit key state corruption bug
This commit fixes a bug caused by overriding the prefix key for storing
commitment keys with the first few bytes of a channel’s channel point.

Once a channel was deleted, then all future channels would result in a
panic due to a nil pointer deference since the prefix key was mutated,
causing all future stores/gets to fail.
2016-07-12 17:00:08 -07:00
chainntfs chainntfs: include height in spending+conf notifications 2016-06-21 13:12:39 -07:00
channeldb channeldb: fix commit key state corruption bug 2016-07-12 17:00:08 -07:00
cmd/lncli cmd/lncli: implement pendingchannels for the cli client 2016-07-07 15:36:42 -07:00
elkrem elkrem: add method to export sender root 2016-06-30 11:34:53 -07:00
lndc lnwallet: correct comment in revoke derivation explanation 2016-07-05 16:49:27 -07:00
lnrpc lnrpc: add pendingchannels RPC call, regenerate protos 2016-07-07 15:24:58 -07:00
lnwallet lnwallet: finish initial draft of LightningChannel state machine 2016-07-05 17:02:03 -07:00
lnwire lnwire: update CommitRevocation for revoke key scheme 2016-06-30 11:59:46 -07: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 testing sighash folder 2016-02-19 14:49:04 -08:00
.travis.yml Initial travis yml file 2016-06-21 13:12:21 -07:00
config.go lnd: make the http profiling server optional w/ a config param 2016-06-21 13:12:51 -07:00
doc.go add some daemon related skeleton files 2015-12-26 00:09:17 -06:00
fundingmanager.go lnd: implement pendingchannels RPC 2016-07-07 15:33:58 -07:00
htlcswitch.go lnd: introduce the HtlcSwitch service within daemon 2016-07-09 16:35:45 -07:00
LICENSE add copyright, license and discouragement in readme 2016-01-16 00:13:11 -08:00
lnd.go lnd: fix bug causing help (./lnd -h) to be printed twice 2016-06-21 13:12:55 -07:00
log.go lnd: set up messaging chans between peer and htlcSwitch 2016-07-09 16:41:54 -07:00
peer_test.go plasma: rough draft of peer struct 2015-12-20 15:16:38 -06:00
peer.go lnd: set up messaging chans between peer and htlcSwitch 2016-07-09 16:41:54 -07:00
README.md Updating Readme with reference to Segnet4 instead of testnet-L 2016-05-10 18:32:11 +02:00
rpcserver.go lnd: redirect channel closure reqs from server to htlcSwitch 2016-07-09 16:36:31 -07:00
server.go lnd: redirect channel closure reqs from server to htlcSwitch 2016-07-09 16:36:31 -07:00
shell.go uspv: update to new upstream btcd api to fix compile errors 2016-05-22 22:04:25 -07:00
signal.go create signal.go to handle SIGINT's 2016-03-22 18:42:01 -07:00
version.go create version.go file 2016-03-22 18:40:54 -07:00

lnd - Lightning Network Daemon

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

  • If necessary, install Go according to the installation instructions here: http://golang.org/doc/install. It is recommended to add $GOPATH/bin to your PATH at this point.
  • Run the following command to obtain and install lnd, lncli, lnshell and all dependencies:
go get -u -v github.com/lightningnetwork/lnd/...

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.