-
Notifications
You must be signed in to change notification settings - Fork 54
/
config.json
55 lines (55 loc) · 1.17 KB
/
config.json
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
{
"txManagers": {
"A": {
"envKeyAddress": "ACCOUNT_ADDRESS_TEST",
"envKeySecret": "ACCOUNT_SECRET_TEST",
"interval": 200,
"maxFee_Eth": 1.5
}
},
"liquidators": [
{
"minRevenue": 0.1,
"maxRevenue": 5.0,
"maxHealth": null,
"numCandidates": 500,
"txManager": "A"
},
{
"minRevenue": 5.0,
"maxRevenue": null,
"maxHealth": null,
"numCandidates": 500,
"txManager": "A"
}
],
"network": {
"name": "mainnet",
"providers": [
{
"type": "IPC",
"envKeyPath": "PROVIDER_IPC_PATH"
},
{
"type": "HTTP_Infura",
"envKeyID": "PROVIDER_INFURA_ID"
}
]
},
"fetching": {
"cTokenServiceInterval": 1200000,
"accountServiceInterval": 600000,
"coinbaseReporter": 2000
},
"logging": {
"ipc": {
"Oracles>Set": false,
"Messages>CheckCandidatesLiquidity": false,
"Messages>CheckCandidatesLiquidityComplete": true,
"Messages>UpdateCandidates": false,
"Messages>MissedOpportunity": false,
"Candidates>Liquidate": false,
"Candidates>LiquidateWithPriceUpdate": false
}
}
}