@subql/node-ethereum 2.12.6-3 → 3.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.
- package/CHANGELOG.md +4 -1
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [3.0.0] - 2023-10-03
|
|
8
10
|
### Fixed
|
|
9
11
|
- Fix dictionary metadata validation failed
|
|
10
12
|
- Improve get finalized block error logging
|
|
@@ -247,7 +249,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
247
249
|
### Added
|
|
248
250
|
- Init release
|
|
249
251
|
|
|
250
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/
|
|
252
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.0.0...HEAD
|
|
253
|
+
[3.0.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.5...node-ethereum/3.0.0
|
|
251
254
|
[2.12.5]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.4...node-ethereum/2.12.5
|
|
252
255
|
[2.12.4]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.3...node-ethereum/2.12.4
|
|
253
256
|
[2.12.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.2...node-ethereum/2.12.3
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@subql/node-ethereum",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Ian He",
|
|
6
6
|
"license": "GPL-3.0",
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"@nestjs/platform-express": "^9.4.0",
|
|
26
26
|
"@nestjs/schedule": "^3.0.1",
|
|
27
27
|
"@subql/common": "3.1.0",
|
|
28
|
-
"@subql/common-ethereum": "
|
|
28
|
+
"@subql/common-ethereum": "3.0.0",
|
|
29
29
|
"@subql/node-core": "5.0.2",
|
|
30
30
|
"@subql/testing": "^2.0.2",
|
|
31
31
|
"@subql/types": "^3.1.0",
|
|
32
|
-
"@subql/types-ethereum": "
|
|
32
|
+
"@subql/types-ethereum": "3.0.0",
|
|
33
33
|
"cacheable-lookup": "6",
|
|
34
34
|
"cron-converter": "^1.0.2",
|
|
35
35
|
"ethers": "^5.7.0",
|
|
@@ -65,6 +65,5 @@
|
|
|
65
65
|
"files": [
|
|
66
66
|
"/dist",
|
|
67
67
|
"/bin"
|
|
68
|
-
]
|
|
69
|
-
"stableVersion": "2.12.6-2"
|
|
68
|
+
]
|
|
70
69
|
}
|