- Python
3.7+
- setuptools (tested with
57.4.0
) - A Raspiblitz Node (LNPay Support Coming)
$ pip install BoostCLI
$ boostcli boost https://mp3s.nashownotes.com/pc20rss.xml
$ pip install BoostCLI
$ boostcli --macaroon /mnt/hdd/app-data/lnd/data/chain/bitcoin/mainnet/admin.macaroon --tlscert /mnt/hdd/app-data/lnd/tls.cert boost https://mp3s.nashownotes.com/pc20rss.xml
Open a Tunnel from this computer to your Raspiblitz Node. Replace 192.168.1.100
with the IP Address of your node.
ssh -NL 10009:127.0.0.1:10009 [email protected]
Enter your password when prompted and leave the terminal open. Switch to a new terminal to continue the quick start.
Get the readonly.macaroon
and tls.cert
from your node
-
SSH into Node, replace
192.168.1.100
with the IP Address of your node. -
In Raspiblitz CONNECT -> EXPORT -> scp and following the instructions
This should be done in the directory that contains this project.
python3 -m venv venv && source venv/bin/activate # Optional but Recommended
pip install -e .
boostcli --help
boostcli boosts --help
$ boostcli --macaroon /mnt/hdd/app-data/lnd/data/chain/bitcoin/mainnet/admin.macaroon --tlscert /mnt/hdd/app-data/lnd/tls.cert boost https://mp3s.nashownotes.com/pc20rss.xml
Using a Python Virtual Environment is optional but highly recommended and is standard practice with development. The basic idea is you create a virtual environment for each project and install all the dependencies into it. The Virtual Environment only needs to be created once but must be activated every time a new terminal is opened.
python3 -m venv venv
source venv/bin/activate
deactivate
PUBKEY="03ecb3ee55ba6324d40bea174de096dc9134cb35d990235723b37ae9b5c49f4f53"
VALUE=69
MVALUE=$(expr $VALUE \* 1000)
SENDER_NAME="Dude named Ben"
MESSAGE="Test Message from lncli!"
RECEIVER_NAME="Podcaster"
APP_NAME="lncli"
DATA="{\"action\":\"boost\",\"value_msat_total\":\"$MVALUE\",\"app_name\":\"$APP_NAME\",\"sender_name\": \"$SENDER_NAME\",\"name\":\"$RECEIVER_NAME\",\"message\":\"$MESSAGE\"}"
RECORD=`echo $DATA | od -A n -t x1 | sed -z 's/[ \n]*//g'`
lncli sendpayment --dest=$PUBKEY --amt=$VALUE --keysend --data 7629169=$RECORD
for x in $(lncli listinvoices | jq '.invoices[].htlcs[0].custom_records."7629169"'); do echo $x | sed 's/"//g' | xxd -r -p; done