joininbox/scripts/menu.send.sh
2023-04-17 11:21:27 +01:00

212 lines
5.3 KiB
Bash
Executable file

#!/bin/bash
source /home/joinmarket/joinin.conf
source /home/joinmarket/_functions.sh
checkRPCwallet
# wallet
chooseWallet
# mixdepth
trap 'rm -f "$mixdepth"' EXIT
mixdepth=$(mktemp -p /dev/shm/)
dialog --backtitle "Choose a mixdepth to send from" \
--title "Choose a mixdepth to send from" \
--inputbox "
From the wallet: $walletFileName
mixdepth: $(cat "$mixdepth")
send: $amountsats
coinjoin: $makercountMessage
miner fee: $txfeeMessage
destination address:
$(cat "$address")
change address (optional):
$changeAddressMessage
Enter a number between 0 to 4 to choose the mixdepth" 19 69 2> "$mixdepth"
openMenuIfCancelled $?
# amount
trap 'rm -f "$amount"' EXIT
amount=$(mktemp -p /dev/shm/)
dialog --backtitle "Choose the amount" \
--title "Choose the amount" \
--inputbox "
From the wallet: $walletFileName
mixdepth: $(cat "$mixdepth")
send: $amountsats
coinjoin: $makercountMessage
miner fee: $txfeeMessage
destination address:
$(cat "$address")
change address (optional):
$changeAddressMessage
Enter the amount to send in satoshis
Use 0 to sweep the mixdepth without a change output" 20 69 2> "$amount"
openMenuIfCancelled $?
amountsats="$(cat "$amount") sats"
# makercount
trap 'rm -f "$makercount"' EXIT
makercount=$(mktemp -p /dev/shm/)
dialog --backtitle "Choose the makercount" \
--title "Choose the makercount" \
--inputbox "
From the wallet: $walletFileName
mixdepth: $(cat "$mixdepth")
send: $amountsats
coinjoin: $makercountMessage
miner fee: $txfeeMessage
destination address:
$(cat "$address")
change address (optional):
$changeAddressMessage
Enter the number of makers to coinjoin with (min 4)
Leave empty for the default 5-9 (randomized)
Enter 0 to send without a coinjoin." 21 69 2> "$makercount"
openMenuIfCancelled $?
varMakercount=$(cat "$makercount")
if [ ${#varMakercount} -eq 0 ]; then
makercountMessage="with 5-9 (randomized) makers"
makercountOption=""
elif [ "$varMakercount" = "0" ]; then
makercountMessage="none"
makercountOption="-N 0"
else
makercountMessage="with $varMakercount makers"
makercountOption="-N $varMakercount"
fi
# txfee
trap 'rm -f "$txfee"' EXIT
txfee=$(mktemp -p /dev/shm/)
dialog --backtitle "Choose the miner fee" \
--title "Choose the miner fee" \
--inputbox "
From the wallet: $walletFileName
mixdepth: $(cat "$mixdepth")
send: $amountsats
coinjoin: $makercountMessage
miner fee: $txfeeMessage
destination address:
$(cat "$address")
change address (optional):
$changeAddressMessage
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)" 20 69 2> "$txfee"
openMenuIfCancelled $?
varTxfee=$(cat "$txfee")
if [ ${#varTxfee} -eq 0 ]; then
txfeeMessage="default (set in the joinmarket.cfg)"
txfeeOption=""
else
txfeeMessage="$varTxfee sat/byte"
if [ ${varTxfee} -eq 1 ]; then
# https://github.com/openoms/joininbox/issues/64
txfeeOption="--txfee=1001"
else
txfeeOption="--txfee=$((varTxfee * 1000))"
fi
fi
# address
trap 'rm -f "$address"' EXIT
address=$(mktemp -p /dev/shm/)
dialog --backtitle "Choose the address" \
--title "Choose the address" \
--inputbox "
From the wallet: $walletFileName
mixdepth: $(cat "$mixdepth")
send: $amountsats
coinjoin: $makercountMessage
miner fee: $txfeeMessage
destination address:
$(cat "$address")
change address (optional):
$changeAddressMessage
Paste the destination address" 19 69 2> "$address"
openMenuIfCancelled $?
# changeAddress
trap 'rm -f "$changeAdress"' EXIT
changeAddress=$(mktemp -p /dev/shm/)
if [ "$amountsats" != "0 sats" ]; then
dialog --backtitle "Custom change address" \
--title "Custom change address" \
--inputbox "
From the wallet: $walletFileName
mixdepth: $(cat "$mixdepth")
send: $amountsats
coinjoin: $makercountMessage
miner fee: $txfeeMessage
destination address:
$(cat "$address")
change address (optional):
$changeAddressMessage
Paste the address to receive the change to
or leave empty to use an internal address in the mixdepth$(cat $mixdepth)" 20 69 2> "$changeAddress"
openMenuIfCancelled $?
fi
varChangeAddress=$(cat "$changeAddress")
if [ "$amountsats" = "0 sats" ]; then
changeAddressMessage="none"
changeAddressOption=""
elif [ ${#varChangeAddress} -eq 0 ]; then
changeAddressMessage="internal address in m$(cat $mixdepth)"
changeAddressOption=""
else
changeAddressMessage="$varChangeAddress"
changeAddressOption="--custom-change $varChangeAddress"
fi
if [ "${RPCoverTor}" = "on" ]; then
tor="torsocks"
else
tor=""
fi
# check command
dialog --backtitle "Confirm the details" \
--title "Confirm the details" \
--yesno "
From the wallet: $walletFileName
mixdepth: $(cat "$mixdepth")
send: $amountsats
coinjoin: $makercountMessage
miner fee: $txfeeMessage
destination address:
$(cat "$address")
change address (optional):
$changeAddressMessage" 17 69
# 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 $changeAddressOption
"
# run
$tor python ~/joinmarket-clientserver/scripts/sendpayment.py \
-m "$(cat "$mixdepth")" $makercountOption "$(cat "$wallet")" \
"$(cat "$amount")" "$(cat "$address")" $txfeeOption $changeAddressOption
;;
1)
echo "Cancelled"
exit 1
;;
255)
echo "ESC pressed."
exit 1
;;
esac