-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json.example
66 lines (66 loc) · 1.55 KB
/
config.json.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"app": {
"slack": {
"enable": false,
"oAuth-token": "oAuth token",
"signing-secret": "12345678901234567890123456789012",
"port": "1405",
"channels": [],
"subscriptions": []
},
"discord": {
"enable": true,
"bot-token": "",
"channels": [],
"subscriptions": []
},
"telegram": {
"enable": false,
"bot": "",
"subscriptions": []
}
},
"chain": "injective",
"rpcs": [
"https://injective-rpc.publicnode.com",
"https://sentry.tm.injective.network",
"https://1rpc.io/inj-rpc"
],
"api": "https://lcd.injective.network",
"features": {
"faucet": {
"enable": true,
"params": {}
},
"gov": {
"enable": true,
"params": {}
},
"validators": {
"enable": true,
"params": {
"threshold": 1000,
"signing_window": 100000,
"min_signed_per_window": 0.5,
"jailed_duration": "600s",
"prefix": "inj"
}
},
"peggo": {
"enable": true,
"params": {}
},
"ibc": {
"enable": true,
"params": {}
},
"consensus": {
"enable": true,
"params": {}
},
"wallet": {
"enable": true,
"params": {}
}
}
}