Skip to main content

Utilities to define and bootstrap lightning networks for testing

Project description

lnet -- Simplified Lightning Network Setup

Have you ever tried setting up a small Lightning Network on regtest to develop or demo against, and found it frustrating and confusing? lnet's goal is to make it easy to spin up any network topology for testing or demoing, all you need to do is describe the network in the graphviz dot format.

Take the following example, which will spin up two nodes, called client and server respectively, connect them and fund a channel. It'll also create an invoice on the server to balance the channel by sending over 500'000msat. You describe it, we make it happen.

graph g {
  client -- server [capacity="10000000:500000"];
}

A more complicated setup could be a star topology and some multi-hop paths:

graph g {
  client1 -- server [capacity="10000000"];
  client2 -- server [capacity="10000000"];
  client3 -- server [capacity="10000000"];
  client4 -- server [capacity="10000000"];
  client5 -- server [capacity="10000000"];

  "client5-1" -- client5 [capacity="10000000"];
  "client5-2" -- client5 [capacity="10000000"];
  "client5-3" -- client5 [capacity="10000000"];

}

Installation

lnet is just a simple pip install away:

pip3 install lnet

This will install the lnet-cli and lnet-daemon command line utilities. lnet-daemon starts, monitors and provides access to bitcoind and any number of c-lightning nodes, while lnet-cli is used to interact with the daemon and the nodes.

Usage

All operations are performed through lnet-cli, which will start lnet-daemon if required. lnet-cli has the following commands:

  • start [dotfile] parses the dotfile, extracting nodes and channels, and tries to recreate the desired topology. It'll open channels and confirm them to make the usable, however it currently requires that the network topology is not partitioned. See below for attributes that are defined.
  • stop stops the currently running topology
  • shutdown stops the running topology and shuts down the lnet-daemon
  • node [nodename] [rpc_method] [params...] executes rpc_method on the node with name nodename and the specified params. This is mainly used as a shorthand to give access without having to configure your shell.
  • alias configures your shell with a number of aliases to make it easy to interact with the daemons without going through lnet-cli. You can use it with eval $(lnet-cli alias).

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lnet-0.0.2.tar.gz (3.1 kB view details)

Uploaded Source

Built Distribution

lnet-0.0.2-py3-none-any.whl (4.4 kB view details)

Uploaded Python 3

File details

Details for the file lnet-0.0.2.tar.gz.

File metadata

  • Download URL: lnet-0.0.2.tar.gz
  • Upload date:
  • Size: 3.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6

File hashes

Hashes for lnet-0.0.2.tar.gz
Algorithm Hash digest
SHA256 fdc6bf66019970d14457358fdb5903ce680735f9e48b6f1d401c7067f7463e34
MD5 fbfaafa47ec0199ea172b361f4424757
BLAKE2b-256 5d170861eb73e5411b116ad146fd8b72fa3dc63c296a3d896f61c7d4363cf1ae

See more details on using hashes here.

File details

Details for the file lnet-0.0.2-py3-none-any.whl.

File metadata

  • Download URL: lnet-0.0.2-py3-none-any.whl
  • Upload date:
  • Size: 4.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.0 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.6

File hashes

Hashes for lnet-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b61adb1749640d7bf3dd2e5ea66da30a6c62585687df4b3e29b1652a78788699
MD5 c9e0dd1498d8aba0320ee6cc410dfc32
BLAKE2b-256 0206e2bd2be640041c483fdfd760d49597093e69013ba375b3cb536357ecc359

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page