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
Andras Banki-Horvath c8a650842e
docs: update release notes
2 years ago
.github GitHub: add issue templates 3 years ago
cmd loop: allow setting swap type for individual rules 2 years ago
docs multi: update release notes and docs to make note of loop in 2 years ago
labels multi: update autoloop labels to support both swap types 3 years ago
liquidity liquidity/test: add autoloop in tests 2 years ago
loopd loopd: close dbs when the daemon stops 2 years ago
loopdb loopdb: alias swapserverrpc with looprpc 2 years ago
looprpc multi: surface loop in parameters on rpc 2 years ago
regtest bump lnd versions from 12.1-beta to 13.4-beta 2 years ago
swap test: spend tests for the new v2 htlc 4 years ago
swapserverrpc swapserverrpc: remove unnecessary vars in proto dockerfile 2 years ago
sweep sweeper: set sequence to be able to sweep htlc v2 utxo 4 years ago
test loop: Reimplement SelectHopHints from lnd 2 years ago
.gitignore makefile+travis: add install and build commands 4 years ago
.golangci.yml lint: allow init functions 5 years ago
.travis.yml Travis+make: compile JSON/WASM stubs 3 years ago
DOCKER.md docs: remove weird character in DOCKER.md 3 years ago
Dockerfile multi: bump minimum golang version to 1.15 3 years ago
LICENSE Initial commit 5 years ago
Makefile multi: move server proto files to their own directory 2 years ago
README.md Merge branch 'master' into patch-1 3 years ago
client.go loopd: close dbs when the daemon stops 2 years ago
client_test.go multi: surface server swap initiation grpc error codes 3 years ago
config.go multi: use aperture instead of local lsat library 3 years ago
executor.go executor: fix linter error 3 years ago
go.mod swapserverrpc: make swapserverrpc its own module 2 years ago
go.sum mod: bump lnd to v0.14.1-beta 2 years ago
interface.go multi: pass private, routehints from loopcli - loopd - loop server 2 years ago
log.go multi: add persistent logger 5 years ago
loopin.go multi: pass private, routehints from loopcli - loopd - loop server 2 years ago
loopin_test.go multi: surface server swap initiation grpc error codes 3 years ago
loopin_testcontext_test.go loopin: handle EOF case for SubscribeSingleInvoice 3 years ago
loopout.go multi: surface server swap initiation grpc error codes 3 years ago
loopout_test.go Merge pull request #368 from yyforyongyu/fix-test 3 years ago
release.sh release: remove support for darwin 386 4 years ago
release_notes.md docs: update release notes 2 years ago
server_mock_test.go loop: integrate the probe api with loop-in quote 3 years ago
store_mock_test.go loopin: record htlx tx hash 4 years ago
swap.go multi: integrate the new htlc v2 scripts to loop in/out 4 years ago
swap_server_client.go loop: alias import for swapserverrpc in swap server client 2 years ago
testcontext_test.go multi: add cancel swap function to execute config 3 years ago
uncharge_state.go loop: extract code from client package into new loop primary package 5 years ago
updates.go multi: consume and log sever state updates 4 years ago
utils.go loop: Reimplement SelectHopHints from lnd 2 years ago
utils_test.go loop: Reimplement SelectHopHints from lnd 2 years ago
version.go version: bump version to v0.16.0-beta 2 years ago

README.md

Lightning Loop

Lightning Loop is a non-custodial service offered by Lightning Labs that makes it easy to move bitcoin into and out of the Lightning Network.

Features

  • Automated channel balancing
  • Privacy-forward non-custodial swaps
  • Opportunistic transaction batching to save on fees
  • Progress monitoring of in-flight swaps

Use Cases

  • Automate channel balancing with AutoLoop (Learn more)
  • Deposit to a Bitcoin address without closing channels with Loop In
  • Convert outbound liquidity into inbound liquidity with Loop Out
  • Refill depleted Lightning channels with Loop In

Installation

Download the latest binaries from the releases page.

Execution

The Loop client needs its own short-lived daemon to facilitate swaps. To start loopd:

loopd

To use Loop in testnet, simply pass the network flag:

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.

Usage

AutoLoop

AutoLoop makes it easy to keep your channels balanced. Checkout our autoloop documentation for details.

Loop Out

Use Loop Out to move bitcoins on Lightning into an on-chain Bitcoin address.

To execute a Loop Out:

loop out <amt_in_satoshis>

Other notable options:

  • Use the --fast flag to swap immediately (Note: This opts-out of fee savings made possible by transaction batching)
  • Use the --channel flag to loop out on specific channels
  • Use the --addr flag to specify the address the looped out funds should be sent to (Note: By default funds are sent to the lnd wallet)

Run loop monitor to monitor the status of a swap.

Loop In

Use Loop In to convert on-chain bitcoin into spendable Lightning funds.

To execute a Loop In:

loop in <amt_in_satoshis>

More info

For more information about using Loop checkout our Loop FAQs.

Development

Regtest

To get started with local development against a stripped down dummy Loop server running in a local regtest Bitcoin network, take a look at the regtest server environment example documentation.

Testnet

To use Loop in testnet, simply pass the network flag:

loopd --network=testnet

Submit feature requests

The GitHub issue tracker can be used to request specific improvements or report bugs.

Join us on Slack

Join us on the LND Slack and join the #loop channel to ask questions and interact with the community.

LND

Note that Loop requires lnd to be built with all of its subservers. Download the latest official release binary or build lnd from source by following the installation instructions. If you choose to build lnd from source, use the following command to enable all the relevant subservers:

make install tags="signrpc walletrpc chainrpc invoicesrpc"

API

The Loop daemon exposes a gRPC API (defaults to port 11010) and a REST API (defaults to port 8081).

The gRPC and REST connections of loopd are encrypted with TLS and secured with macaroon authentication the same way lnd is.

If no custom loop directory is set then the TLS certificate is stored in ~/.loop/<network>/tls.cert and the base macaroon in ~/.loop/<network>/loop.macaroon.

The loop command will pick up these file automatically on mainnet if no custom loop directory is used. For other networks it should be sufficient to add the --network flag to tell the CLI in what sub directory to look for the files.

For more information on macaroons, see the macaroon documentation of lnd.

NOTE: Loop's macaroons are independent from lnd's. The same macaroon cannot be used for both loopd and lnd.

Build from source

If youd prefer to build from source:

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