@subql/node-ethereum 5.0.1 → 5.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 +6 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/ethereum/api.connection.d.ts +2 -2
- package/dist/ethereum/api.connection.js +2 -2
- package/dist/ethereum/api.connection.js.map +1 -1
- package/dist/ethereum/api.ethereum.d.ts +4 -2
- package/dist/ethereum/api.ethereum.js +16 -1
- package/dist/ethereum/api.ethereum.js.map +1 -1
- package/dist/ethereum/api.service.ethereum.d.ts +2 -2
- package/dist/ethereum/api.service.ethereum.js +3 -5
- package/dist/ethereum/api.service.ethereum.js.map +1 -1
- package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.js +1 -1
- package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [5.1.0] - 2024-08-02
|
|
10
|
+
### Added
|
|
11
|
+
- Suport for network endpoint config providing the ability to set headers and rpc batch sizes (#334)
|
|
12
|
+
|
|
9
13
|
## [5.0.1] - 2024-07-29
|
|
10
14
|
### Fixed
|
|
11
15
|
- Docker images not having TZ set to UTC (#333)
|
|
@@ -532,7 +536,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
532
536
|
### Added
|
|
533
537
|
- Init release
|
|
534
538
|
|
|
535
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.0
|
|
539
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.1.0...HEAD
|
|
540
|
+
[5.1.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.0.1...node-ethereum/5.1.0
|
|
536
541
|
[5.0.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.0.0...node-ethereum/5.0.1
|
|
537
542
|
[5.0.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.3...node-ethereum/5.0.0
|
|
538
543
|
[4.7.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.2...node-ethereum/4.7.3
|