mirror of
https://github.com/openoms/joininbox.git
synced 2026-08-13 12:33:14 +02:00
119 lines
No EOL
2.9 KiB
Bash
Executable file
119 lines
No EOL
2.9 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
source /home/joinmarket/joinin.conf
|
|
source /home/joinmarket/_functions.sh
|
|
|
|
# wallet
|
|
chooseWallet
|
|
|
|
# mixdepth
|
|
mixdepth=$(mktemp -p /dev/shm/)
|
|
dialog --backtitle "Choose a mixdepth to send from" \
|
|
--title "Choose a mixdepth to send from" \
|
|
--inputbox "
|
|
Enter a number between 0 to 4 to choose the mixdepth" 9 60 2> "$mixdepth"
|
|
openMenuIfCancelled $?
|
|
|
|
# makercount
|
|
makercount=$(mktemp -p /dev/shm/)
|
|
dialog --backtitle "Choose the makercount" \
|
|
--title "Choose the makercount" \
|
|
--inputbox "
|
|
Enter the number of makers to coinjoin with (min 4)
|
|
Leave empty for the default 5-7 (randomized)
|
|
Enter 0 to send without a coinjoin." 11 60 2> "$makercount"
|
|
openMenuIfCancelled $?
|
|
varMakercount=$(cat "$makercount")
|
|
if [ ${#varMakercount} -eq 0 ]; then
|
|
makercountMessage="coinjoined with 5-7 (randomized) makers"
|
|
makercountOption=""
|
|
elif [ "$varMakercount" = "0" ]; then
|
|
makercountMessage="no coinjoin"
|
|
makercountOption="-N 0"
|
|
else
|
|
makercountMessage="coinjoined with $varMakercount makers"
|
|
makercountOption="-N $varMakercount"
|
|
fi
|
|
|
|
# amount
|
|
amount=$(mktemp -p /dev/shm/)
|
|
dialog --backtitle "Choose the amount" \
|
|
--title "Choose the amount" \
|
|
--inputbox "
|
|
Enter the amount to send in satoshis
|
|
Use 0 to sweep the mixdepth without a change output" 10 60 2> "$amount"
|
|
openMenuIfCancelled $?
|
|
|
|
# txfee
|
|
txfee=$(mktemp -p /dev/shm/)
|
|
dialog --backtitle "Choose the miner fee" \
|
|
--title "Choose the miner fee" \
|
|
--inputbox "
|
|
Enter the miner fee to be used for the transaction in sat/byte
|
|
Leave empty to use the default fee (set in the joinmarket.cfg)" 10 67 2> "$txfee"
|
|
openMenuIfCancelled $?
|
|
varTxfee=$(cat "$txfee")
|
|
if [ ${#varTxfee} -eq 0 ]; then
|
|
txfeeMessage="default (set in the joinmarket.cfg)"
|
|
txfeeOption=""
|
|
else
|
|
txfeeMessage="$varTxfee sat/byte"
|
|
txfeeOption="--txfee=$((varTxfee * 1000))"
|
|
fi
|
|
|
|
# address
|
|
address=$(mktemp -p /dev/shm/)
|
|
dialog --backtitle "Choose the address" \
|
|
--title "Choose the address" \
|
|
--inputbox "
|
|
Paste the destination address" 9 60 2> "$address"
|
|
openMenuIfCancelled $?
|
|
|
|
if [ "${RPCoverTor}" = "on" ]; then
|
|
tor="torify"
|
|
else
|
|
tor=""
|
|
fi
|
|
|
|
# check command
|
|
dialog --backtitle "Confirm the details" \
|
|
--title "Confirm the details" \
|
|
--yesno "
|
|
Send: $(cat "$amount") sats
|
|
|
|
From the wallet:
|
|
$(sed "s#$walletPath##g" < "$wallet" )
|
|
mixdepth: $(cat "$mixdepth")
|
|
|
|
to the address:
|
|
$(cat "$address")
|
|
|
|
$makercountMessage.
|
|
|
|
Miner fee: $txfeeMessage" 18 60
|
|
|
|
# make decison
|
|
pressed=$?
|
|
case $pressed in
|
|
0)
|
|
clear
|
|
# display
|
|
echo "Running the command:
|
|
$tor python sendpayment.py \
|
|
-m $(cat "$mixdepth") $makercountOption $(sed "s#$walletPath##g" < "$wallet" ) \
|
|
$(cat "$amount") $(cat "$address") $txfeeOption
|
|
"
|
|
# run
|
|
$tor python ~/joinmarket-clientserver/scripts/sendpayment.py \
|
|
-m "$(cat "$mixdepth")" $makercountOption "$(cat "$wallet")" \
|
|
"$(cat "$amount")" "$(cat "$address")" $txfeeOption
|
|
;;
|
|
1)
|
|
echo "Cancelled"
|
|
exit 1
|
|
;;
|
|
255)
|
|
echo "ESC pressed."
|
|
exit 1
|
|
;;
|
|
esac |