-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathconfig.cdk.json.template
47 lines (47 loc) · 1.84 KB
/
config.cdk.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
{
"wallet": {
"addressKeyName": "_ALLORA_WALLET_ADDRESS_KEY_NAME_",
"addressRestoreMnemonic": "_ALLORA_WALLET_ADDRESS_RESTORE_MNEMONIC_",
"alloraHomeDir": "_ALLORA_WALLET_HOME_DIR_",
"gas": "_ALLORA_WALLET_GAS_",
"gasAdjustment": _ALLORA_WALLET_GAS_ADJUSTMENT_,
"gasPrices": "_ALLORA_WALLET_GAS_PRICES_",
"gasPriceUpdateInterval": _ALLORA_WALLET_GAS_PRICE_INTERVAL_,
"maxFees": _ALLORA_WALLET_MAX_FEES_,
"nodeRpc": "_ALLORA_WALLET_NODE_RPC_",
"maxRetries": _ALLORA_WALLET_MAX_RETRIES_,
"retryDelay": _ALLORA_WALLET_RETRY_DELAY_,
"accountSequenceRetryDelay": _ALLORA_WALLET_ACCOUNT_SEQUENCE_RETRY_DELAY_,
"submitTx": _ALLORA_WALLET_SUBMIT_TX_,
"blockDurationEstimated": _ALLORA_WALLET_BLOCK_DURATION_ESTIMATED_,
"windowCorrectionFactor": _ALLORA_WALLET_WINDOW_CORRECTION_FACTOR_
},
"worker": [
{
"topicId": _ALLORA_WORKER_TOPIC_ID_,
"inferenceEntrypointName": "_ALLORA_WORKER_INFERENCE_ENTRYPOINT_NAME_",
"parameters": {
"InferenceEndpoint": "_ALLORA_WORKER_INFERENCE_ENDPOINT_",
"Token": "_ALLORA_WORKER_TOKEN_"
}
}
],
"reputer": [
{
"topicId": _ALLORA_REPUTER_TOPIC_ID_,
"groundTruthEntrypointName": "_ALLORA_REPUTER_ENTRYPOINT_NAME_",
"lossFunctionEntrypointName": "_ALLORA_REPUTER_ENTRYPOINT_NAME_",
"minStake": _ALLORA_REPUTER_MIN_STAKE_,
"groundTruthParameters": {
"GroundTruthEndpoint": "_ALLORA_REPUTER_SOURCE_OF_TRUTH_ENDPOINT_",
"Token": "_ALLORA_REPUTER_TOKEN_"
},
"lossFunctionParameters": {
"LossFunctionService": "_ALLORA_REPUTER_LOSS_FUNCTION_SERVICE_",
"LossMethodOptions": {
"loss_method": "_ALLORA_REPUTER_LOSS_METHOD_OPTIONS_LOSS_METHOD_"
}
}
}
]
}