@sentio/runtime 2.18.0 → 2.18.1-rc.2

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/endpoints.js CHANGED
@@ -1,6 +1,6 @@
1
1
  class Endpoints {
2
2
  static INSTANCE = new Endpoints();
3
- concurrency = 4;
3
+ concurrency = 8;
4
4
  chainQueryAPI = '';
5
5
  priceFeedAPI = '';
6
6
  chainServer = new Map();
@@ -1 +1 @@
1
- {"version":3,"file":"endpoints.js","sourceRoot":"","sources":["../src/endpoints.ts"],"names":[],"mappings":"AAAA,MAAa,SAAS;IACpB,MAAM,CAAC,QAAQ,GAAc,IAAI,SAAS,EAAE,CAAA;IAE5C,WAAW,GAAG,CAAC,CAAA;IACf,aAAa,GAAG,EAAE,CAAA;IAClB,YAAY,GAAG,EAAE,CAAA;IAEjB,WAAW,GAAG,IAAI,GAAG,EAAkB,CAAA;;SAP5B,SAAS","sourcesContent":["export class Endpoints {\n static INSTANCE: Endpoints = new Endpoints()\n\n concurrency = 4\n chainQueryAPI = ''\n priceFeedAPI = ''\n\n chainServer = new Map<string, string>()\n}\n"]}
1
+ {"version":3,"file":"endpoints.js","sourceRoot":"","sources":["../src/endpoints.ts"],"names":[],"mappings":"AAAA,MAAa,SAAS;IACpB,MAAM,CAAC,QAAQ,GAAc,IAAI,SAAS,EAAE,CAAA;IAE5C,WAAW,GAAG,CAAC,CAAA;IACf,aAAa,GAAG,EAAE,CAAA;IAClB,YAAY,GAAG,EAAE,CAAA;IAEjB,WAAW,GAAG,IAAI,GAAG,EAAkB,CAAA;;SAP5B,SAAS","sourcesContent":["export class Endpoints {\n static INSTANCE: Endpoints = new Endpoints()\n\n concurrency = 8\n chainQueryAPI = ''\n priceFeedAPI = ''\n\n chainServer = new Map<string, string>()\n}\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/runtime",
3
- "version": "2.18.0",
3
+ "version": "2.18.1-rc.2",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "exports": {
@@ -31,10 +31,10 @@
31
31
  "prom-client": "^14.2.0",
32
32
  "protobufjs": "^7.2.3",
33
33
  "winston": "^3.8.2",
34
- "@sentio/protos": "2.18.0"
34
+ "@sentio/protos": "2.18.1-rc.2"
35
35
  },
36
36
  "peerDependencies": {
37
- "@sentio/sdk": "^2.18.0"
37
+ "@sentio/sdk": "^2.18.1-rc.2"
38
38
  },
39
39
  "devDependencies": {
40
40
  "@types/command-line-args": "^5.2.0",
package/src/endpoints.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  export class Endpoints {
2
2
  static INSTANCE: Endpoints = new Endpoints()
3
3
 
4
- concurrency = 4
4
+ concurrency = 8
5
5
  chainQueryAPI = ''
6
6
  priceFeedAPI = ''
7
7