-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathconfig.example
More file actions
117 lines (85 loc) · 3.15 KB
/
config.example
File metadata and controls
117 lines (85 loc) · 3.15 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/bin/bash
#
# Usage:
# cp config.example config
#
# Fill in your nn_address and nn_pubkey and make any relevant preference or system specific changes
#
# @author webworker01
#
#Full path to komodo-cli
komodocli=/usr/local/bin/komodo-cli
#Full path to komodod
komodod="$HOME/komodo/src/komodod"
#set the season to allow different setups when we're between seasons
nn_season=6
#set to 1 if this is the server for third party coins, else leave as 0
thirdpartycoins=0
#Set internal iguana port (current 7776 for first party, 7779 for third party)
iguanaport=7776
#Enter your notary node compressed address (no quotes)
nn_address=
#Enter your notary node compressed pubkey (no quotes)
nn_pubkey=
#Enter your notary node IPv4 address
nn_ipaddress=
#Enter address to send excess mined funds to (compressed address no quotes)
send_mined_to_address=
#Enter the number of mined utxos to accumulate before sending away
send_mined_utxo_count=
#Whitelist other addresses incoming funds are expected from - own address is automatically whitelisted
whitelist_addresses=("RKrMB4guHxm52Tx9LG8kK3T5UhhjVuRand" "RVB7Vd4JbbjQPV1WE5ZdeWmWo5EjMpXDH6" "RDragoNHdwovvsDLSLMiAEzEArAD3kq6FN")
#or disable whitelisting for all coins
#whitelist_address=""
#Skip applying whitelist addresses when starting these coins
skip_whitelist=('VOTE2022' 'PIRATE')
#Date format for logging
datetime=$(date '+%Y-%m-%d %H:%M:%S')
#Loop stats script every this many seconds
sleepytime=600
#Else change to false if you don't want it to loop
#sleepytime=false
#How many transactions back to scan for notarizations
txscanamount=777
#Lower threshold for KMD utxos
kmdutxoqty=50
#Lower threshold for assetchain utxos
acutxoqty=50
#Lower threshold for LTC utxos
ltcutxoqty=50
#Lower threshold for third party coin utxos
otherutxoqty=50
#Standard tx fee amount for KMD
txfeeperkb=0.000035
#Standard tx fee amount for Smartchains
sctxfeeperkb=0.000035
#size to monitor for in bytes
monitorsize=20000000
monitorsizekmd=20000000
monitorsizeother=20000000
#You can modify this list of ACs to exclude or comment out the line to show all
ignoreacs=('VOTE2018' 'VOTE2019' 'BEER' 'PIZZA')
#Location for nntools.log or set to blank to disable
nntoolslogfile=$HOME/nntools.log
#Define coins that are sprout
sproutcoins=('OOT' 'ZILLA')
#Add additional -addnode parameters for coin daemons
addnodes="-addnode=seed.komodostats.com -addnode=seed.webworker.sh"
#Configure initial seeds to connect to iguana network
#S6 1p seed examples
dpowseeds=('209.222.101.247' '103.195.100.32' '77.75.121.138' '77.75.121.140' '77.74.197.115' '158.69.18.121' '167.114.197.249' '15.235.64.45')
#S6 3p seed examples
#dpowseeds=('199.127.60.142' '104.238.221.61' '77.75.121.139' '77.74.197.116' '77.74.197.118' '158.69.18.122' '167.114.197.250' '15.235.82.132')
#which notaryid to use as reference node when checking masks (0 to 63)
referencenode=7
#additional address entries (used for checkaddresses and wallet reset scripts, safe to leave blank if not using these)
#(fill in on 1st party server)
ltc_address=
#(fill in on 3rd party server)
chips_address=
emc2_address=
aya_address=
sfusd_address=
mil_address=
#Number of threads to start mining with
miner_threads=1