mirror of
https://github.com/haveno-dex/haveno.git
synced 2024-10-01 01:35:48 -04:00
17 lines
432 B
Bash
17 lines
432 B
Bash
|
#!/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
|