You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+35-22Lines changed: 35 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,9 @@ bitcoin into and out of the Lightning Network.
11
11
12
12
## Use Cases
13
13
- Automate channel balancing with AutoLoop ([Learn more](https://github.com/lightninglabs/loop/blob/master/docs/autoloop.md))
14
-
- Deposit to a Bitcoin address without closing channels
15
-
- Convert outbound liquidity into inbound liquidity
16
-
- Refill depleted Lightning channels
14
+
- Deposit to a Bitcoin address without closing channels with Loop In
15
+
- Convert outbound liquidity into inbound liquidity with Loop Out
16
+
- Refill depleted Lightning channels with Loop In
17
17
18
18
## Installation
19
19
Download the latest binaries from the [releases](https://github.com/lightninglabs/loop/releases) page.
@@ -25,26 +25,14 @@ The Loop client needs its own short-lived daemon to facilitate swaps. To start `
25
25
loopd
26
26
```
27
27
28
-
To use Loop in testnet, simply pass the network flag:
29
-
```
30
-
loopd --network=testnet
31
-
```
32
-
33
28
By default `loopd` attempts to connect to the `lnd` instance running on
34
29
`localhost:10009` and reads the macaroon and tls certificate from `~/.lnd`.
35
30
This can be altered using command line flags. See `loopd --help`.
36
31
37
-
## LND
38
-
Note that Loop requires `lnd` to be built with **all of its subservers**. Download the latest [official release binary](https://github.com/lightningnetwork/lnd/releases/latest) or build `lnd` from source by following the [installation instructions](https://github.com/lightningnetwork/lnd/blob/master/docs/INSTALL.md). If you choose to build `lnd` from source, use the following command to enable all the relevant subservers:
39
-
40
-
```
41
-
make install tags="signrpc walletrpc chainrpc invoicesrpc"
42
-
```
43
-
44
32
## Usage
45
33
46
34
### AutoLoop
47
-
AutoLoop makes it easy to keep your channels balanced. Checkout our [autoloop documentation](https://github.com/lightninglabs/loop/blob/master/docs/autoloop.md) for details.
35
+
AutoLoop makes it easy to keep your channels balanced. Checkout our [autoloop documentation](https://docs.lightning.engineering/advanced-best-practices/advanced-best-practices-overview/autoloop) for details.
48
36
49
37
### Loop Out
50
38
Use Loop Out to move bitcoins on Lightning into an on-chain Bitcoin address.
@@ -69,6 +57,37 @@ To execute a Loop In:
69
57
loop in <amt_in_satoshis>
70
58
```
71
59
60
+
### More info
61
+
For more information about using Loop checkout our [Loop FAQs](./docs/faqs.md).
62
+
63
+
## Development
64
+
65
+
### Regtest
66
+
To get started with local development against a stripped down dummy Loop server
67
+
running in a local `regtest` Bitcoin network, take a look at the
68
+
[`regtest` server environment example documentation](./regtest/README.md).
69
+
70
+
### Testnet
71
+
To use Loop in testnet, simply pass the network flag:
72
+
```
73
+
loopd --network=testnet
74
+
```
75
+
76
+
### Submit feature requests
77
+
The [GitHub issue tracker](https://github.com/lightninglabs/loop/issues) can be
78
+
used to request specific improvements or report bugs.
79
+
80
+
### Join us on Slack
81
+
Join us on the
82
+
[LND Slack](https://lightning.engineering/slack.html) and join the #loop
83
+
channel to ask questions and interact with the community.
84
+
85
+
## LND
86
+
Note that Loop requires `lnd` to be built with **all of its subservers**. Download the latest [official release binary](https://github.com/lightningnetwork/lnd/releases/latest) or build `lnd` from source by following the [installation instructions](https://github.com/lightningnetwork/lnd/blob/master/docs/INSTALL.md). If you choose to build `lnd` from source, use the following command to enable all the relevant subservers:
87
+
88
+
```
89
+
make install tags="signrpc walletrpc chainrpc invoicesrpc"
90
+
```
72
91
73
92
## API
74
93
The Loop daemon exposes a [gRPC API](https://lightning.engineering/loopapi/#lightning-loop-grpc-api-reference)
0 commit comments