diff --git a/_posts/2023-05-24-install-lnd.md b/_posts/2023-05-24-install-lnd.md index ec81913..d355ede 100644 --- a/_posts/2023-05-24-install-lnd.md +++ b/_posts/2023-05-24-install-lnd.md @@ -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 @@ -109,6 +109,8 @@ We can now check our installation. ```shell bash +``` +```shell go version ``` @@ -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 diff --git a/_posts/2025-09-27-nutshell.md b/_posts/2025-09-27-nutshell.md index 8d58f74..8f028ac 100644 --- a/_posts/2025-09-27-nutshell.md +++ b/_posts/2025-09-27-nutshell.md @@ -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: @@ -98,6 +98,11 @@ MINT_LNBITS_ENDPOINT=https://legend.lnbits.com MINT_LNBITS_KEY=yourkeyasdasdasd ``` +### Open firewall + +```shell +sudo ufw allow 3338 +``` ### Run Nutshell