-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathconfig.example.json
51 lines (51 loc) · 1.42 KB
/
config.example.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
{
"wallet": {
"addressKeyName": "testkey",
"addressRestoreMnemonic": "your mnemonic here",
"alloraHomeDir": "",
"gas": "auto",
"gasAdjustment": 1.2,
"gasPrices": "auto",
"gasPriceUpdateInterval": 60,
"maxFees": "500000",
"nodeRpc": "https://allora-rpc.testnet.allora.network",
"maxRetries": 5,
"retryDelay": 3,
"accountSequenceRetryDelay": 5,
"submitTx": true,
"blockDurationEstimated": 10,
"windowCorrectionFactor": 0.8,
"timeoutRPCSecondsQuery": 60,
"timeoutRPCSecondsTx": 300,
"timeoutRPCSecondsRegistration": 300,
"timeoutHTTPConnection": 10
},
"worker": [
{
"topicId": 1,
"inferenceEntrypointName": "apiAdapter",
"parameters": {
"InferenceEndpoint": "http://source:8000/inference/{Token}",
"Token": "ETH"
}
}
],
"reputer": [
{
"topicId": 1,
"groundTruthEntrypointName": "apiAdapter",
"lossFunctionEntrypointName": "apiAdapter",
"minStake": "100000000",
"groundTruthParameters": {
"GroundTruthEndpoint": "http://localhost:8888/gt/{Token}/{BlockHeight}",
"Token": "ETHUSD"
},
"lossFunctionParameters": {
"LossFunctionService": "http://localhost:5000",
"LossMethodOptions": {
"loss_method": "sqe"
}
}
}
]
}