Skip to content

RGB-Tools/rgb-lightning-node

Repository files navigation

RLN - RGB Lightning Node

RGB-enabled LN node daemon ported from rgb-lightning-sample, which is based on ldk-sample.

The node enables the possibility to create payment channels containing assets issued using the RGB protocol, as well as routing RGB asset denominated payments across multiple channels, given that they all possess the necessary liquidity. In this way, RGB assets can be transferred with the same user experience and security assumptions of regular Bitcoin Lightning Network payments. This is achieved by adding to each lightning commitment transaction a dedicated extra output containing the anchor to the RGB state transition.

More context on how RGB works on the Lightning Network can be found here.

The RGB functionality for now can be tested only in regtest or testnet environments, but an advanced user may be able to apply changes in order to use it also on other networks. Please be careful, this software is early alpha, we do not take any responsibility for loss of funds or any other issue you may encounter.

Also note that rust-lightning has been changed in order to support RGB channels, here a comparison with v0.0.123, the version we applied the changes to.

Install

Clone the project, including (shallow) submodules:

git clone https://github.com/RGB-Tools/rgb-lightning-node --recurse-submodules --shallow-submodules

Then, from the project root, install the rgb-lightning-node binary by running:

cargo install --debug --path .

Run

In order to operate, the node will need:

  • a bitcoind node
  • an indexer instance (electrum or esplora)
  • an RGB proxy server instance

Once services are running, daemons can be started. Each daemon needs to be started in a separate shell with rgb-lightning-node, specifying:

  • bitcoind user, password, host and port
  • node data directory
  • node listening port
  • LN peer listening port
  • network

Regtest

To easily start the required services on a regtest network, run:

./regtest.sh start

This command will create the directories needed by the services, start the docker containers and mine some blocks. The test environment will always start in a clean state, taking down previous running services (if any) and re-creating data directories.

Here's an example of how to start three regtest nodes, each one using the shared regtest services provided by docker compose:

# 1st shell
rgb-lightning-node user:password@localhost:18443 dataldk0/ \
    --daemon-listening-port 3001 --ldk-peer-listening-port 9735 --network regtest

# 2nd shell
rgb-lightning-node user:password@localhost:18443 dataldk1/ \
    --daemon-listening-port 3002 --ldk-peer-listening-port 9736 --network regtest

# 3rd shell
rgb-lightning-node user:password@localhost:18443 dataldk2/ \
    --daemon-listening-port 3003 --ldk-peer-listening-port 9737 --network regtest

To send some bitcoins to a node, first get a bitcoin address with the POST /address API, then run:

./regtest.sh sendtoaddress <address> <amount>

To mine, run:

./regtest.sh mine <blocks>

To stop running services and to cleanup data directories, run:

./regtest.sh stop

For more info about regtest utility commands, run:

./regtest.sh -h

Testnet

When running the node on the testnet network the docker services are not needed because the node will use some public services.

Here's an example of how to start three testnet nodes, each one using the external testnet services:

# 1st shell
rgb-lightning-node user:[email protected]:18332 dataldk0/ \
    --daemon-listening-port 3001 --ldk-peer-listening-port 9735 --network testnet

# 2nd shell
rgb-lightning-node user:[email protected]:18332 dataldk1/ 9736 testnet
    --daemon-listening-port 3002 --ldk-peer-listening-port 9736 --network testnet

# 3rd shell
rgb-lightning-node user:[email protected]:18332 dataldk2/ \
    --daemon-listening-port 3003 --ldk-peer-listening-port 9737 --network testnet

Use

Once daemons are running, they can be operated via REST JSON APIs.

For example, using curl:

curl -X POST -H "Content-type: application/json" \
    -d '{"ticker": "USDT", "name": "Tether", "amounts": [666], "precision": 0}' \
    http:https://localhost:3001/issueasset

The node currently exposes the following APIs:

  • /address (POST)
  • /assetbalance (POST)
  • /backup (POST)
  • /btcbalance (GET)
  • /changepassword (POST)
  • /closechannel (POST)
  • /connectpeer (POST)
  • /createutxos (POST)
  • /decodelninvoice (POST)
  • /decodergbinvoice (POST)
  • /disconnectpeer (POST)
  • /getassetmedia (POST)
  • /init (POST)
  • /invoicestatus (POST)
  • /issueassetcfa (POST)
  • /issueassetnia (POST)
  • /issueassetuda (POST)
  • /keysend (POST)
  • /listassets (POST)
  • /listchannels (GET)
  • /listpayments (GET)
  • /listpeers (GET)
  • /listswaps (GET)
  • /listtransactions (GET)
  • /listtransfers (POST)
  • /listunspents (GET)
  • /lninvoice (POST)
  • /lock (POST)
  • /makerexecute (POST)
  • /makerinit (POST)
  • /networkinfo (GET)
  • /nodeinfo (GET)
  • /openchannel (POST)
  • /refreshtransfers (POST)
  • /restore (POST)
  • /rgbinvoice (POST)
  • /sendasset (POST)
  • /sendbtc (POST)
  • /sendonionmessage (POST)
  • /sendpayment (POST)
  • /shutdown (POST)
  • /signmessage (POST)
  • /taker (POST)
  • /unlock (POST)

To get more details about the available APIs see the OpenAPI specification. A Swagger UI for the master branch is generated from the specification and available at https://rgb-tools.github.io/rgb-lightning-node. Otherwise you can can browse a local copy exposing it with a web server. As a quick example, from the project root you can run:

python3 -m http.server

Then point a browser to http:https://localhost:8000.

If a daemon is running on your machine on one of the example ports given above, you can even call the APIs directly from the Swagger UI.

To stop the daemon, exit with the /shutdown API (or press Ctrl+C).

Test

Tests for a few scenarios using the regtest network are included. The same services and data directories as the regtest.sh script are used, so the two cannot run at the same time.

Tests can be executed with:

cargo test

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages