An implementation of rgb on core lightning This fork of cln is maintained by Vincenzo Palazzo
Go to file
Rusty Russell a02ca46b03 secp256k1_ecdsa_recoverable_signature: add support.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
2017-11-01 01:09:23 +00:00
bitcoin script: add helper to use a raw witness program. 2017-11-01 01:09:23 +00:00
ccan ccan: update to get new ccan/io changes. 2017-10-25 18:34:35 +02:00
channeld lightningd: split ctlv_expiry and final_cltv. 2017-10-31 14:36:50 +01:00
cli Makefiles: simplify dependencies. 2017-08-29 17:54:14 +02:00
closingd crypto_state: move to its own file. 2017-10-20 18:31:32 +02:00
common common/hash_u5: routines to hash 5 bit values. 2017-11-01 01:09:23 +00:00
contrib contrib: Updated dockerfile to use bitcoind v0.15.1 2017-10-31 19:30:54 +00:00
doc handshaked: remove. 2017-10-20 18:31:32 +02:00
external secp256k1_ecdsa_recoverable_signature: add support. 2017-11-01 01:09:23 +00:00
gossipd gossipd: route correctly using final CLTV value. 2017-10-31 14:36:50 +01:00
hsmd hsm: remove unique_id. 2017-10-24 16:12:22 +02:00
lightningd script: enhance is_p2sh/is_p2pkh/is_p2wsh/is_p2wpkh to extract addr. 2017-11-01 01:09:23 +00:00
onchaind script: enhance is_p2sh/is_p2pkh/is_p2wsh/is_p2wpkh to extract addr. 2017-11-01 01:09:23 +00:00
openingd crypto_state: move to its own file. 2017-10-20 18:31:32 +02:00
test update-mocks: move mock generation into tools/, fix and generalize. 2017-09-03 02:01:54 +02:00
tests pay: factor out actual payment sending from json part of sendpay. 2017-11-01 01:09:23 +00:00
tools update-mocks: fix stubs generation for fatal(). 2017-10-31 04:14:33 +00:00
wallet script: enhance is_p2sh/is_p2pkh/is_p2wsh/is_p2wpkh to extract addr. 2017-11-01 01:09:23 +00:00
wire secp256k1_ecdsa_recoverable_signature: add support. 2017-11-01 01:09:23 +00:00
.gitignore Cleanup: remove unused IRC flag. 2017-09-04 08:47:13 +02:00
.gitlab-ci.yml Add .gitlab-ci.yml 2016-12-11 13:24:27 +01:00
.gitmodules external/libbacktrace: new external library for backtrace support. 2017-09-12 23:00:53 +02:00
.travis.yml travis: Fold build output 2017-10-31 19:30:54 +00:00
LICENSE licensing: Make license explicit. 2016-01-22 06:41:46 +10:30
Makefile pytest: pass DEVELOPER flag through. 2017-10-31 04:14:33 +00:00
README.md lightningd: change connect RPC args. 2017-10-20 18:31:32 +02:00

README.md

c-lightning: A specification compliant Lightning Network implementation in C

c-lightning is a standard compliant implementation of the Lightning Network protocol. The Lightning Network is a scalability solution for Bitcoin, enabling secure and instant transfer of funds between any two party for any amount.

For more information about the Lightning Network please refer to http://lightning.network.

Project Status

This implementation is still very much work in progress, and, although it can be used for testing, it should not be used for real funds. We do our best to identify and fix problems, and implement missing feature.

Any help testing the implementation, reporting bugs, or helping with outstanding issues is very welcome. Don't hesitate to reach out to us on IRC at #lightning-dev @ freenode.net, #c-lightning @ freenode.net, or on the mailing list lightning-dev@lists.linuxfoundation.org.

Getting Started

c-lightning currently only works on Linux (and possibly Mac OS with some tweaking), and requires a locally running bitcoind that is fully caught up with the network you're testing on.

Installation

Please refer to the installation documentation for detailed instructions. For the impatient here's the gist of it for Ubuntu and Debian:

sudo apt-get install -y autoconf git build-essential libtool libgmp-dev libsqlite3-dev python python3
git clone https://github.com/ElementsProject/lightning.git
cd lightning
make

Or if you like to throw docker into the mix:

sudo docker run \
	-v $HOME/.lightning:/root/.lightning \
	-v $HOME/.bitcoin:/root/.bitcoin \
	-p 9735:9735 \
	cdecker/lightningd:master

Starting lightningd

In order to start lightningd you will need to have a local bitcoind node running in either testnet or regtest mode:

bitcoind -daemon -testnet

Wait until bitcoind has synchronized with the testnet network. In case you use regtest, make sure you generate at least 432 blocks to activate SegWit.

You can start lightningd with the following command:

lightningd/lightningd --network=testnet --log-level=debug

Opening a channel on the Bitcoin testnet

First you need to transfer some funds to lightningd so that it can open a channel:

# Returns an address <address>
cli/lightning-cli newaddr 

# Returns a transaction id <txid>
bitcoin-cli -testnet sendtoaddress <address> <amount>

# Retrieves the raw transaction <rawtx>
bitcoin-cli -testnet getrawtransaction <txid>

# Notifies `lightningd` that there are now funds available:
cli/lightning-cli addfunds <rawtx>

Eventually lightningd will include its own wallet making this transfer easier, but for now this is how it gets its funds. If you don't have any testcoins you can get a few from a faucet such as TPs' testnet faucet or Kiwi's testnet faucet.

Once lightningd has funds, we can connect to a node and open a channel. Let's assume the remote node is accepting connections at <ip>:<port> and has the node ID <node_id>:

cli/lightning-cli connect <node_id> <ip>:<port>
cli/lightning-cli fundchannel <node_id> <amount>

This opens a connection and, on top of that connection, then opens a channel. You can check the status of the channel using cli/lightning-cli getpeers. The funding transaction needs to confirm in order for the channel to be usable, so wait a few minutes, and once that is complete it getpeers should say that the status is in Normal operation.

Receiving and receiving payments

Payments in Lightning are invoice based. The recipient creates an invoice with the expected <amount> in millisatoshi and a <label>:

cli/lightning-cli invoice <amount> <label>

This returns a random value called rhash that is part of the invoice. The recipient needs to communicate its ID <recipient_id>, <rhash> and the desired <amount> to the sender.

The sender needs to compute a route to the recipient, and use that route to actually send the payment. The route contains the path that the payment will take throught the Lightning Network and the respective funds that each node will forward.

route=$(cli/lightning-cli getroute <recipient_id> <amount> 1 | jq --raw-output .route -)
cli/lightning-cli sendpay $route <rhash>

Notice that in the first step we stored the route in a variable and reused it in the second step. lightning-cli should return a preimage that serves as a receipt, confirming that the payment was successful.

This low-level interface is still experimental and will eventually be complemented with a higher level interface that is easier to use.

Further information

JSON-RPC interface is documented in the following manual pages:

For simple access to the JSON-RPC interface you can use the cli/lightning-cli tool, or the python API client.