basicswap-bash/bsx/setup.sh

37 lines
1.4 KiB
Bash
Raw Normal View History

2024-01-21 22:34:44 +00:00
#!/bin/bash
## Download & Install coincurve stuff
cd $SWAP_DATADIR
wget -O coincurve-anonswap.zip https://github.com/tecnovert/coincurve/archive/refs/tags/anonswap_v0.2.zip
unzip -d coincurve-anonswap coincurve-anonswap.zip
mv ./coincurve-anonswap/*/{.,}* ./coincurve-anonswap || true
cd $SWAP_DATADIR/coincurve-anonswap
pip3 install .
## Clone basicswap git
cd $SWAP_DATADIR
git clone https://github.com/tecnovert/basicswap.git
cd $SWAP_DATADIR/basicswap
2024-01-21 22:34:44 +00:00
## Install basicswap
protoc -I=basicswap --python_out=basicswap basicswap/messages.proto
pip3 install .
# Move scripts to /usr/local/bin
cd $SWAP_DATADIR
2024-01-26 10:31:51 +00:00
sudo mv -f -t /usr/local/bin/ basicswap-bash bsx*
2024-01-21 22:34:44 +00:00
## Run basicswap-prepare with particl and monero
2024-01-26 10:31:51 +00:00
if [[ "$monerod_addr" && "$monerod_port" ]]; then
# Use remote Monero node
CURRENT_XMR_HEIGHT=$(curl "http://$monerod_addr:$monerod_port/get_info" | jq .height)
XMR_RPC_HOST=$monerod_addr BASE_XMR_RPC_PORT=$monerod_port basicswap-prepare --datadir=$SWAP_DATADIR --withcoins=monero --xmrrestoreheight=$CURRENT_XMR_HEIGHT
else # Use BasicSwapDEX's Monero node
CURRENT_XMR_HEIGHT=$(curl https://localmonero.co/blocks/api/get_stats | jq .height)
basicswap-prepare --datadir=$SWAP_DATADIR --withcoins=monero --xmrrestoreheight=$CURRENT_XMR_HEIGHT
fi
$red; echo -e "\n\nMake note of your seed above\n"; $nocolor
2024-01-21 22:34:44 +00:00
echo 'Install complete.
Use `basicswap-bash` to run, `bsx-update` to update, and `bsx-addcoin` to add a coin'