-
Notifications
You must be signed in to change notification settings - Fork 8
/
config.example
45 lines (33 loc) · 1.06 KB
/
config.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/bash
#
# `cp config.example config`
#
# Create a long random passphrase and user/pass and fill in below
#
# @author webworker01
# @link https://developers.atomicdex.io/basic-docs/atomicdex-api-legacy/
#Path to mm2 executables
mmpath=${HOME}/atomicDEX-API/target/debug/
#Location for mmtools.log or set to blank to disable
mmtoolslogfile=$HOME/mmtools.log
#Net ID to join
netid=7777
#Wallet Passphrase / Seed Phrase
#Put double quotes around passphrases with spaces in them
passphrase=""
#RPC password
userpass=
#Set default mode for connecting to a blockchain (electrum|daemon)
default_coin_mode="electrum"
# Auto connect to these electrums on ./start (requires automation=1)
auto_enable=('KMD' 'VRSC' 'WSB' 'SOULJA')
#Required confirmations
required_confirmations=2
# (1|0) Enable automation helpers? e.g. automatically set required confs after enabling a coin
automation=1
# (1|0) Enable remote data from komodostats.com for price info etc
remote=1
# Enable cipi's mmtools/mpm integration
mpm_enable=0
#Date format for logging
datetime=$(date '+%Y-%m-%d %H:%M:%S')