@metamask/eth-block-tracker 9.0.2 → 10.0.0

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/README.md +1 -1
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -90,7 +90,7 @@ blockTracker.on('error', (err) => console.error(err));
90
90
 
91
91
  ### Setup
92
92
 
93
- - Install [Node.js](https://nodejs.org) version 16 or greater
93
+ - Install the current LTS version of [Node.js](https://nodejs.org)
94
94
  - If you are using [nvm](https://github.com/creationix/nvm#installation) (recommended) running `nvm use` will automatically choose the right node version for you.
95
95
  - Install [Yarn v1](https://yarnpkg.com/en/docs/install)
96
96
  - Run `yarn setup` to install dependencies and run any requried post-install scripts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@metamask/eth-block-tracker",
3
- "version": "9.0.2",
3
+ "version": "10.0.0",
4
4
  "description": "A block tracker for the Ethereum blockchain. Keeps track of the latest block.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,7 +25,7 @@
25
25
  "test:watch": "jest --watch"
26
26
  },
27
27
  "dependencies": {
28
- "@metamask/eth-json-rpc-provider": "^2.3.1",
28
+ "@metamask/eth-json-rpc-provider": "^4.0.0",
29
29
  "@metamask/safe-event-emitter": "^3.0.0",
30
30
  "@metamask/utils": "^8.1.0",
31
31
  "json-rpc-random-id": "^1.0.1",
@@ -38,10 +38,10 @@
38
38
  "@metamask/eslint-config-jest": "^12.0.0",
39
39
  "@metamask/eslint-config-nodejs": "^12.0.0",
40
40
  "@metamask/eslint-config-typescript": "^12.0.0",
41
- "@metamask/json-rpc-engine": "^7.1.1",
41
+ "@metamask/json-rpc-engine": "^9.0.0",
42
42
  "@types/jest": "^29.1.2",
43
43
  "@types/json-rpc-random-id": "^1.0.1",
44
- "@types/node": "^17.0.23",
44
+ "@types/node": "^18.16",
45
45
  "@types/pify": "^5.0.1",
46
46
  "@typescript-eslint/eslint-plugin": "^5.61.0",
47
47
  "@typescript-eslint/parser": "^5.61.0",
@@ -63,7 +63,7 @@
63
63
  "typescript": "~4.8.4"
64
64
  },
65
65
  "engines": {
66
- "node": ">=16.20 || ^18.16"
66
+ "node": "^18.16 || ^20 || >=22"
67
67
  },
68
68
  "publishConfig": {
69
69
  "access": "public",