@subql/node-ethereum 2.9.2-0 → 2.9.2
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 +9 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/ethereum/api.connection.d.ts +1 -0
- package/dist/ethereum/api.connection.js +7 -0
- package/dist/ethereum/api.connection.js.map +1 -1
- package/dist/indexer/fetch.module.js +4 -2
- package/dist/indexer/fetch.module.js.map +1 -1
- package/dist/indexer/project.service.d.ts +2 -2
- package/dist/indexer/project.service.js +4 -3
- package/dist/indexer/project.service.js.map +1 -1
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [2.9.2] - 2023-07-12
|
|
10
|
+
### Fixed
|
|
11
|
+
- Sync with @subql/node-core@3.1.2 (#130)
|
|
12
|
+
- Various improvements for POI feature
|
|
13
|
+
- Handle RPC error for oversize block responses
|
|
14
|
+
- Missing format transaction in log (#128)
|
|
15
|
+
|
|
9
16
|
## [2.9.1] - 2023-07-07
|
|
10
17
|
### Fixed
|
|
11
18
|
- Sync with @subql/node-core@3.1.1, fixed Poi table missing mmr issue
|
|
@@ -167,7 +174,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
167
174
|
- Retry request when encouraging timeout/rate limit behaviours (#9)
|
|
168
175
|
|
|
169
176
|
## [0.1.0] - 2022-10-31
|
|
170
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.
|
|
177
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.2...HEAD
|
|
178
|
+
[2.9.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.1...node-ethereum/2.9.2
|
|
171
179
|
[2.9.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.0...node-ethereum/2.9.1
|
|
172
180
|
[2.9.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.8.0...node-ethereum/2.9.0
|
|
173
181
|
[2.8.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.6.1...node-ethereum/2.8.0
|