Difference between revisions of "Umbrel - Installing BoS"

From PlebNet Wiki
Jump to navigation Jump to search
Line 2: Line 2:
These are the commands to enter in a command line interface for Umbrel.
These are the commands to enter in a command line interface for Umbrel.


<code>sudo apt install npm </code>   (to install npm)
Step 1: Install npm
 
<code>sudo apt install npm </code>  
 
Step 2: Install Balance of Satoshis


<code>
<code>
Line 18: Line 22:
</code>
</code>


Create a file using <code> sudo nano credentials.json </code>  
Step 3: Create the credentials file:
<code> sudo nano credentials.json </code>  


then paste the following:
and paste the following inside:


<code>  
<code>  

Revision as of 15:35, 24 July 2021

Installing BOS

These are the commands to enter in a command line interface for Umbrel.

Step 1: Install npm

sudo apt install npm

Step 2: Install Balance of Satoshis

sudo npm install -g balanceofsatoshis

sudo apt update

curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -

sudo apt-get install -y nodejs

mkdir -p .bos/umbrel/

cd .bos/umbrel

Step 3: Create the credentials file:

 sudo nano credentials.json  

and paste the following inside:

{

   "cert_path": "/home/umbrel/umbrel/lnd/tls.cert",
   "macaroon_path": "/home/umbrel/umbrel/lnd/data/chain/bitcoin/mainnet/admin.macaroon",
   "socket": "localhost:10009"

}