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
+11-8Lines changed: 11 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,9 @@ Lightning Terminal (LiT) is a browser-based interface for managing channel liqui
10
10
- Visualize your channels and balances
11
11
- Perform submarine swaps via the [Lightning Loop](https://lightning.engineering/loop) service
12
12
- Classify channels according to your node's operating mode
13
-
- Run a single binary that integrates both [`loopd`](https://github.com/lightninglabs/loop) and [`faraday`](https://github.com/lightninglabs/faraday) daemons all in one
13
+
- Run a single binary that integrates [`loopd`](https://github.com/lightninglabs/loop),
14
+
[`poold`](https://github.com/lightninglabs/pool) and
15
+
[`faraday`](https://github.com/lightninglabs/faraday) daemons all in one
14
16
15
17
## Installation
16
18
Download the latest binaries from the [releases](https://github.com/lightninglabs/lightning-terminal/releases) page.
@@ -60,17 +62,18 @@ If you’d prefer to compile from source code please follow [these instructions]
60
62
61
63
## Compatibility
62
64
63
-
Lightning Terminal is backwards compatible with `lnd` back to version v0.11.0-beta
65
+
Lightning Terminal is backwards compatible with `lnd` back to version v0.11.1-beta
Copy file name to clipboardExpand all lines: doc/letsencrypt.md
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -112,6 +112,27 @@ file:
112
112
alias lit-loop="loop --rpcserver=terminal.mydomain.com:8443 --tlscertpath=~/.lit/letsencrypt/terminal.mydomain.com --macaroonpath=~/.loop/testnet/loop.macaroon"
113
113
```
114
114
115
+
### Example `pool` command
116
+
117
+
Since `poold` also runs on the same gRPC server as `lnd`, we have to specify the
118
+
**LetEncrypt**`host:port` and TLS certificate. But `poold` verifies its own
119
+
macaroon, so we have to specify that one from the `.pool` directory.
You can easily create an alias for this by adding the following line to your
130
+
`~/.bashrc` file:
131
+
132
+
```shell script
133
+
alias lit-pool="pool --rpcserver=terminal.mydomain.com:8443 --tlscertpath=~/.lit/letsencrypt/terminal.mydomain.com --macaroonpath=~/.loop/testnet/loop.macaroon"
134
+
```
135
+
115
136
### Example `frcli` command
116
137
117
138
Faraday's command line tool follows the same pattern as loop. We also have to specify the
0 commit comments