@metamask/snaps-execution-environments 0.37.0-flask.1 → 0.37.2-flask.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -339
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -6,344 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
- ## [0.37.0-flask.1]
9
+ ## [0.37.2-flask.1]
10
10
  ### Changed
11
- - No changes this release.
11
+ - Release package independently ([#1600](https://github.com/MetaMask/snaps/pull/1600))
12
+ - The version of the package no longer needs to match the version of all other
13
+ MetaMask Snaps packages.
12
14
 
13
- ## [0.36.1-flask.1]
14
- ### Changed
15
- - No changes this release.
16
-
17
- ## [0.36.0-flask.1]
18
- ### Changed
19
- - Unblock `wallet_requestSnaps` and add dynamic permission support ([#1421](https://github.com/MetaMask/snaps/pull/1421))
20
-
21
- ## [0.35.2-flask.1]
22
- ### Fixed
23
- - Fix type issue introduced by [#1532](https://github.com/MetaMask/snaps/pull/1532) ([#1541](https://github.com/MetaMask/snaps/pull/1541))
24
-
25
- ## [0.35.1-flask.1]
26
- ### Changed
27
- - No changes this release.
28
-
29
- ## [0.35.0-flask.1]
30
- ### Changed
31
- - **BREAKING:** Build packages as both CJS and ESM ([#1519](https://github.com/MetaMask/snaps/pull/1519), ([#1532](https://github.com/MetaMask/snaps/pull/1532)))
32
- - This is breaking in the sense that imports to `dist/` will now require you to import either `dist/cjs` or `dist/esm`.
33
- - Add `sideEffects: false` ([#1486](https://github.com/MetaMask/snaps/pull/1486))
34
- - Refactored bundling process to reduce bundle size ([#1458](https://github.com/MetaMask/snaps/pull/1458))
35
-
36
- ### Removed
37
- - **BREAKING:** Remove support for `keyring` export ([#1527](https://github.com/MetaMask/snaps/pull/1527))
38
-
39
- ## [0.34.1-flask.1]
40
- ### Changed
41
- - Deploy `iframe-execution-environment` from this repository ([#1406](https://github.com/MetaMask/snaps/pull/1406))
42
-
43
- ## [0.34.0-flask.1]
44
- ### Changed
45
- - Improve JSON sanitization ([#1405](https://github.com/MetaMask/snaps/pull/1405), [#1457](https://github.com/MetaMask/snaps/pull/1457))
46
-
47
- ## [0.33.1-flask.1]
48
- ### Changed
49
- - No changes this release.
50
-
51
- ## [0.33.0-flask.1]
52
- ### Changed
53
- - **BREAKING:** Block `wallet_requestPermissions` ([#1371](https://github.com/MetaMask/snaps-monorepo/pull/1371))
54
- - Add console endowment that prepends snap IDs to log output ([#1355](https://github.com/MetaMask/snaps-monorepo/pull/1355))
55
- - Add Web Worker support for snap execution ([#1320](https://github.com/MetaMask/snaps-monorepo/pull/1320))
56
-
57
- ### Fixed
58
- - Fix Math endowment in Node.js ([#1347](https://github.com/MetaMask/snaps-monorepo/pull/1347))
59
-
60
- ## [0.32.2]
61
- ### Changed
62
- - No changes this release.
63
-
64
- ## [0.32.1]
65
- ### Changed
66
- - No changes this release.
67
-
68
- ## [0.32.0]
69
- ### Changed
70
- - Build execution environments with Browserify and LavaMoat ([#1262](https://github.com/MetaMask/snaps-monorepo/pull/1262))
71
- - Harden events ([#1221](https://github.com/MetaMask/snaps-monorepo/pull/1221))
72
-
73
- ### Fixed
74
- - Fix unbound endowments ([#1299](https://github.com/MetaMask/snaps-monorepo/pull/1299))
75
-
76
- ## [0.31.0]
77
- ### Changed
78
- - **BREAKING:** Target `ES2020` ([#1247](https://github.com/MetaMask/snaps-monorepo/pull/1247))
79
- - **BREAKING:** Disallow requesting `eth_requestAccounts` and `wallet_requestSnaps` RPC methods ([#1256](https://github.com/MetaMask/snaps-monorepo/pull/1256))
80
- - Snaps globalThis now has proper self-referential properties ([#1174](https://github.com/MetaMask/snaps-monorepo/pull/1174))
81
-
82
- ## [0.30.0]
83
- ### Changed
84
- - Harden custom endowments ([#1172](https://github.com/MetaMask/snaps-monorepo/pull/1172))
85
- - Properly secure `snap` and `ethereum` request functions ([#1214](https://github.com/MetaMask/snaps-monorepo/pull/1214))
86
- - Properly sandbox iframe and inline SES in execution bundles ([#1193](https://github.com/MetaMask/snaps-monorepo/pull/1193))
87
- - SES is now inlined in `index.html`
88
-
89
- ## [0.29.0]
90
- ### Added
91
- - Harden endowments ([#1058](https://github.com/MetaMask/snaps-monorepo/pull/1058))
92
- - Constrain `Date` and timeouts ([#1118](https://github.com/MetaMask/snaps-monorepo/pull/1118))
93
-
94
- ### Changed
95
- - **BREAKING:** Improve request function types ([#1014](https://github.com/MetaMask/snaps-monorepo/pull/1014))
96
- - `snap.request` is now strongly typed in line with the JSON-RPC methods in the `rpc-methods` package
97
-
98
- ## [0.28.0]
99
- ### Added
100
- - Add experimental offscreen execution environment ([#1082](https://github.com/MetaMask/snaps-monorepo/pull/1082))
101
-
102
- ### Changed
103
- - Add proxy for `ethereum` global ([#1087](https://github.com/MetaMask/snaps-monorepo/pull/1087))
104
-
105
- ### Removed
106
- - **BREAKING:** Remove `WebSocket` endowment ([#1122](https://github.com/MetaMask/snaps-monorepo/pull/1122))
107
-
108
- ## [0.27.1]
109
- ### Changed
110
- - No changes this release.
111
-
112
- ## [0.27.0]
113
- ### Changed
114
- - **BREAKING:** Move all internal types from `snaps-types` to `snaps-utils` ([#1060](https://github.com/MetaMask/snaps-monorepo/pull/1060))
115
-
116
- ## [0.26.2]
117
- ### Fixed
118
- - Fix usage of wrong `ethereum` global for `ethereum` endowment ([#1064](https://github.com/MetaMask/snaps-monorepo/pull/1064))
119
-
120
- ## [0.26.1]
121
- ### Changed
122
- - No changes this release.
123
-
124
- ## [0.26.0]
125
- ### Changed
126
- - No changes this release.
127
-
128
- ## [0.25.0]
129
- ### Changed
130
- - No changes this release.
131
-
132
- ## [0.24.1]
133
- ### Changed
134
- - No changes this release.
135
-
136
- ## [0.24.0]
137
- ### Added
138
- - Add transaction insight caveat for accessing transaction origin ([#902](https://github.com/MetaMask/snaps-monorepo/pull/902))
139
- - Add permission validation to `snap.manifest.json` ([#910](https://github.com/MetaMask/snaps-monorepo/pull/910))
140
- - Add `Math` endowment factory ([#888](https://github.com/MetaMask/snaps-monorepo/pull/888))
141
-
142
- ### Changed
143
- - **BREAKING:** Rename package to start with `snaps-` ([#937](https://github.com/MetaMask/snaps-monorepo/pull/937))
144
- - **BREAKING:** Remove `wallet` global in favor of `snap` and `ethereum` ([#939](https://github.com/MetaMask/snaps-monorepo/pull/939), [#964](https://github.com/MetaMask/snaps-monorepo/pull/964))
145
-
146
- ## [0.23.0]
147
- ### Added
148
- - Add snap cronjobs ([#651](https://github.com/MetaMask/snaps-monorepo/pull/651))
149
-
150
- ### Changed
151
- - **BREAKING:** Replace Buffer with Typed Arrays ([#878](https://github.com/MetaMask/snaps-monorepo/pull/878))
152
- - Improve execution environment type validation ([#844](https://github.com/MetaMask/snaps-monorepo/pull/844))
153
-
154
- ## [0.22.3]
155
- ### Fixed
156
- - Fix missing properties on WebSocket MessageEvent ([#845](https://github.com/MetaMask/snaps-monorepo/pull/845))
157
-
158
- ## [0.22.2]
159
- ### Fixed
160
- - Throw an error when response is unserializable ([#840](https://github.com/MetaMask/snaps-monorepo/pull/840))
161
-
162
- ## [0.22.1]
163
- ### Changed
164
- - No changes this release.
165
-
166
- ## [0.22.0]
167
- ### Added
168
- - Add Snap Keyring support ([#728](https://github.com/MetaMask/snaps-monorepo/pull/728), [#700](https://github.com/MetaMask/snaps-monorepo/pull/700))
169
-
170
- ## [0.21.0]
171
- ### Removed
172
- - **BREAKING:** Remove origin parameter from transaction insight payload ([#730](https://github.com/MetaMask/snaps-monorepo/pull/730))
173
-
174
- ## [0.20.0]
175
- ### Added
176
- - **BREAKING:** Add Transaction Insight API ([#642](https://github.com/MetaMask/snaps-monorepo/pull/642))
177
- - Part of this change made changes to the execution environments to support multiple request handlers
178
- - It also changed the exports of `@metamask/snaps-execution-environments`
179
-
180
- ## [0.19.1]
181
- ### Changed
182
- - No changes this release.
183
-
184
- ## [0.19.0]
185
- ### Fixed
186
- - Fixed network teardown so that snaps can't be escape by late returning promises ([#661](https://github.com/MetaMask/snaps-monorepo/pull/661))
187
-
188
- ## [0.18.1]
189
- ### Fixed
190
- - Fix error serialization issues ([#637](https://github.com/MetaMask/snaps-monorepo/pull/637))
191
-
192
- ## [0.18.0]
193
- ### Changed
194
- - Reduce TypeScript compilation target to ES2017 ([#628](https://github.com/MetaMask/snaps-monorepo/pull/628))
195
-
196
- ### Fixed
197
- - Fix `crypto` and `SubtleCrypto` endowments ([#631](https://github.com/MetaMask/snaps-monorepo/pull/631))
198
-
199
- ## [0.17.0]
200
- ### Added
201
- - Add Node.js `child_process` execution environment ([#523](https://github.com/MetaMask/snaps-monorepo/pull/523))
202
- - Add Node.js `worker_threads` execution environment ([#587](https://github.com/MetaMask/snaps-monorepo/pull/587))
203
- - Added network endowment teardown ([#514](https://github.com/MetaMask/snaps-monorepo/pull/514))
204
-
205
- ### Changed
206
- - **BREAKING:** Bump minimum Node version to 16 ([#601](https://github.com/MetaMask/snaps-monorepo/pull/601))
207
- - Monitor outbound snap requests to pause request timeout ([#593](https://github.com/MetaMask/snaps-monorepo/pull/593))
208
-
209
- ### Removed
210
- - Remove WebWorker implementation ([#591](https://github.com/MetaMask/snaps-monorepo/pull/591))
211
-
212
- ## [0.16.0]
213
- ### Changed
214
- - **BREAKING:** Snaps are now required to export `onRpcRequest` to receive RPC requests ([#481](https://github.com/MetaMask/snaps-monorepo/pull/481), [#533](https://github.com/MetaMask/snaps-monorepo/pull/533), [#538](https://github.com/MetaMask/snaps-monorepo/pull/538), [#541](https://github.com/MetaMask/snaps-monorepo/pull/541))
215
- - Snaps can no longer run timers outside of pending RPC requests ([#490](https://github.com/MetaMask/snaps-monorepo/pull/490))
216
-
217
- ### Removed
218
- - **BREAKING:** Remove `wallet.registerRpcMessageHandler` support [#481](https://github.com/MetaMask/snaps-monorepo/pull/481)
219
-
220
- ### Fixed
221
- - Fix issue with iframe error reporting ([#501](https://github.com/MetaMask/snaps-monorepo/pull/501))
222
-
223
- ## [0.15.0]
224
- ### Fixed
225
- - Added missing properties to `WebAssembly` global ([#459](https://github.com/MetaMask/snaps-monorepo/pull/459))
226
- - Fix interval handle leak ([#485](https://github.com/MetaMask/snaps-monorepo/pull/485))
227
- - Fix timer handle leak ([#483](https://github.com/MetaMask/snaps-monorepo/pull/483))
228
-
229
- ## [0.14.0]
230
- ### Changed
231
- - **BREAKING:** Increase TypeScript compilation target to ES2020 ([#449](https://github.com/MetaMask/snaps-monorepo/pull/449))
232
- - This should not be breaking for consumers on any non-deprecated browser or Node.js version.
233
-
234
- ## [0.13.0]
235
- ### Changed
236
- - **BREAKING:** Change `execution-environment` build output ([#424](https://github.com/MetaMask/snaps-monorepo/pull/424))
237
-
238
- ## [0.12.0]
239
- ### Added
240
- - Add support for endowment teardown ([#407](https://github.com/MetaMask/snaps-monorepo/pull/407))
241
-
242
- ## [0.11.1]
243
- ### Changed
244
- - No changes this release.
245
-
246
- ## [0.11.0]
247
- ### Changed
248
- - Bump `ses` to `0.15.15` ([#396](https://github.com/MetaMask/snaps-monorepo/pull/396))
249
- - Upgraded TypeScript version to minimum 4.4 ([#360](https://github.com/MetaMask/snaps-monorepo/pull/360))
250
- - Remove cross-fetch ([#349](https://github.com/MetaMask/snaps-monorepo/pull/349))
251
-
252
- ## [0.10.7]
253
- ### Added
254
- - Add setInterval and clearInterval as default endowments ([#326](https://github.com/MetaMask/snaps-monorepo/pull/326))
255
-
256
- ### Changed
257
- - **BREAKING:** Bump minimum Node version from 12 to 14 ([#331](https://github.com/MetaMask/snaps-monorepo/pull/331))
258
-
259
- ### Fixed
260
- - Fix missing properties on WebAssembly endowment ([#334](https://github.com/MetaMask/snaps-monorepo/pull/334))
261
-
262
- ## [0.10.6]
263
- ### Fixed
264
- - Fix function endowment bindings ([#311](https://github.com/MetaMask/snaps-monorepo/pull/311))
265
-
266
- ## [0.10.5]
267
- ### Fixed
268
- - Fix missing index.js ([#303](https://github.com/MetaMask/snaps-monorepo/pull/303))
269
-
270
- ## [0.10.4]
271
- ### Fixed
272
- - Fix endowed global functions with properties ([#294](https://github.com/MetaMask/snaps-monorepo/pull/294))
273
- - Endowments like `Date` were missing all properties except `name` and `length`, causing e.g. `Date.now` to be `undefined`. This is no longer the case.
274
-
275
- ## [0.10.3]
276
- ### Changed
277
- - No changes this release.
278
-
279
- ## [0.10.2]
280
- ### Fixed
281
- - Remove faulty postinstall script ([#279](https://github.com/MetaMask/snaps-monorepo/pull/279))
282
- - The faulty script caused the installation of this package to fail for consumers.
283
-
284
- ## [0.10.1]
285
- ### Fixed
286
- - Removed deprecated package ([#272](https://github.com/MetaMask/snaps-monorepo/pull/272))
287
- - This package now uses the functionally equivalent `@metamask/providers` instead of the deprecated `@metamask/inpage-provider`.
288
-
289
- ## [0.10.0]
290
- ### Changed
291
- - Initial release, made using components from the deprecated [`@metamask/snap-workers`](https://npmjs.com/package/@metamask/snap-workers) package. ([#231](https://github.com/MetaMask/snaps-monorepo/pull/231))
292
- - Breaking changes are relative to the old package.
293
- - **BREAKING:** Endowments must be passed to the execution environment ([#252](https://github.com/MetaMask/snaps-monorepo/pull/252)), ([#266](https://github.com/MetaMask/snaps-monorepo/pull/266))
294
- - Previously, default endowments were specified in the execution environment itself. Now, all endowments must be specified in the `executeSnap` RPC parameters, except for the `wallet` API object.
295
- - Add endowments to the global `self` in addition to `window` ([#263](https://github.com/MetaMask/snaps-monorepo/pull/263))
296
-
297
- [Unreleased]: https://github.com/MetaMask/snaps/compare/v0.37.0-flask.1...HEAD
298
- [0.37.0-flask.1]: https://github.com/MetaMask/snaps/compare/v0.36.1-flask.1...v0.37.0-flask.1
299
- [0.36.1-flask.1]: https://github.com/MetaMask/snaps/compare/v0.36.0-flask.1...v0.36.1-flask.1
300
- [0.36.0-flask.1]: https://github.com/MetaMask/snaps/compare/v0.35.2-flask.1...v0.36.0-flask.1
301
- [0.35.2-flask.1]: https://github.com/MetaMask/snaps/compare/v0.35.1-flask.1...v0.35.2-flask.1
302
- [0.35.1-flask.1]: https://github.com/MetaMask/snaps/compare/v0.35.0-flask.1...v0.35.1-flask.1
303
- [0.35.0-flask.1]: https://github.com/MetaMask/snaps/compare/v0.34.1-flask.1...v0.35.0-flask.1
304
- [0.34.1-flask.1]: https://github.com/MetaMask/snaps/compare/v0.34.0-flask.1...v0.34.1-flask.1
305
- [0.34.0-flask.1]: https://github.com/MetaMask/snaps/compare/v0.33.1-flask.1...v0.34.0-flask.1
306
- [0.33.1-flask.1]: https://github.com/MetaMask/snaps/compare/v0.33.0-flask.1...v0.33.1-flask.1
307
- [0.33.0-flask.1]: https://github.com/MetaMask/snaps/compare/v0.32.2...v0.33.0-flask.1
308
- [0.32.2]: https://github.com/MetaMask/snaps/compare/v0.32.1...v0.32.2
309
- [0.32.1]: https://github.com/MetaMask/snaps/compare/v0.32.0...v0.32.1
310
- [0.32.0]: https://github.com/MetaMask/snaps/compare/v0.31.0...v0.32.0
311
- [0.31.0]: https://github.com/MetaMask/snaps/compare/v0.30.0...v0.31.0
312
- [0.30.0]: https://github.com/MetaMask/snaps/compare/v0.29.0...v0.30.0
313
- [0.29.0]: https://github.com/MetaMask/snaps/compare/v0.28.0...v0.29.0
314
- [0.28.0]: https://github.com/MetaMask/snaps/compare/v0.27.1...v0.28.0
315
- [0.27.1]: https://github.com/MetaMask/snaps/compare/v0.27.0...v0.27.1
316
- [0.27.0]: https://github.com/MetaMask/snaps/compare/v0.26.2...v0.27.0
317
- [0.26.2]: https://github.com/MetaMask/snaps/compare/v0.26.1...v0.26.2
318
- [0.26.1]: https://github.com/MetaMask/snaps/compare/v0.26.0...v0.26.1
319
- [0.26.0]: https://github.com/MetaMask/snaps/compare/v0.25.0...v0.26.0
320
- [0.25.0]: https://github.com/MetaMask/snaps/compare/v0.24.1...v0.25.0
321
- [0.24.1]: https://github.com/MetaMask/snaps/compare/v0.24.0...v0.24.1
322
- [0.24.0]: https://github.com/MetaMask/snaps/compare/v0.23.0...v0.24.0
323
- [0.23.0]: https://github.com/MetaMask/snaps/compare/v0.22.3...v0.23.0
324
- [0.22.3]: https://github.com/MetaMask/snaps/compare/v0.22.2...v0.22.3
325
- [0.22.2]: https://github.com/MetaMask/snaps/compare/v0.22.1...v0.22.2
326
- [0.22.1]: https://github.com/MetaMask/snaps/compare/v0.22.0...v0.22.1
327
- [0.22.0]: https://github.com/MetaMask/snaps/compare/v0.21.0...v0.22.0
328
- [0.21.0]: https://github.com/MetaMask/snaps/compare/v0.20.0...v0.21.0
329
- [0.20.0]: https://github.com/MetaMask/snaps/compare/v0.19.1...v0.20.0
330
- [0.19.1]: https://github.com/MetaMask/snaps/compare/v0.19.0...v0.19.1
331
- [0.19.0]: https://github.com/MetaMask/snaps/compare/v0.18.1...v0.19.0
332
- [0.18.1]: https://github.com/MetaMask/snaps/compare/v0.18.0...v0.18.1
333
- [0.18.0]: https://github.com/MetaMask/snaps/compare/v0.17.0...v0.18.0
334
- [0.17.0]: https://github.com/MetaMask/snaps/compare/v0.16.0...v0.17.0
335
- [0.16.0]: https://github.com/MetaMask/snaps/compare/v0.15.0...v0.16.0
336
- [0.15.0]: https://github.com/MetaMask/snaps/compare/v0.14.0...v0.15.0
337
- [0.14.0]: https://github.com/MetaMask/snaps/compare/v0.13.0...v0.14.0
338
- [0.13.0]: https://github.com/MetaMask/snaps/compare/v0.12.0...v0.13.0
339
- [0.12.0]: https://github.com/MetaMask/snaps/compare/v0.11.1...v0.12.0
340
- [0.11.1]: https://github.com/MetaMask/snaps/compare/v0.11.0...v0.11.1
341
- [0.11.0]: https://github.com/MetaMask/snaps/compare/v0.10.7...v0.11.0
342
- [0.10.7]: https://github.com/MetaMask/snaps/compare/v0.10.6...v0.10.7
343
- [0.10.6]: https://github.com/MetaMask/snaps/compare/v0.10.5...v0.10.6
344
- [0.10.5]: https://github.com/MetaMask/snaps/compare/v0.10.4...v0.10.5
345
- [0.10.4]: https://github.com/MetaMask/snaps/compare/v0.10.3...v0.10.4
346
- [0.10.3]: https://github.com/MetaMask/snaps/compare/v0.10.2...v0.10.3
347
- [0.10.2]: https://github.com/MetaMask/snaps/compare/v0.10.1...v0.10.2
348
- [0.10.1]: https://github.com/MetaMask/snaps/compare/v0.10.0...v0.10.1
349
- [0.10.0]: https://github.com/MetaMask/snaps/releases/tag/v0.10.0
15
+ [Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-execution-environments@0.37.2-flask.1...HEAD
16
+ [0.37.2-flask.1]: https://github.com/MetaMask/snaps/releases/tag/@metamask/snaps-execution-environments@0.37.2-flask.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/snaps-execution-environments",
3
- "version": "0.37.0-flask.1",
3
+ "version": "0.37.2-flask.1",
4
4
  "description": "Snap sandbox environments for executing SES javascript",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,7 +25,7 @@
25
25
  "lint:eslint": "eslint . --cache --ext js,ts,jsx,tsx",
26
26
  "lint:misc": "prettier --no-error-on-unmatched-pattern --loglevel warn \"**/*.json\" \"**/*.md\" \"**/*.html\" \"!CHANGELOG.md\" --ignore-path ./.prettierignore",
27
27
  "lint:fix": "yarn lint:eslint --fix && yarn lint:misc --write",
28
- "lint:changelog": "yarn auto-changelog validate",
28
+ "lint:changelog": "../../scripts/validate-changelog.sh @metamask/snaps-execution-environments",
29
29
  "lint": "yarn lint:eslint && yarn lint:misc --check && yarn lint:changelog",
30
30
  "clean": "rimraf '*.tsbuildinfo' 'dist' 'src/__GENERATED__/' 'coverage/*' '__test__/*'",
31
31
  "build": "yarn build:source && yarn build:types",
@@ -47,8 +47,8 @@
47
47
  "@metamask/object-multiplex": "^1.2.0",
48
48
  "@metamask/post-message-stream": "^6.1.2",
49
49
  "@metamask/providers": "^11.0.0",
50
- "@metamask/rpc-methods": "^0.37.0-flask.1",
51
- "@metamask/snaps-utils": "^0.37.0-flask.1",
50
+ "@metamask/rpc-methods": "^0.37.2-flask.1",
51
+ "@metamask/snaps-utils": "^0.37.2-flask.1",
52
52
  "@metamask/utils": "^6.0.1",
53
53
  "eth-rpc-errors": "^4.0.3",
54
54
  "json-rpc-engine": "^6.1.0",