mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-05-02 06:36:22 -04:00
add vps scripts for reference
This commit is contained in:
parent
a47290bac7
commit
280ed484e7
11 changed files with 222 additions and 2 deletions
17
scripts/deployment/run-arbitrator-daemon.sh
Normal file
17
scripts/deployment/run-arbitrator-daemon.sh
Normal file
|
@ -0,0 +1,17 @@
|
|||
#!/bin/bash
|
||||
#
|
||||
# Start arbitrator daemon on Monero's stagenet (Haveno testnet)
|
||||
|
||||
runArbitrator() {
|
||||
./haveno-daemon --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
|
Loading…
Add table
Add a link
Reference in a new issue