add vps scripts for reference

This commit is contained in:
woodser 2023-11-12 07:14:59 -05:00
parent a47290bac7
commit 280ed484e7
11 changed files with 222 additions and 2 deletions

View file

@ -0,0 +1,17 @@
#!/bin/bash
#
# Start arbitrator GUI on Monero's stagenet (Haveno testnet)
runArbitrator() {
./haveno-desktop --baseCurrencyNetwork=XMR_STAGENET \
--useLocalhostForP2P=false \
--useDevPrivilegeKeys=false \
--nodePort=7777 \
--appName=haveno-XMR_STAGENET_arbitrator \
--xmrNode=http://127.0.0.1:38088 \
--xmrNodeUsername=admin \
--xmrNodePassword=password
}
cd /home/haveno/haveno && \
runArbitrator