@sentio/runtime 2.62.0-rc.6 → 2.62.0-rc.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/{chunk-RPV67F56.js → chunk-YBKSM3GO.js} +5 -5
- package/lib/{chunk-RPV67F56.js.map → chunk-YBKSM3GO.js.map} +1 -1
- package/lib/index.js +1 -1
- package/lib/processor-runner.js +4 -4
- package/lib/processor-runner.js.map +1 -1
- package/lib/service-worker.js +4 -4
- package/lib/service-worker.js.map +1 -1
- package/package.json +1 -1
- package/src/endpoints.ts +4 -4
- package/src/processor-runner.ts +3 -3
- package/src/service-worker.ts +3 -3
@@ -37883,14 +37883,14 @@ var Endpoints = class _Endpoints {
|
|
37883
37883
|
batchCount = 1;
|
37884
37884
|
};
|
37885
37885
|
function configureEndpoints(options) {
|
37886
|
-
const fullPath = path.resolve(options
|
37886
|
+
const fullPath = path.resolve(options.chainsConfig);
|
37887
37887
|
const chainsConfig = import_fs_extra.default.readJsonSync(fullPath);
|
37888
37888
|
const concurrencyOverride = process.env["OVERRIDE_CONCURRENCY"] ? parseInt(process.env["OVERRIDE_CONCURRENCY"]) : void 0;
|
37889
37889
|
const batchCountOverride = process.env["OVERRIDE_BATCH_COUNT"] ? parseInt(process.env["OVERRIDE_BATCH_COUNT"]) : void 0;
|
37890
37890
|
Endpoints.INSTANCE.concurrency = concurrencyOverride ?? options.concurrency;
|
37891
|
-
Endpoints.INSTANCE.batchCount = batchCountOverride ?? options
|
37892
|
-
Endpoints.INSTANCE.chainQueryAPI = options
|
37893
|
-
Endpoints.INSTANCE.priceFeedAPI = options
|
37891
|
+
Endpoints.INSTANCE.batchCount = batchCountOverride ?? options.batchCount;
|
37892
|
+
Endpoints.INSTANCE.chainQueryAPI = options.chainqueryServer;
|
37893
|
+
Endpoints.INSTANCE.priceFeedAPI = options.pricefeedServer;
|
37894
37894
|
for (const [id2, config] of Object.entries(chainsConfig)) {
|
37895
37895
|
const chainConfig = config;
|
37896
37896
|
if (chainConfig.ChainServer) {
|
@@ -59780,4 +59780,4 @@ long/umd/index.js:
|
|
59780
59780
|
@noble/curves/esm/secp256k1.js:
|
59781
59781
|
(*! noble-curves - MIT License (c) 2022 Paul Miller (paulmillr.com) *)
|
59782
59782
|
*/
|
59783
|
-
//# sourceMappingURL=chunk-
|
59783
|
+
//# sourceMappingURL=chunk-YBKSM3GO.js.map
|