@subql/node-ethereum 2.9.0 → 2.9.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.
- package/CHANGELOG.md +9 -2
- package/dist/.tsbuildinfo +1 -1
- package/dist/ethereum/api.ethereum.d.ts +1 -1
- package/dist/ethereum/api.ethereum.js +7 -6
- package/dist/ethereum/api.ethereum.js.map +1 -1
- package/dist/ethereum/api.ethereum.test.js +17 -1
- package/dist/ethereum/api.ethereum.test.js.map +1 -1
- package/dist/ethereum/ethers/json-rpc-batch-provider.js +24 -1
- package/dist/ethereum/ethers/json-rpc-batch-provider.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,9 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [2.9.1] - 2023-07-07
|
|
10
|
+
### Fixed
|
|
11
|
+
- Sync with @subql/node-core@3.1.1, fixed Poi table missing mmr issue
|
|
12
|
+
- Finalization check with BSC and improved rate limit handling (#126)
|
|
13
|
+
|
|
9
14
|
## [2.9.0] - 2023-07-05
|
|
10
15
|
### Fixed
|
|
11
16
|
- Limit the number of calls to eth_chainId (#123)
|
|
17
|
+
|
|
12
18
|
### Added
|
|
13
19
|
- `store-cache-upper-limit` flag to limit the max size of the store cache. (#124)
|
|
14
20
|
|
|
@@ -161,8 +167,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
161
167
|
- Retry request when encouraging timeout/rate limit behaviours (#9)
|
|
162
168
|
|
|
163
169
|
## [0.1.0] - 2022-10-31
|
|
164
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/
|
|
165
|
-
[2.9.
|
|
170
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.1...HEAD
|
|
171
|
+
[2.9.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.0...node-ethereum/2.9.1
|
|
172
|
+
[2.9.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.8.0...node-ethereum/2.9.0
|
|
166
173
|
[2.8.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.6.1...node-ethereum/2.8.0
|
|
167
174
|
[2.6.1]: https://github.com/subquery/subql-ethereum/compare/node/2.6.0...node-ethereum/2.6.1
|
|
168
175
|
[2.6.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.5.3...node-ethereum/2.6.0
|