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
András Bánki-Horváth d8361e3105
Merge pull request #795 from yingshanghuangqiao/master
chore: fix some comments
5 days ago
.github github: bump go version 2 months ago
cmd cli: add payment_timeout option to the CLI as well 2 months ago
docs Move DOCKER.md to docs directory 8 months ago
fsm fsm: add WaitForStateAsync to the cached observer 3 months ago
instantout instantout: assign chaincfg in sql store 1 week ago
labels sweepbatcher: add sweep batch 6 months ago
liquidity chore: fix some comments for struct field 1 week ago
loopd multi: typed callback in ExecTx 1 month ago
loopdb sweepbatcher: fix spawning condition "unattached" spend notifiers 2 weeks ago
looprpc looprpc: add payment_timeout to the LoopOutRequest 2 months ago
regtest regtest: fix loopserver address 2 months ago
scripts loopdb: bump sqlc to 1.25.0 4 months ago
staticaddr staticaddr: protocol version package 2 months ago
swap chore: fix some comments 2 months ago
swapserverrpc looprpc,swapserverrpc: update Go image to 1.21.9-bookworm 3 months ago
sweep sweep: fix godoc of GetSweepFeeDetails 1 week ago
sweepbatcher chore: fix some comments 5 days ago
test loop: paginate fetching payments when running the cost migration 2 months ago
tools gomod: bump lnd to version 0.18.0-beta 2 months ago
utils utils: add MuSig2Sign function 6 months ago
.gitignore makefile+travis: add install and build commands 4 years ago
.golangci.yml multi: update linter, fix issues 10 months ago
Dockerfile build: fix dockerfile 2 months ago
LICENSE Update LICENSE 3 years ago
Makefile make: cache docker builds 5 months ago
README.md Merge branch 'master' into patch-1 3 years ago
client.go utils: refactor SelectHopHints to use narrower interface 1 month ago
client_test.go chore: make function comments match function names 2 months ago
config.go multi: replace LSAT with L402 3 months ago
cost_migration.go Merge pull request #773 from bhandras/cost-migraton-pagination 2 months ago
cost_migration_test.go loop: add migration for loopout swaps to fix negative stored costs 2 months ago
executor.go loop: integrate sweepbatcher to loopout flow 6 months ago
go.mod go.mod: update LND to v0.18.0-beta.1 2 months ago
go.sum go.mod: update LND to v0.18.0-beta.1 2 months ago
interface.go chore: fix some comments for struct field 2 weeks ago
log.go multi: add persistent logger 5 years ago
loopin.go utils: refactor SelectHopHints to use narrower interface 1 month ago
loopin_test.go unit: adjust for incorrect amount sweep 5 months ago
loopin_testcontext_test.go multi: move StoreMock to loopdb 6 months ago
loopout.go loopout: correctly account for the prepay amount when calculating costs 2 months ago
loopout_test.go loopout_test: enable logging in sweepbatcher 1 week ago
release.sh build: add darwin-arm64 (Apple Silicon) as a release target 10 months ago
release_notes.md version: bump version to v0.28.2-beta 2 months ago
routing_plugin.go chore: fix some comments 2 months ago
routing_plugin_test.go chore: fix typos 8 months ago
sample-loopd.conf multi: replace LSAT with L402 3 months ago
server_mock_test.go loop: add migration for loopout swaps to fix negative stored costs 2 months ago
sqlc.yaml tools: add sqlc generation tools 1 year ago
swap.go utils: add htlc & swap related helpers 6 months ago
swap_server_client.go chore: fix some comments 2 months ago
testcontext_test.go sweepbatcher: factor out loopdb-less version 2 months 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 utils: refactor SelectHopHints to use narrower interface 1 month ago
version.go version: bump version to v0.28.6-beta 2 weeks 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 ./...