@dashevo/dapi-client 3.0.1 → 3.1.0-dev.3

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.
@@ -8,4 +8,3 @@ Parameters:
8
8
  | **contractId** | String | yes | A valid registered contractId |
9
9
 
10
10
  Returns : Promise<Buffer>
11
-
@@ -14,4 +14,3 @@ Parameters:
14
14
  | **options.startAfter** | Number | yes | exclusive skip |
15
15
 
16
16
  Returns : Promise<Buffer[]>
17
-
@@ -8,4 +8,3 @@ Parameters:
8
8
  | **id** | String | yes | A valid registered identity |
9
9
 
10
10
  Returns : Promise<!Buffer|null>
11
-
@@ -214,7 +214,7 @@ class ReconnectableStream extends EventEmitter {
214
214
  this.logger.debug(`[ReconnectableStream] Error in stream, code ${e.code}, e:`, e);
215
215
 
216
216
  // In case of cancellation nothing has to happen.
217
- // Do not retry UNKNOWN error code - HACH for grpc-web that ignores following error that happens
217
+ // Do not retry UNKNOWN error code - HACK for grpc-web that ignores following error that happens
218
218
  // in a while after stream cancellation
219
219
  // Error message:
220
220
  // "Response closed without grpc-status (Headers only) {
@@ -285,7 +285,7 @@ class ReconnectableStream extends EventEmitter {
285
285
  this.clearTimeout(this.reconnectTimeout);
286
286
  this.reconnectTimeout = null;
287
287
  // eslint-disable-next-line no-unused-expressions
288
- this.logger.debug('[ReconnectableStream] Stoped auto reconnect');
288
+ this.logger.debug('[ReconnectableStream] Stopped auto reconnect');
289
289
  }
290
290
  }
291
291
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dashevo/dapi-client",
3
- "version": "3.0.1",
3
+ "version": "3.1.0-dev.3",
4
4
  "description": "Client library used to access Dash DAPI endpoints",
5
5
  "main": "lib/index.js",
6
6
  "contributors": [
@@ -26,11 +26,11 @@
26
26
  }
27
27
  ],
28
28
  "dependencies": {
29
- "@dashevo/dapi-grpc": "3.0.1",
30
- "@dashevo/dash-spv": "4.0.1",
29
+ "@dashevo/dapi-grpc": "3.1.0-dev.3",
30
+ "@dashevo/dash-spv": "4.1.0-dev.3",
31
31
  "@dashevo/dashcore-lib": "~0.22.0",
32
- "@dashevo/grpc-common": "3.0.1",
33
- "@dashevo/wasm-dpp": "3.0.1",
32
+ "@dashevo/grpc-common": "3.1.0-dev.3",
33
+ "@dashevo/wasm-dpp": "3.1.0-dev.3",
34
34
  "bs58": "^4.0.1",
35
35
  "cbor": "^8.0.0",
36
36
  "google-protobuf": "^3.12.2",
@@ -52,10 +52,7 @@
52
52
  "core-js": "^3.33.1",
53
53
  "crypto-browserify": "^3.12.1",
54
54
  "dirty-chai": "^2.0.1",
55
- "eslint": "^8.53.0",
56
- "eslint-config-airbnb-base": "^15.0.0",
57
- "eslint-plugin-import": "^2.29.0",
58
- "eslint-plugin-jsdoc": "^46.9.0",
55
+ "eslint": "^9.18.0",
59
56
  "events": "^3.3.0",
60
57
  "karma": "^6.4.3",
61
58
  "karma-chai": "^0.1.0",
@@ -70,13 +67,13 @@
70
67
  "path-browserify": "^1.0.1",
71
68
  "process": "^0.11.10",
72
69
  "setimmediate": "^1.0.5",
73
- "sinon": "^17.0.1",
70
+ "sinon": "^18.0.1",
74
71
  "sinon-chai": "^3.7.0",
75
72
  "stream-browserify": "^3.0.0",
76
73
  "string_decoder": "^1.3.0",
77
74
  "url": "^0.11.3",
78
75
  "util": "^0.12.4",
79
- "webpack": "^5.94.0",
76
+ "webpack": "^5.104.0",
80
77
  "webpack-cli": "^4.9.1"
81
78
  },
82
79
  "files": [
@@ -1,9 +0,0 @@
1
- {
2
- "env": {
3
- "node": true,
4
- "mocha": true
5
- },
6
- "rules": {
7
- "import/no-extraneous-dependencies": "off"
8
- }
9
- }