-
Notifications
You must be signed in to change notification settings - Fork 11
/
example.config.js
40 lines (40 loc) · 1.09 KB
/
example.config.js
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
module.exports = {
fillClusterSize: 4,
clusterSize: 10,
mongo: {
url: 'mongodb://localhost:27017',
dbName: 'eosdac',
traceCollection: 'traces',
stateCollection: 'states'
},
amq: {
connectionString: 'amqp://user:pass@host/vhost'
},
ws: {
host: '127.0.0.1',
port: '3030'
},
ipc: {
id: 'livenotifications',
appspace: 'eosdac.'
},
eos: {
chainId: "e70aaab8997e1dfce58fbfac80cbbb8fecec7b99cf982a9444273cbc64c41473",
endpoint: 'http://jungle2.eosdac.io:8882',
wsEndpoint: 'ws://jungle2.eosdac.io:8080',
msigContract: 'eosio.msig',
dacGenesisBlock: 12345, // the first block that includes any dac contract actions including the initial setcode
dacDirectoryContract: 'dacdirectory',
dacMsigContract: 'dacmultisigs',
legacyDacs: ['eos.dac'],
dacDirectoryMode: 'all',
dacDirectoryDacId: ''
},
logger: {
level: "info",
environment: "jungle",
datadog: {
apiKey: ""
}
}
};