@metamask-previews/eth-block-tracker 14.0.0-preview-4cd9da8d → 15.0.0-preview-e3eb8eca
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/CHANGELOG.md +6 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [15.0.0]
|
|
11
|
+
|
|
10
12
|
### Added
|
|
11
13
|
|
|
12
14
|
- Add `Context` generic parameter to `PollingBlockTracker` ([#7061](https://github.com/MetaMask/core/pull/7061))
|
|
@@ -14,8 +16,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
14
16
|
|
|
15
17
|
### Changed
|
|
16
18
|
|
|
19
|
+
- Bump `@metamask/eth-json-rpc-provider` from `^5.0.1` to `^6.0.0` ([#7202](https://github.com/MetaMask/core/pull/7202))
|
|
17
20
|
- **BREAKING:** Use `InternalProvider` instead of `SafeEventEmitterProvider` ([#6796](https://github.com/MetaMask/core/pull/6796))
|
|
18
21
|
- The block tracker expects a provider with an `InternalProvider` instead of a `SafeEventEmitterProvider`.
|
|
22
|
+
- **BREAKING:** Migrate to `JsonRpcEngineV2` ([#7001](https://github.com/MetaMask/core/pull/7001))
|
|
19
23
|
|
|
20
24
|
## [14.0.0]
|
|
21
25
|
|
|
@@ -27,5 +31,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
27
31
|
- See [`MetaMask/eth-block-tracker`](https://github.com/MetaMask/eth-block-tracker/blob/main/CHANGELOG.md)
|
|
28
32
|
for the original changelog.
|
|
29
33
|
|
|
30
|
-
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/eth-block-tracker@
|
|
34
|
+
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/eth-block-tracker@15.0.0...HEAD
|
|
35
|
+
[15.0.0]: https://github.com/MetaMask/core/compare/@metamask/eth-block-tracker@14.0.0...@metamask/eth-block-tracker@15.0.0
|
|
31
36
|
[14.0.0]: https://github.com/MetaMask/core/releases/tag/@metamask/eth-block-tracker@14.0.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask-previews/eth-block-tracker",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "15.0.0-preview-e3eb8eca",
|
|
4
4
|
"description": "A block tracker for the Ethereum blockchain. Keeps track of the latest block",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"MetaMask",
|
|
@@ -55,14 +55,14 @@
|
|
|
55
55
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@metamask/eth-json-rpc-provider": "^
|
|
58
|
+
"@metamask/eth-json-rpc-provider": "^6.0.0",
|
|
59
59
|
"@metamask/safe-event-emitter": "^3.0.0",
|
|
60
60
|
"@metamask/utils": "^11.8.1",
|
|
61
61
|
"json-rpc-random-id": "^1.0.1"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@metamask/auto-changelog": "^3.4.4",
|
|
65
|
-
"@metamask/json-rpc-engine": "^10.
|
|
65
|
+
"@metamask/json-rpc-engine": "^10.2.0",
|
|
66
66
|
"@ts-bridge/cli": "^0.6.4",
|
|
67
67
|
"@types/jest": "^27.4.1",
|
|
68
68
|
"@types/json-rpc-random-id": "^1.0.1",
|