Skip to content

Commit

Permalink
fix: correct example config.json deployment files (#720)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcroote authored Apr 4, 2024
1 parent cf5f387 commit f753245
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 44 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@
"cloudProvider": {
"type": "aws",
"region": "us-east-1",
"disableConcurrencyReservations": false, // Use for (type = gcp | aws) only
"projectId": "${GCP_PROJECT_ID}" // Use for (type = gcp) only
"disableConcurrencyReservations": false
},
"heartbeat": {
"enabled": true,
Expand Down Expand Up @@ -88,9 +87,9 @@
],
"httpSignedData": [
{
"endpointId": "0xd4b0718c9a3316dbd831e6d01058202e5dde20a116304419f0d79e07a82b46bf",
"endpointId": "0xf10f067e716dd8b9c91b818e3a933b880ecb3929c04a6cd234c171aa27c6eefe",
"oisTitle": "CoinGecko Requests",
"endpointName": "coinGeckoMarketData"
"endpointName": "coinMarketData"
}
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,22 @@
}
},
"type": "evm",
"options": {},
"maxConcurrency": 100,
"gasPriceOracle": [
{
"gasPriceStrategy": "providerRecommendedGasPrice",
"recommendedGasPriceMultiplier": 1.2
},
{
"gasPriceStrategy": "constantGasPrice",
"gasPrice": {
"value": 10,
"unit": "gwei"
"options": {
"gasPriceOracle": [
{
"gasPriceStrategy": "providerRecommendedGasPrice",
"recommendedGasPriceMultiplier": 1.2
},
{
"gasPriceStrategy": "constantGasPrice",
"gasPrice": {
"value": 10,
"unit": "gwei"
}
}
}
],
]
},
"blockHistoryLimit": 300,
"minConfirmations": 0
}
Expand Down Expand Up @@ -66,7 +67,9 @@
"endpointName": "convertToUSD",
"cacheResponses": false
}
]
],
"http": [],
"httpSignedData": []
},
"templates": [],
"ois": [
Expand Down Expand Up @@ -95,10 +98,6 @@
{
"in": "query",
"name": "amount"
},
{
"in": "query",
"name": "date"
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@
"cloudProvider": {
"type": "aws",
"region": "us-east-1",
"disableConcurrencyReservations": false, // Use for (type = gcp | aws) only
"projectId": "${GCP_PROJECT_ID}" // Use for (type = gcp) only
"disableConcurrencyReservations": false
},
"heartbeat": {
"enabled": true,
Expand Down Expand Up @@ -88,9 +87,9 @@
],
"httpSignedData": [
{
"endpointId": "0xd4b0718c9a3316dbd831e6d01058202e5dde20a116304419f0d79e07a82b46bf",
"endpointId": "0xf10f067e716dd8b9c91b818e3a933b880ecb3929c04a6cd234c171aa27c6eefe",
"oisTitle": "CoinGecko Requests",
"endpointName": "coinGeckoMarketData"
"endpointName": "coinMarketData"
}
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,22 @@
}
},
"type": "evm",
"options": {},
"maxConcurrency": 100,
"gasPriceOracle": [
{
"gasPriceStrategy": "providerRecommendedGasPrice",
"recommendedGasPriceMultiplier": 1.2
},
{
"gasPriceStrategy": "constantGasPrice",
"gasPrice": {
"value": 10,
"unit": "gwei"
"options": {
"gasPriceOracle": [
{
"gasPriceStrategy": "providerRecommendedGasPrice",
"recommendedGasPriceMultiplier": 1.2
},
{
"gasPriceStrategy": "constantGasPrice",
"gasPrice": {
"value": 10,
"unit": "gwei"
}
}
}
],
]
},
"blockHistoryLimit": 300,
"minConfirmations": 0
}
Expand Down Expand Up @@ -66,7 +67,9 @@
"endpointName": "convertToUSD",
"cacheResponses": false
}
]
],
"http": [],
"httpSignedData": []
},
"templates": [],
"ois": [
Expand Down Expand Up @@ -95,10 +98,6 @@
{
"in": "query",
"name": "amount"
},
{
"in": "query",
"name": "date"
}
]
}
Expand Down

0 comments on commit f753245

Please sign in to comment.