-
Notifications
You must be signed in to change notification settings - Fork 5
/
ravencore-node.json.template
47 lines (47 loc) · 1.12 KB
/
ravencore-node.json.template
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
{
"network": "regtest",
"port": 3001,
"services": [
"ravend",
"web",
"insight-api",
"insight-ui"
],
"messageLog": "",
"servicesConfig": {
"web": {
"disablePolling": false,
"enableSocketRPC": true,
"disableCors": true
},
"insight-ui": {
"routePrefix": "",
"apiPrefix": "api"
},
"insight-api": {
"routePrefix": "api",
"coinTicker" : "https://api.coinmarketcap.com/v1/ticker/ravencoin/?convert=USD",
"coinShort": "RVN",
"db": {
"host": "127.0.0.1",
"port": "27017",
"database": "raven-api-regtest",
"user": "test",
"password": "test1234"
}
},
"ravend": {
"sendTxLog": "/home/ubuntu/.ravencore/pushtx.log",
"spawn": {
"datadir": "{{ABSOLUTE PATH TO devnode/data DIRECTORY}}",
"exec": "{{ABSOLUTE PATH TO ravend EXECUTABLE}}",
"rpcqueue": 1000,
"rpcport": 8766,
"zmqpubrawtx": "tcp://127.0.0.1:28332",
"zmqpubhashblock": "tcp://127.0.0.1:28332",
"rpcuser": "ravencoin",
"rpcpassword": "local321"
}
}
}
}