mirror of
https://github.com/nahuhh/basicswap-bash.git
synced 2024-11-16 15:57:38 +00:00
66 lines
2.5 KiB
Bash
Executable file
66 lines
2.5 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# Colors
|
|
red="echo -e -n \e[31;1m"
|
|
green="echo -e -n \e[32;1m"
|
|
nocolor="echo -e -n \e[0m"
|
|
|
|
## 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 -f ./coincurve-anonswap/*/{.,}* ./coincurve-anonswap || true
|
|
cd $SWAP_DATADIR/coincurve-anonswap
|
|
$SWAP_DATADIR/venv/bin/pip install .
|
|
|
|
## Clone basicswap git
|
|
cd $SWAP_DATADIR
|
|
git clone https://github.com/basicswap/basicswap
|
|
cd $SWAP_DATADIR/basicswap
|
|
## Install basicswap
|
|
$SWAP_DATADIR/venv/bin/pip install .
|
|
|
|
## Decide a source for Monero's restore height
|
|
if [[ "$xmrrestoreheight" ]]; then
|
|
CURRENT_XMR_HEIGHT=$xmrrestoreheight
|
|
elif [[ "$monerod_addr" ]]; then
|
|
# Use custom Monero node
|
|
CURRENT_XMR_HEIGHT=$(curl "http://$monerod_addr:$monerod_port/get_info" | jq .height)
|
|
else
|
|
# Use public node
|
|
CURRENT_XMR_HEIGHT=$(curl http://node3.monerodevs.org:18089/get_info | jq .height)
|
|
fi
|
|
|
|
# Use Tor if we want
|
|
enable_tor() {
|
|
if [[ "$tor_on" = 1 ]]; then
|
|
$HOME/.local/bin/bsx-enabletor
|
|
fi
|
|
}
|
|
|
|
# Use the custom Monero node & add wownero because its a small chain
|
|
if [[ "$particl_mnemonic" && "$monerod_addr" ]]; then
|
|
# Restore seed
|
|
PARTICL_MNEMONIC=$particl_mnemonic
|
|
XMR_RPC_HOST=$monerod_addr BASE_XMR_RPC_PORT=$monerod_port \
|
|
basicswap-prepare --datadir=$SWAP_DATADIR --withcoins=monero,wownero --xmrrestoreheight=$CURRENT_XMR_HEIGHT --wowrestoreheight=600000 --particl_mnemonic="$PARTICL_MNEMONIC"
|
|
enable_tor
|
|
elif [[ "$particl_mnemonic" ]]; then
|
|
# Restore seed
|
|
PARTICL_MNEMONIC=$particl_mnemonic
|
|
basicswap-prepare --datadir=$SWAP_DATADIR --withcoins=monero,wownero --xmrrestoreheight=$CURRENT_XMR_HEIGHT --wowrestoreheight=600000 --particl_mnemonic="$PARTICL_MNEMONIC"
|
|
enable_tor
|
|
elif [[ "$monerod_addr" ]]; then
|
|
# Setup new install and use a remote monero node
|
|
XMR_RPC_HOST=$monerod_addr BASE_XMR_RPC_PORT=$monerod_port \
|
|
basicswap-prepare --datadir=$SWAP_DATADIR --withcoins=monero,wownero --xmrrestoreheight=$CURRENT_XMR_HEIGHT --wowrestoreheight=600000
|
|
$red"\n\nMake note of your seed above\n"; $nocolor
|
|
enable_tor
|
|
else
|
|
# Setup new install using local nodes
|
|
basicswap-prepare --datadir=$SWAP_DATADIR --withcoins=monero,wownero --xmrrestoreheight=$CURRENT_XMR_HEIGHT --wowrestoreheight=600000
|
|
$red"\n\nMake note of your seed above\n"; $nocolor
|
|
enable_tor
|
|
fi
|
|
|
|
$green"Install complete.\n\nUse 'basicswap-bash' to run, 'bsx-update' to update, and 'bsx-addcoin' to add a coin\n"; $nocolor
|