mirror of
https://github.com/nahuhh/basicswap-bash.git
synced 2024-11-16 15:57:38 +00:00
Compare commits
4 commits
4f6a58c29a
...
41ae85ee08
Author | SHA1 | Date | |
---|---|---|---|
|
41ae85ee08 | ||
|
a4720f834b | ||
|
5c491184ff | ||
|
e8f3a7d964 |
10 changed files with 136 additions and 19 deletions
|
@ -1,5 +1,21 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
export SWAP_DATADIR=$HOME/coinswaps
|
export SWAP_DATADIR=$HOME/coinswaps
|
||||||
python3 -m venv "$SWAP_DATADIR/venv"
|
|
||||||
|
# Colors
|
||||||
|
red="echo -e -n \e[31;1m"
|
||||||
|
green="echo -e -n \e[32;1m"
|
||||||
|
nocolor="echo -e -n \e[0m"
|
||||||
|
|
||||||
|
if [[ -f $SWAP_DATADIR/particl/particl.pid ]]; then
|
||||||
|
bsx_pid=$(cat $SWAP_DATADIR/particl/particl.pid)
|
||||||
|
if [[ $bsx_pid ]]; then
|
||||||
|
bsx_run=$(pidof particld | grep $bsx_pid)
|
||||||
|
if [[ $bsx_run ]]; then
|
||||||
|
$red"\nError: BasicSwapDEX is already running.\n"; $nocolor
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
. $SWAP_DATADIR/venv/bin/activate && python -V
|
. $SWAP_DATADIR/venv/bin/activate && python -V
|
||||||
$HOME/.local/bin/bsx/startup.sh
|
$HOME/.local/bin/bsx/startup.sh
|
||||||
|
|
15
bsx-addcoin
15
bsx-addcoin
|
@ -1,10 +1,23 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
export SWAP_DATADIR=$HOME/coinswaps
|
||||||
|
|
||||||
# Colors
|
# Colors
|
||||||
red="echo -e -n \e[31;1m"
|
red="echo -e -n \e[31;1m"
|
||||||
green="echo -e -n \e[32;1m"
|
green="echo -e -n \e[32;1m"
|
||||||
nocolor="echo -e -n \e[0m"
|
nocolor="echo -e -n \e[0m"
|
||||||
|
|
||||||
|
# Check if basicswap is running
|
||||||
|
if [[ -f $SWAP_DATADIR/particl/particl.pid ]]; then
|
||||||
|
bsx_pid=$(cat $SWAP_DATADIR/particl/particl.pid)
|
||||||
|
if [[ $bsx_pid ]]; then
|
||||||
|
bsx_run=$(pidof particld | grep $bsx_pid)
|
||||||
|
if [[ $bsx_run ]]; then
|
||||||
|
$red"\nError: BasicSwapDEX is running.\n"; $nocolor
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
echo -e "BasicSwapDEX is currently:\n[1] Password protected\n[2] NOT password protected\n"
|
echo -e "BasicSwapDEX is currently:\n[1] Password protected\n[2] NOT password protected\n"
|
||||||
until [[ "$l" =~ ^[12]$ ]]; do
|
until [[ "$l" =~ ^[12]$ ]]; do
|
||||||
read -p 'Select an option [1|2]: ' l
|
read -p 'Select an option [1|2]: ' l
|
||||||
|
@ -28,6 +41,6 @@ read -p 'Select an option [1|2]: ' l
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
export SWAP_DATADIR=$HOME/coinswaps
|
|
||||||
. $SWAP_DATADIR/venv/bin/activate && python -V
|
. $SWAP_DATADIR/venv/bin/activate && python -V
|
||||||
$HOME/.local/bin/bsx/addcoin.sh
|
$HOME/.local/bin/bsx/addcoin.sh
|
||||||
|
|
|
@ -1,10 +1,23 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
export SWAP_DATADIR=$HOME/coinswaps
|
||||||
|
|
||||||
# Colors
|
# Colors
|
||||||
red="echo -e -n \e[31;1m"
|
red="echo -e -n \e[31;1m"
|
||||||
green="echo -e -n \e[32;1m"
|
green="echo -e -n \e[32;1m"
|
||||||
nocolor="echo -e -n \e[0m"
|
nocolor="echo -e -n \e[0m"
|
||||||
|
|
||||||
|
# Check if basicswap is running
|
||||||
|
if [[ -f $SWAP_DATADIR/particl/particl.pid ]]; then
|
||||||
|
bsx_pid=$(cat $SWAP_DATADIR/particl/particl.pid)
|
||||||
|
if [[ $bsx_pid ]]; then
|
||||||
|
bsx_run=$(pidof particld | grep $bsx_pid)
|
||||||
|
if [[ $bsx_run ]]; then
|
||||||
|
$red"\nError: BasicSwapDEX is running.\n"; $nocolor
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
echo -e "BasicSwapDEX is currently:\n[1] Password protected\n[2] NOT password protected\n"
|
echo -e "BasicSwapDEX is currently:\n[1] Password protected\n[2] NOT password protected\n"
|
||||||
until [[ "$l" =~ ^[12]$ ]]; do
|
until [[ "$l" =~ ^[12]$ ]]; do
|
||||||
read -p 'Select an option [1|2]: ' l
|
read -p 'Select an option [1|2]: ' l
|
||||||
|
@ -28,6 +41,6 @@ read -p 'Select an option [1|2]: ' l
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
export SWAP_DATADIR=$HOME/coinswaps
|
|
||||||
. $SWAP_DATADIR/venv/bin/activate && python -V
|
. $SWAP_DATADIR/venv/bin/activate && python -V
|
||||||
$HOME/.local/bin/bsx/disabletor.sh
|
$HOME/.local/bin/bsx/disabletor.sh
|
||||||
|
|
|
@ -1,10 +1,23 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
export SWAP_DATADIR=$HOME/coinswaps
|
||||||
|
|
||||||
# Colors
|
# Colors
|
||||||
red="echo -e -n \e[31;1m"
|
red="echo -e -n \e[31;1m"
|
||||||
green="echo -e -n \e[32;1m"
|
green="echo -e -n \e[32;1m"
|
||||||
nocolor="echo -e -n \e[0m"
|
nocolor="echo -e -n \e[0m"
|
||||||
|
|
||||||
|
# Check if basicswap is running
|
||||||
|
if [[ -f $SWAP_DATADIR/particl/particl.pid ]]; then
|
||||||
|
bsx_pid=$(cat $SWAP_DATADIR/particl/particl.pid)
|
||||||
|
if [[ $bsx_pid ]]; then
|
||||||
|
bsx_run=$(pidof particld | grep $bsx_pid)
|
||||||
|
if [[ $bsx_run ]]; then
|
||||||
|
$red"\nError: BasicSwapDEX is running.\n"; $nocolor
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
echo -e "BasicSwapDEX is currently:\n[1] Password protected\n[2] NOT password protected\n"
|
echo -e "BasicSwapDEX is currently:\n[1] Password protected\n[2] NOT password protected\n"
|
||||||
until [[ "$l" =~ ^[12]$ ]]; do
|
until [[ "$l" =~ ^[12]$ ]]; do
|
||||||
read -p 'Select an option [1|2]: ' l
|
read -p 'Select an option [1|2]: ' l
|
||||||
|
@ -28,6 +41,6 @@ read -p 'Select an option [1|2]: ' l
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
export SWAP_DATADIR=$HOME/coinswaps
|
|
||||||
. $SWAP_DATADIR/venv/bin/activate && python -V
|
. $SWAP_DATADIR/venv/bin/activate && python -V
|
||||||
$HOME/.local/bin/bsx/enabletor.sh
|
$HOME/.local/bin/bsx/enabletor.sh
|
||||||
|
|
|
@ -1,10 +1,23 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
export SWAP_DATADIR=$HOME/coinswaps
|
||||||
|
|
||||||
# Colors
|
# Colors
|
||||||
red="echo -e -n \e[31;1m"
|
red="echo -e -n \e[31;1m"
|
||||||
green="echo -e -n \e[32;1m"
|
green="echo -e -n \e[32;1m"
|
||||||
nocolor="echo -e -n \e[0m"
|
nocolor="echo -e -n \e[0m"
|
||||||
|
|
||||||
|
# Check if basicswap is running
|
||||||
|
if [[ -f $SWAP_DATADIR/particl/particl.pid ]]; then
|
||||||
|
bsx_pid=$(cat $SWAP_DATADIR/particl/particl.pid)
|
||||||
|
if [[ $bsx_pid ]]; then
|
||||||
|
bsx_run=$(pidof particld | grep $bsx_pid)
|
||||||
|
if [[ $bsx_run ]]; then
|
||||||
|
$red"\nError: BasicSwapDEX is running.\n"; $nocolor
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
echo -e "BasicSwapDEX is currently:\n[1] Password protected\n[2] NOT password protected\n"
|
echo -e "BasicSwapDEX is currently:\n[1] Password protected\n[2] NOT password protected\n"
|
||||||
until [[ "$l" =~ ^[12]$ ]]; do
|
until [[ "$l" =~ ^[12]$ ]]; do
|
||||||
read -p 'Select an option [1|2]: ' l
|
read -p 'Select an option [1|2]: ' l
|
||||||
|
@ -28,6 +41,6 @@ read -p 'Select an option [1|2]: ' l
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
export SWAP_DATADIR=$HOME/coinswaps
|
|
||||||
. $SWAP_DATADIR/venv/bin/activate && python -V
|
. $SWAP_DATADIR/venv/bin/activate && python -V
|
||||||
$HOME/.local/bin/bsx/removecoin.sh
|
$HOME/.local/bin/bsx/removecoin.sh
|
||||||
|
|
18
bsx-update
18
bsx-update
|
@ -1,5 +1,23 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
export SWAP_DATADIR=$HOME/coinswaps
|
export SWAP_DATADIR=$HOME/coinswaps
|
||||||
|
|
||||||
|
# Colors
|
||||||
|
red="echo -e -n \e[31;1m"
|
||||||
|
green="echo -e -n \e[32;1m"
|
||||||
|
nocolor="echo -e -n \e[0m"
|
||||||
|
|
||||||
|
# Check if basicswap is running
|
||||||
|
if [[ -f $SWAP_DATADIR/particl/particl.pid ]]; then
|
||||||
|
bsx_pid=$(cat $SWAP_DATADIR/particl/particl.pid)
|
||||||
|
if [[ $bsx_pid ]]; then
|
||||||
|
bsx_run=$(pidof particld | grep $bsx_pid)
|
||||||
|
if [[ $bsx_run ]]; then
|
||||||
|
$red"\nError: BasicSwapDEX is running.\n"; $nocolor
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
. $SWAP_DATADIR/venv/bin/activate && python -V
|
. $SWAP_DATADIR/venv/bin/activate && python -V
|
||||||
|
|
||||||
if [ -f /usr/local/bin/bsx/update.sh ]; then
|
if [ -f /usr/local/bin/bsx/update.sh ]; then
|
||||||
|
|
|
@ -1,10 +1,23 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
export SWAP_DATADIR=$HOME/coinswaps
|
||||||
|
|
||||||
# Colors
|
# Colors
|
||||||
red="echo -e -n \e[31;1m"
|
red="echo -e -n \e[31;1m"
|
||||||
green="echo -e -n \e[32;1m"
|
green="echo -e -n \e[32;1m"
|
||||||
nocolor="echo -e -n \e[0m"
|
nocolor="echo -e -n \e[0m"
|
||||||
|
|
||||||
|
# Check if basicswap is running
|
||||||
|
if [[ -f $SWAP_DATADIR/particl/particl.pid ]]; then
|
||||||
|
bsx_pid=$(cat $SWAP_DATADIR/particl/particl.pid)
|
||||||
|
if [[ $bsx_pid ]]; then
|
||||||
|
bsx_run=$(pidof particld | grep $bsx_pid)
|
||||||
|
if [[ $bsx_run ]]; then
|
||||||
|
$red"\nError: BasicSwapDEX is running.\n"; $nocolor
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
echo -e "BasicSwapDEX is currently:\n[1] Password protected\n[2] NOT password protected\n"
|
echo -e "BasicSwapDEX is currently:\n[1] Password protected\n[2] NOT password protected\n"
|
||||||
until [[ "$l" =~ ^[12]$ ]]; do
|
until [[ "$l" =~ ^[12]$ ]]; do
|
||||||
read -p 'Select an option [1|2]: ' l
|
read -p 'Select an option [1|2]: ' l
|
||||||
|
@ -28,6 +41,6 @@ read -p 'Select an option [1|2]: ' l
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
export SWAP_DATADIR=$HOME/coinswaps
|
|
||||||
. $SWAP_DATADIR/venv/bin/activate && python -V
|
. $SWAP_DATADIR/venv/bin/activate && python -V
|
||||||
$HOME/.local/bin/bsx/upgradecoins.sh
|
$HOME/.local/bin/bsx/upgradecoins.sh
|
||||||
|
|
10
bsx/setup.sh
10
bsx/setup.sh
|
@ -7,10 +7,8 @@ nocolor="echo -e -n \e[0m"
|
||||||
|
|
||||||
## Download & Install coincurve stuff
|
## Download & Install coincurve stuff
|
||||||
cd $SWAP_DATADIR
|
cd $SWAP_DATADIR
|
||||||
wget -O coincurve-anonswap.zip https://github.com/tecnovert/coincurve/archive/refs/tags/anonswap_v0.2.zip
|
git clone https://github.com/basicswap/coincurve -b basicswap_v0.2 coincurve-basicswap
|
||||||
unzip -d coincurve-anonswap coincurve-anonswap.zip
|
cd $SWAP_DATADIR/coincurve-basicswap
|
||||||
mv -f ./coincurve-anonswap/*/{.,}* ./coincurve-anonswap || true
|
|
||||||
cd $SWAP_DATADIR/coincurve-anonswap
|
|
||||||
$SWAP_DATADIR/venv/bin/pip install .
|
$SWAP_DATADIR/venv/bin/pip install .
|
||||||
|
|
||||||
## Clone basicswap git
|
## Clone basicswap git
|
||||||
|
@ -18,6 +16,7 @@ cd $SWAP_DATADIR
|
||||||
git clone https://github.com/basicswap/basicswap
|
git clone https://github.com/basicswap/basicswap
|
||||||
cd $SWAP_DATADIR/basicswap
|
cd $SWAP_DATADIR/basicswap
|
||||||
## Install basicswap
|
## Install basicswap
|
||||||
|
$SWAP_DATADIR/venv/bin/pip install wheel
|
||||||
$SWAP_DATADIR/venv/bin/pip install .
|
$SWAP_DATADIR/venv/bin/pip install .
|
||||||
|
|
||||||
## Decide a source for Monero's restore height
|
## Decide a source for Monero's restore height
|
||||||
|
@ -63,4 +62,5 @@ else
|
||||||
enable_tor
|
enable_tor
|
||||||
fi
|
fi
|
||||||
|
|
||||||
$green"Install complete.\n\nUse 'basicswap-bash' to run, 'bsx-update' to update, and 'bsx-addcoin' to add a coin\n"; $nocolor
|
$green"Install complete.\n\nUse 'basicswap-bash' to run, 'bsx-update' to update, and 'bsx-addcoin' to add a coin\n\nYou'll need to open a new login shell (a new terminal window) for the start scripts to be recognized.\n";$nocolor
|
||||||
|
$red"XFCE will require you to logout / login";$nocolor
|
||||||
|
|
|
@ -30,4 +30,4 @@ $SWAP_DATADIR/venv/bin/pip install .
|
||||||
$HOME/.local/bin/bsx/auto_coinupd8.sh
|
$HOME/.local/bin/bsx/auto_coinupd8.sh
|
||||||
|
|
||||||
# Cleanup
|
# Cleanup
|
||||||
rm -rf basicswap-bash core_versions
|
rm -rf basicswap-bash
|
||||||
|
|
32
install.sh
32
install.sh
|
@ -1,10 +1,23 @@
|
||||||
#/bin/bash
|
#/bin/bash
|
||||||
|
export SWAP_DATADIR=$HOME/coinswaps
|
||||||
|
|
||||||
# Colors
|
# Colors
|
||||||
red="echo -e -n \e[31;1m"
|
red="echo -e -n \e[31;1m"
|
||||||
green="echo -e -n \e[32;1m"
|
green="echo -e -n \e[32;1m"
|
||||||
nocolor="echo -e -n \e[0m"
|
nocolor="echo -e -n \e[0m"
|
||||||
|
|
||||||
|
# Check if basicswap is running
|
||||||
|
if [[ -f $SWAP_DATADIR/particl/particl.pid ]]; then
|
||||||
|
bsx_pid=$(cat $SWAP_DATADIR/particl/particl.pid)
|
||||||
|
if [[ $bsx_pid ]]; then
|
||||||
|
bsx_run=$(pidof particld | grep $bsx_pid)
|
||||||
|
if [[ $bsx_run ]]; then
|
||||||
|
$red"\nError: BasicSwapDEX is already installed.\n"; $nocolor
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
# Title Bar
|
# Title Bar
|
||||||
$green "\n"
|
$green "\n"
|
||||||
title="BasicSwapDEX Installer"
|
title="BasicSwapDEX Installer"
|
||||||
|
@ -66,9 +79,9 @@ detect_os_arch
|
||||||
|
|
||||||
## Update & Install dependencies
|
## Update & Install dependencies
|
||||||
echo -e "\n\nInstalling dependencies\nPress CTRL-C at password prompt(s) to skip. If skipped, you must install the dependencies manually before proceeding"
|
echo -e "\n\nInstalling dependencies\nPress CTRL-C at password prompt(s) to skip. If skipped, you must install the dependencies manually before proceeding"
|
||||||
$green"$UPDATE\n$INSTALL $DEPENDENCY git curl wget unzip automake libtool jq\n"; $nocolor
|
$green"$UPDATE\n$INSTALL $DEPENDENCY curl automake libtool jq\n"; $nocolor
|
||||||
$UPDATE
|
$UPDATE
|
||||||
$INSTALL $DEPENDENCY git curl wget unzip automake libtool jq
|
$INSTALL $DEPENDENCY curl automake libtool jq
|
||||||
|
|
||||||
# Enable tor
|
# Enable tor
|
||||||
echo -e "\n\n[1] Tor ON (requires sudo)\n[2] Tor OFF\n"
|
echo -e "\n\n[1] Tor ON (requires sudo)\n[2] Tor OFF\n"
|
||||||
|
@ -169,19 +182,24 @@ if ! [[ $trasherdk ]]; then
|
||||||
mkdir -p $HOME/.local/bin
|
mkdir -p $HOME/.local/bin
|
||||||
fi
|
fi
|
||||||
# Move scripts to .local/bin
|
# Move scripts to .local/bin
|
||||||
if [ -d $HOME/.local/bin/bsx ]; then
|
if [[ -d $HOME/.local/bin/bsx ]]; then
|
||||||
rm -r $HOME/.local/bin/bsx* $HOME/.local/bin/basicswap-bash
|
rm -r $HOME/.local/bin/bsx* $HOME/.local/bin/basicswap-bash
|
||||||
fi
|
fi
|
||||||
mv -f -t $HOME/.local/bin/ basicswap-bash bsx*
|
mv -f -t $HOME/.local/bin/ basicswap-bash bsx*
|
||||||
# Enable .profile detection on XFCE
|
# Enable .profile detection on XFCE
|
||||||
xfce_check=$(echo $XDG_CURRENT_DESKTOP | grep XFCE)
|
xfce_check=$(echo $XDG_CURRENT_DESKTOP | grep XFCE)
|
||||||
xsessionrc_check=$(cat ~/.xsessionrc | grep '. ~/.profile')
|
if [[ $xfce_chek ]]; then
|
||||||
if [[ $xfce_chek ]] && [[ -z $xsessionrc_check ]]; then
|
if [[ -f $HOME/.xsessionrc ]]; then
|
||||||
echo '. ~/.profile' | tee -a ~/.xsessionrc
|
xsessionrc_check=$(cat ~/.xsessionrc | grep '. ~/.profile')
|
||||||
|
if [[ -z $xsessionrc_check ]]; then
|
||||||
|
echo '. ~/.profile' | tee -a ~/.xsessionrc
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo '. ~/.profile' | tee -a ~/.xsessionrc
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
## Make venv and set variables for install
|
## Make venv and set variables for install
|
||||||
export SWAP_DATADIR=$HOME/coinswaps
|
|
||||||
export monerod_addr=$monerod_addr
|
export monerod_addr=$monerod_addr
|
||||||
export monerod_port=$monerod_port
|
export monerod_port=$monerod_port
|
||||||
export particl_mnemonic=$particl_mnemonic
|
export particl_mnemonic=$particl_mnemonic
|
||||||
|
|
Loading…
Reference in a new issue