Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@openoms
Last active November 26, 2022 11:25
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save openoms/823f99d1ab6e1d53285e489f7ba38602 to your computer and use it in GitHub Desktop.
Save openoms/823f99d1ab6e1d53285e489f7ba38602 to your computer and use it in GitHub Desktop.
Setup Balance of Satoshis on a RaspiBlitz

Project and readme: https://github.com/alexbosworth/balanceofsatoshis

RaspiBlitz install script: https://github.com/rootzoll/raspiblitz/blob/v1.6/home.admin/config.scripts/bonus.bos.sh usage:

Install Balance of Satoshis from the SERVICES menu

or on older versions:

# update NodeJS
wget https://raw.githubusercontent.com/rootzoll/raspiblitz/v1.6/home.admin/config.scripts/bonus.nodejs.sh
bash bonus.nodejs.sh off
bash bonus.nodejs.sh on
# download bos install script
wget https://raw.githubusercontent.com/rootzoll/raspiblitz/v1.6/home.admin/config.scripts/bonus.bos.sh
# run
bash bonus.bos.sh on

Manual installation on the RaspiBlitz:

# check and install NodeJS
/home/admin/config.scripts/bonus.nodejs.sh

# create bos user
sudo adduser --disabled-password --gecos "" bos

# set up npm-global
sudo -u bos mkdir /home/bos/.npm-global
sudo -u bos npm config set prefix '/home/bos/.npm-global'
sudo bash -c "echo 'PATH=$PATH:/home/bos/.npm-global/bin' >> /home/bos/.bashrc"

# download source code
sudo -u bos git clone https://github.com/alexbosworth/balanceofsatoshis.git /home/bos/balanceofsatoshis
cd /home/bos/balanceofsatoshis

# make sure symlink to central app-data directory exists ***"
# not a symlink.. delete it silently
sudo rm -rf /home/bos/.lnd  
# create symlink
sudo ln -s "/mnt/hdd/app-data/lnd/" "/home/bos/.lnd"

# make sure rtl is member of lndadmin
sudo /usr/sbin/usermod --append --groups lndadmin bos

# install bos
sudo -u bos npm install -g balanceofsatoshis

Run from the bos user:
$ sudo su - bos

$ bos help

To set up a Telegram bot connected to your node:

WARNING: the Telegram Bot will send encrypted messages about the events on your node over clearnet, which are decrypted by the central Telegram Bot API

To avoid leaking your public IP to Telegram use torify before the bos telegram command to route communication through Tor:
torify bos telegram related issue: alexbosworth/balanceofsatoshis#54

  • Got to t.me/BotFather
    /newbot

  • Copy the API key

  • in the terminal (in tmux if want to keep running):
    torify bos telegram

  • paste the API key to the terminal

  • In your new TG bot:
    /connect

  • paste the connection code to the terminal for bos.

@smartsdesign
Copy link

Hi

I hope you can help, but I am running into a 503 when i run any commands e.g bos rebalance.

Screenshot 2022-11-26 at 11 25 08

great plugin.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment