@subql/node-ethereum 5.0.0 → 5.0.2-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 +10 -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 +6 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,12 +5,20 @@ 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
|
+
### Added
|
|
9
|
+
- Suport for network endpoint config providing the ability to set headers and rpc batch sizes (#334)
|
|
10
|
+
|
|
11
|
+
## [5.0.1] - 2024-07-29
|
|
12
|
+
### Fixed
|
|
13
|
+
- Docker images not having TZ set to UTC (#333)
|
|
14
|
+
- Bump `@subql/node-core` with fixes for data consitstency issue (#333)
|
|
8
15
|
|
|
9
16
|
## [5.0.0] - 2024-07-26
|
|
10
17
|
### Changed
|
|
11
18
|
- Enable ts strict mode
|
|
12
19
|
- Use Subquery Project code from node core (#331)
|
|
13
20
|
- Breaking change: Update to latest `@subql/node-core`, require indexing environment timezone set to UTC (#330)
|
|
21
|
+
|
|
14
22
|
### Fixed
|
|
15
23
|
- Bump with `@subql/node-core`, fixed various issues causing poi inconsistency (#2497)
|
|
16
24
|
|
|
@@ -526,7 +534,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
526
534
|
### Added
|
|
527
535
|
- Init release
|
|
528
536
|
|
|
529
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.0.
|
|
537
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.0.1...HEAD
|
|
538
|
+
[5.0.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/5.0.0...node-ethereum/5.0.1
|
|
530
539
|
[5.0.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.3...node-ethereum/5.0.0
|
|
531
540
|
[4.7.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.2...node-ethereum/4.7.3
|
|
532
541
|
[4.7.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/4.7.1...node-ethereum/4.7.2
|