forked from btcc-insight/bitcore
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbitcore-node.json.sample
More file actions
53 lines (53 loc) · 997 Bytes
/
bitcore-node.json.sample
File metadata and controls
53 lines (53 loc) · 997 Bytes
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
{
"network": "livenet",
"port": 3001,
"datadir": "/tmp",
"services": [
"p2p",
"db",
"header",
"block",
"mempool",
"address",
"transaction",
"timestamp",
"fee",
"insight-api",
"insight-ui",
"web"
],
"servicesConfig": {
"insight-api": {
"disableRateLimiter": true,
"enableCache": true,
"x_apiPrefix": "api",
"x_routePrefix": ""
},
"insight-ui": {
"x_apiPrefix": "api"
},
"p2p": {
"peers": [
{
"ip": {
"v4": "127.0.0.1"
},
"port": 10333
}
]
},
"fee": {
"rpc": {
"user": "local",
"pass": "local",
"host": "localhost",
"protocol": "http",
"port": 10332
"zmqpubrawtx":"tcp://127.0.0.1:38832",
"zmqpubhashtx":"tcp://127.0.0.1:38833",
"zmqpubhashblock":"tcp://127.0.0.1:38834",
"zmqpubrawblock":"tcp://127.0.0.1:38835"
}
}
}
}