You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Joost Jager 9a1b60b4be
multi: always supply chain params when decoding addresses
5 years ago
cmd multi: always supply chain params when decoding addresses 5 years ago
docs docs: move out architecture diagram 5 years ago
lndclient build: build against latest version of lnd 5 years ago
loopdb multi: always supply chain params when decoding addresses 5 years ago
looprpc looprpc: generate client REST definitions 5 years ago
swap utils: remove utils package in favor of new swap package 5 years ago
sweep multi: finalize rename from uncharge to loop out 5 years ago
test loop: extract code from client package into new loop primary package 5 years ago
.gitignore git: update gitignore to include new loop related binaries 5 years ago
.travis.yml build: add travis config 5 years ago
LICENSE Initial commit 5 years ago
Makefile build: add travis config 5 years ago
README.md README: add instructions for testnet mode 5 years ago
client.go multi: always supply chain params when decoding addresses 5 years ago
client_test.go multi: always supply chain params when decoding addresses 5 years ago
config.go multi: finalize rename from uncharge to loop out 5 years ago
executor.go multi: finalize rename from uncharge to loop out 5 years ago
go.mod multi: always supply chain params when decoding addresses 5 years ago
go.sum multi: always supply chain params when decoding addresses 5 years ago
interface.go multi: finalize rename from uncharge to loop out 5 years ago
log.go loop: extract code from client package into new loop primary package 5 years ago
loopout.go multi: finalize rename from uncharge to loop out 5 years ago
loopout_test.go multi: finalize rename from uncharge to loop out 5 years ago
release.sh release: add release script 5 years ago
server_mock_test.go multi: finalize rename from uncharge to loop out 5 years ago
store_mock_test.go multi: finalize rename from uncharge to loop out 5 years ago
swap.go multi: finalize rename from uncharge to loop out 5 years ago
swap_server_client.go multi: finalize rename from uncharge to loop out 5 years ago
testcontext_test.go multi: finalize rename from uncharge to loop out 5 years ago
uncharge_state.go loop: extract code from client package into new loop primary package 5 years ago
version.go loop: add new version file, pin at 0.1-alpha 5 years ago

README.md

Lightning Loop

Lightning Loop is a non-custodial service offered by Lightning Labs to bridge on-chain and off-chain Bitcoin using submarine swaps. This repository is home to the Loop client and depends on the Lightning Network daemon lnd. All of lnds supported chain backends are fully supported when using the Loop client: Neutrino, Bitcoin Core, and btcd.

In the current iteration of the Loop software, only off-chain to on-chain swaps are supported, where the Loop client sends funds off-chain in exchange for the funds back on-chain. This is called a Loop Out.

The service can be used in various situations:

  • Acquiring inbound channel liquidity from arbitrary nodes on the Lightning network
  • Depositing funds to a Bitcoin on-chain address without closing active channels
  • Paying to on-chain fallback addresses in the case of insufficient route liquidity

Future iterations of the Loop software will also allow on-chain to off-chain swaps. These swaps can be useful for additional use-cases:

  • Refilling depleted channels with funds from cold-wallets or exchange withdrawals
  • Servicing off-chain Lightning withdrawals using on-chain payments, with no funds in channels required
  • As a failsafe payment method that can be used when channel liquidity along a route is insufficient

Development and Support

The Loop client is current in an early beta state, and offers a simple command line application. Future APIs will be added to support implementation or use of the Loop service.

The GitHub issue tracker can be used to request specific improvements or register and get help with any problems. Community support is also available in the LND Slack .

Setup and Install

LND and the loop client are using Go modules. Make sure that the GO111MODULE env variable is set to on.

In order to execute a swap, LND will need to be rebuilt on master with sub servers enabled.

LND

Make sure that you are using the master branch of lnd. You can get this by git cloning the repository

git clone https://github.com/lightningnetwork/lnd.git

Once the lnd repository is cloned, it will need to be built with special build tags that enable the swap. This enables the required lnd rpc services.

cd lnd
make install tags="signrpc walletrpc chainrpc"

Check to see if you have already installed lnd. If you have, you will need to delete the .macaroon files from your lnd directory.

Do not delete any other files other than the .macaroon files

// Example on Linux to see macaroons in the default directory:
ls ~/.lnd/data/chain/bitcoin/mainnet

This should show no .macaroon files. If it does? Stop lnd, delete macaroons, restart lnd.

lncli stop

Now delete the .macaroon files and restart lnd. (don't delete any other files)

Loopd

After lnd is installed, you will need to clone the Lightning Loop repo and install the command line interface and swap client service.

git clone https://github.com/lightninglabs/loop.git
cd loop/cmd
go install ./...

Execute a Swap

After you have lnd and the Loop client installed, you can execute a Loop swap.

The Loop client needs its own short-lived daemon which will deal with the swaps in progress.

Command to start loopd::

loopd

// Or if you want to do everything in the same terminal and background loopd
loopd &

// For testnet mode, you'll need to specify the network as mainnet is the
default:
loopd --network=testnet

By default loopd attempts to connect to the lnd instance running on localhost:10009 and reads the macaroon and tls certificate from ~/.lnd. This can be altered using command line flags. See loopd --help.

loopd only listens on localhost and uses an unencrypted and unauthenticated connection.

Now that loopd is running, you can initiate a simple Loop Out. This will pay out Lightning off-chain funds and you will receive Bitcoin on-chain funds in return. There will be some chain and routing fees associated with this swap.

loop out <amt_in_satoshis>

This will take some time, as it requires an on-chain confirmation. When the swap is initiated successfully, loopd will see the process through.

To query in-flight swap statuses, run loop monitor.

Resume

When loopd is terminated (or killed) for whatever reason, it will pickup pending swaps after a restart.

Information about pending swaps is stored persistently in the swap database. Its location is ~/.loopd/<network>/loop.db.

Multiple Simultaneous Swaps

It is possible to execute multiple swaps simultaneously. Just keep loopd running.