@subql/node-ethereum 2.8.1-2 → 2.9.1-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 +7 -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 +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,7 +5,11 @@ 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
|
-
|
|
8
|
+
### Fixed
|
|
9
|
+
- Finalization check with BSC and improved rate limit handling (#126)
|
|
10
|
+
|
|
11
|
+
## [2.9.0] - 2023-07-05
|
|
12
|
+
### Fixed
|
|
9
13
|
- Limit the number of calls to eth_chainId (#123)
|
|
10
14
|
|
|
11
15
|
### Added
|
|
@@ -160,7 +164,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
160
164
|
- Retry request when encouraging timeout/rate limit behaviours (#9)
|
|
161
165
|
|
|
162
166
|
## [0.1.0] - 2022-10-31
|
|
163
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/
|
|
167
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/v2.9.0...HEAD
|
|
168
|
+
[2.9.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/v2.8.0...node-ethereum/v2.9.0
|
|
164
169
|
[2.8.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.6.1...node-ethereum/2.8.0
|
|
165
170
|
[2.6.1]: https://github.com/subquery/subql-ethereum/compare/node/2.6.0...node-ethereum/2.6.1
|
|
166
171
|
[2.6.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.5.3...node-ethereum/2.6.0
|