2019-03-06 23:25:04 +00:00
|
|
|
|
# Lightning Loop
|
2019-03-07 00:58:12 +00:00
|
|
|
|
|
|
|
|
|
Lightning Loop is a non-custodial service offered by
|
|
|
|
|
[Lightning Labs](https://lightning.engineering/) 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](https://github.com/lightningnetwork/lnd). All of lnd’s 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
|
2019-03-20 15:25:17 +00:00
|
|
|
|
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**.
|
2019-03-07 00:58:12 +00:00
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
2019-04-10 00:49:30 +00:00
|
|
|
|
Loop also allow offers an experimental testnet version of on-chain to off-chain
|
|
|
|
|
swaps, called **Loop In**. This allows you to use on-chain funds to increase
|
|
|
|
|
the local balance of a channel.
|
|
|
|
|
|
|
|
|
|
Potential uses for Loop In:
|
2019-03-07 00:58:12 +00:00
|
|
|
|
|
|
|
|
|
- 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](https://github.com/lightninglabs/loop/issues) can be
|
|
|
|
|
used to request specific improvements or register and get help with any
|
|
|
|
|
problems. Community support is also available in the
|
|
|
|
|
[LND Slack](https://join.slack.com/t/lightningcommunity/shared_invite/enQtMzQ0OTQyNjE5NjU1LWRiMGNmOTZiNzU0MTVmYzc1ZGFkZTUyNzUwOGJjMjYwNWRkNWQzZWE3MTkwZjdjZGE5ZGNiNGVkMzI2MDU4ZTE)
|
|
|
|
|
.
|
2019-03-07 00:39:59 +00:00
|
|
|
|
|
2019-03-13 23:11:04 +00:00
|
|
|
|
## Setup and Install
|
|
|
|
|
|
|
|
|
|
LND and the loop client are using Go modules. Make sure that the `GO111MODULE`
|
|
|
|
|
env variable is set to `on`.
|
|
|
|
|
|
2019-04-17 00:03:40 +00:00
|
|
|
|
In order to execute a swap, **You need to run lnd 0.6.0+, or master built with
|
|
|
|
|
sub-servers enabled.**
|
2019-03-07 00:39:59 +00:00
|
|
|
|
|
|
|
|
|
### LND
|
|
|
|
|
|
2019-04-17 00:03:40 +00:00
|
|
|
|
If you are building from source, and not using a 0.6.0 or higher release of
|
|
|
|
|
lnd, make sure that you are using the `master` branch of lnd. You can get this
|
|
|
|
|
by git cloning the repository
|
2019-03-07 00:39:59 +00:00
|
|
|
|
|
2019-03-19 19:02:29 +00:00
|
|
|
|
```
|
|
|
|
|
git clone https://github.com/lightningnetwork/lnd.git
|
|
|
|
|
```
|
2019-03-07 00:39:59 +00:00
|
|
|
|
|
2019-03-19 19:02:29 +00:00
|
|
|
|
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.
|
2019-03-07 00:39:59 +00:00
|
|
|
|
|
2019-03-19 19:02:29 +00:00
|
|
|
|
```
|
|
|
|
|
cd lnd
|
2019-06-12 11:36:37 +00:00
|
|
|
|
make install tags="signrpc walletrpc chainrpc invoicesrpc routerrpc"
|
2019-03-19 19:02:29 +00:00
|
|
|
|
```
|
2019-03-07 00:39:59 +00:00
|
|
|
|
|
2019-03-19 19:02:29 +00:00
|
|
|
|
Check to see if you have already installed lnd. If you have, you will need to
|
2019-04-17 00:03:40 +00:00
|
|
|
|
delete the `.macaroon` files from your lnd directory and restart lnd.
|
2019-03-19 19:02:29 +00:00
|
|
|
|
|
|
|
|
|
**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)
|
2019-03-07 00:39:59 +00:00
|
|
|
|
|
|
|
|
|
### Loopd
|
|
|
|
|
|
2019-03-19 19:02:29 +00:00
|
|
|
|
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 ./...
|
|
|
|
|
```
|
2019-03-07 00:39:59 +00:00
|
|
|
|
|
2019-03-19 19:02:29 +00:00
|
|
|
|
## Execute a Swap
|
2019-03-07 00:39:59 +00:00
|
|
|
|
|
2019-03-19 19:02:29 +00:00
|
|
|
|
After you have lnd and the Loop client installed, you can execute a Loop swap.
|
2019-03-07 00:39:59 +00:00
|
|
|
|
|
2019-03-19 19:02:29 +00:00
|
|
|
|
The Loop client needs its own short-lived daemon which will deal with the swaps
|
|
|
|
|
in progress.
|
2019-03-07 00:39:59 +00:00
|
|
|
|
|
2019-03-22 23:03:53 +00:00
|
|
|
|
Command to start `loopd`::
|
2019-03-07 00:39:59 +00:00
|
|
|
|
|
2019-03-19 19:02:29 +00:00
|
|
|
|
```
|
2019-03-22 23:03:53 +00:00
|
|
|
|
loopd
|
2019-03-07 00:39:59 +00:00
|
|
|
|
|
2019-03-19 19:02:29 +00:00
|
|
|
|
// Or if you want to do everything in the same terminal and background loopd
|
2019-03-22 23:03:53 +00:00
|
|
|
|
loopd &
|
|
|
|
|
|
|
|
|
|
// For testnet mode, you'll need to specify the network as mainnet is the
|
|
|
|
|
default:
|
|
|
|
|
loopd --network=testnet
|
2019-03-19 19:02:29 +00:00
|
|
|
|
```
|
2019-03-07 00:39:59 +00:00
|
|
|
|
|
2019-03-19 19:02:29 +00:00
|
|
|
|
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.
|
|
|
|
|
|
2019-06-26 16:45:51 +00:00
|
|
|
|
### Loop Out Swaps
|
|
|
|
|
|
2019-03-19 19:02:29 +00:00
|
|
|
|
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.
|
2019-06-26 16:45:51 +00:00
|
|
|
|
```
|
|
|
|
|
NAME:
|
|
|
|
|
loop out - perform an off-chain to on-chain swap (looping out)
|
|
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
|
loop out [command options] amt [addr]
|
|
|
|
|
|
|
|
|
|
DESCRIPTION:
|
|
|
|
|
|
|
|
|
|
Attempts loop out the target amount into either the backing lnd's
|
|
|
|
|
wallet, or a targeted address.
|
|
|
|
|
|
|
|
|
|
The amount is to be specified in satoshis.
|
|
|
|
|
|
|
|
|
|
Optionally a BASE58/bech32 encoded bitcoin destination address may be
|
|
|
|
|
specified. If not specified, a new wallet address will be generated.
|
|
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
|
--channel value the 8-byte compact channel ID of the channel to loop out (default: 0)
|
|
|
|
|
--addr value the optional address that the looped out funds should be sent to, if let blank the funds will go to lnd's wallet
|
|
|
|
|
--amt value the amount in satoshis to loop out (default: 0)
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
It's possible to receive more inbound capacity on a particular channel
|
|
|
|
|
(`--channel`), and also have the `loop` daemon send the coins to a target
|
|
|
|
|
address (`addr`). The latter option allows ones to effectively send on-chain
|
|
|
|
|
from their existing channels!
|
|
|
|
|
|
2019-03-19 19:02:29 +00:00
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
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`.
|
2019-03-07 00:39:59 +00:00
|
|
|
|
|
2019-06-26 16:45:51 +00:00
|
|
|
|
### Loop In Swaps
|
|
|
|
|
|
|
|
|
|
Additionally, Loop In is now also supported for mainnet as well. A Loop In swap
|
|
|
|
|
lets one refill their channel (ability to send more coins) by sending to a
|
|
|
|
|
special script on-chain.
|
|
|
|
|
```
|
|
|
|
|
NAME:
|
|
|
|
|
loop in - perform an on-chain to off-chain swap (loop in)
|
|
|
|
|
|
|
|
|
|
USAGE:
|
|
|
|
|
loop in [command options] amt
|
|
|
|
|
|
|
|
|
|
DESCRIPTION:
|
|
|
|
|
|
|
|
|
|
Send the amount in satoshis specified by the amt argument off-chain.
|
|
|
|
|
|
|
|
|
|
OPTIONS:
|
|
|
|
|
--amt value the amount in satoshis to loop in (default: 0)
|
|
|
|
|
--external expect htlc to be published externally
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
The `--external` argument allows the on-chain HTLC transacting to be published
|
|
|
|
|
_externally_. This allows for a number of use cases like using this address to
|
|
|
|
|
withdraw from an exchange _into_ your Lightning channel!
|
|
|
|
|
|
|
|
|
|
A Loop In swap can be executed a follows:
|
|
|
|
|
```
|
|
|
|
|
loop in <amt_in_satoshis>
|
|
|
|
|
```
|
2019-03-07 00:39:59 +00:00
|
|
|
|
## Resume
|
2019-03-19 19:02:29 +00:00
|
|
|
|
|
2019-03-07 00:39:59 +00:00
|
|
|
|
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.
|
2019-03-07 00:41:16 +00:00
|
|
|
|
Its location is `~/.loopd/<network>/loop.db`.
|
2019-03-07 00:39:59 +00:00
|
|
|
|
|
2019-03-19 19:02:29 +00:00
|
|
|
|
## Multiple Simultaneous Swaps
|
2019-03-07 00:39:59 +00:00
|
|
|
|
|
2019-03-19 19:02:29 +00:00
|
|
|
|
It is possible to execute multiple swaps simultaneously. Just keep loopd
|
|
|
|
|
running.
|
2019-03-07 00:39:59 +00:00
|
|
|
|
|