Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions _posts/2023-05-24-install-lnd.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ which go
sudo rm -rf /usr/local/go
```

We can find the latest version of go on its [official website](https://go.dev/dl/). At the time of writing, this is `go1.22.5`. We open a terminal on our Ubuntu machine or SSH into it and download the golang source code.
We can find the latest version of go on its [official website](https://go.dev/dl/). At the time of writing, this is `go1.25.1`. We open a terminal on our Ubuntu machine or SSH into it and download the golang source code.

```shell
cd ~/Downloads
Expand Down Expand Up @@ -109,6 +109,8 @@ We can now check our installation.

```shell
bash
```
```shell
go version
```

Expand All @@ -124,14 +126,14 @@ cd ~/git

Next we are going to download the source code for litd directly from the Github repository.

```
```shell
git clone https://github.com/lightninglabs/lightning-terminal.git
cd lightning-terminal
```

### Compiling litd

Before we compile the software, we will need to specify which version we want to compile. At the time of this writing, the latest version is called `0.13.1`. You can check the latest version on the [release page of the project](https://github.com/lightninglabs/lightning-terminal/releases).
Before we compile the software, we will need to specify which version we want to compile. At the time of this writing, the latest version is called `0.15.2`. You can check the latest version on the [release page of the project](https://github.com/lightninglabs/lightning-terminal/releases).

```shell
git checkout v0.15.2-alpha
Expand Down
9 changes: 7 additions & 2 deletions _posts/2025-09-27-nutshell.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,9 +86,9 @@ Generate a private key using the command `openssl rand -hex 32` and enter it her
Your best option is likely `LndRestWallet`, unless you also have [LNbits](/lnbits) installed, in which case `LNbitsWallet` may be more practical.

```
MINT_LND_REST_ENDPOINT=https://127.0.0.1:8086
MINT_LND_REST_ENDPOINT=https://127.0.0.1:8080
MINT_LND_REST_CERT="/home/ubuntu/.lnd/tls.cert"
MINT_LND_REST_MACAROON="/home/ubuntu/.lnd/data/chain/bitcoin/regtest/admin.macaroon
MINT_LND_REST_MACAROON="/home/ubuntu/.lnd/data/chain/bitcoin/mainnet/admin.macaroon
```

Or if you choose to connect to LNbits, enter your LNbits endpoint and the admin key of a new blank wallet here:
Expand All @@ -98,6 +98,11 @@ MINT_LNBITS_ENDPOINT=https://legend.lnbits.com
MINT_LNBITS_KEY=yourkeyasdasdasd
```

### Open firewall

```shell
sudo ufw allow 3338
```

### Run Nutshell

Expand Down