@subql/node-ethereum 3.10.1 → 3.11.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 +4 -4
- package/dist/ethereum/api.connection.js.map +1 -1
- package/dist/ethereum/api.ethereum.d.ts +4 -3
- package/dist/ethereum/api.ethereum.js +6 -3
- package/dist/ethereum/api.ethereum.js.map +1 -1
- package/dist/ethereum/api.ethereum.test.js +13 -1
- package/dist/ethereum/api.ethereum.test.js.map +1 -1
- package/dist/ethereum/api.service.ethereum.d.ts +2 -2
- package/dist/ethereum/api.service.ethereum.js.map +1 -1
- package/dist/ethereum/block.ethereum.js +6 -2
- package/dist/ethereum/block.ethereum.js.map +1 -1
- package/dist/ethereum/utils.ethereum.d.ts +8 -1
- package/dist/ethereum/utils.ethereum.js +17 -1
- package/dist/ethereum/utils.ethereum.js.map +1 -1
- package/dist/indexer/blockDispatcher/block-dispatcher.service.d.ts +2 -3
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js +1 -4
- package/dist/indexer/blockDispatcher/block-dispatcher.service.js.map +1 -1
- package/dist/indexer/blockDispatcher/ethereum-block-dispatcher.d.ts +2 -1
- package/dist/indexer/blockDispatcher/ethereum-block-dispatcher.js.map +1 -1
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.d.ts +2 -1
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js +0 -12
- package/dist/indexer/blockDispatcher/worker-block-dispatcher.service.js.map +1 -1
- package/dist/indexer/dictionary/ethDictionary.service.d.ts +9 -0
- package/dist/indexer/dictionary/ethDictionary.service.js +59 -0
- package/dist/indexer/dictionary/ethDictionary.service.js.map +1 -0
- package/dist/indexer/dictionary/utils.d.ts +3 -0
- package/dist/indexer/dictionary/utils.js +24 -0
- package/dist/indexer/dictionary/utils.js.map +1 -0
- package/dist/indexer/dictionary/utils.spec.js +83 -0
- package/dist/indexer/dictionary/utils.spec.js.map +1 -0
- package/dist/indexer/dictionary/v1/ethDictionaryV1.d.ts +16 -0
- package/dist/indexer/dictionary/v1/ethDictionaryV1.js +202 -0
- package/dist/indexer/dictionary/v1/ethDictionaryV1.js.map +1 -0
- package/dist/indexer/{fetch.service.spec.js → dictionary/v1/ethDictionaryV1.spec.js} +45 -23
- package/dist/indexer/dictionary/v1/ethDictionaryV1.spec.js.map +1 -0
- package/dist/indexer/dictionary/v1/index.d.ts +1 -0
- package/dist/indexer/dictionary/v1/index.js +20 -0
- package/dist/indexer/dictionary/v1/index.js.map +1 -0
- package/dist/indexer/dictionary/v2/ethDictionaryV2.d.ts +14 -0
- package/dist/indexer/dictionary/v2/ethDictionaryV2.js +188 -0
- package/dist/indexer/dictionary/v2/ethDictionaryV2.js.map +1 -0
- package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.d.ts +1 -0
- package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.js +232 -0
- package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.js.map +1 -0
- package/dist/indexer/dictionary/v2/index.d.ts +2 -0
- package/dist/indexer/dictionary/v2/index.js +21 -0
- package/dist/indexer/dictionary/v2/index.js.map +1 -0
- package/dist/indexer/dictionary/v2/types.d.ts +75 -0
- package/dist/indexer/dictionary/v2/types.js +5 -0
- package/dist/indexer/dictionary/v2/types.js.map +1 -0
- package/dist/indexer/dictionary/v2/utils.d.ts +4 -0
- package/dist/indexer/dictionary/v2/utils.js +22 -0
- package/dist/indexer/dictionary/v2/utils.js.map +1 -0
- package/dist/indexer/dictionary/v2/utils.spec.d.ts +1 -0
- package/dist/indexer/dictionary/v2/utils.spec.js +98 -0
- package/dist/indexer/dictionary/v2/utils.spec.js.map +1 -0
- package/dist/indexer/fetch.module.js +4 -3
- package/dist/indexer/fetch.module.js.map +1 -1
- package/dist/indexer/fetch.service.d.ts +4 -14
- package/dist/indexer/fetch.service.js +4 -177
- package/dist/indexer/fetch.service.js.map +1 -1
- package/dist/indexer/indexer.manager.d.ts +5 -5
- package/dist/indexer/indexer.manager.js +3 -3
- package/dist/indexer/indexer.manager.js.map +1 -1
- package/dist/indexer/unfinalizedBlocks.service.d.ts +1 -5
- package/dist/indexer/unfinalizedBlocks.service.js +5 -21
- package/dist/indexer/unfinalizedBlocks.service.js.map +1 -1
- package/dist/indexer/worker/worker.service.d.ts +4 -4
- package/dist/indexer/worker/worker.service.js +1 -1
- package/dist/indexer/worker/worker.service.js.map +1 -1
- package/dist/indexer/worker/worker.unfinalizedBlocks.service.d.ts +2 -2
- package/dist/indexer/worker/worker.unfinalizedBlocks.service.js +2 -6
- package/dist/indexer/worker/worker.unfinalizedBlocks.service.js.map +1 -1
- package/dist/subcommands/testing.service.d.ts +2 -2
- package/dist/subcommands/testing.service.js.map +1 -1
- package/package.json +8 -7
- package/dist/indexer/dictionary.service.d.ts +0 -11
- package/dist/indexer/dictionary.service.js +0 -72
- package/dist/indexer/dictionary.service.js.map +0 -1
- package/dist/indexer/dictionary.service.spec.js +0 -15
- package/dist/indexer/dictionary.service.spec.js.map +0 -1
- package/dist/indexer/fetch.service.spec.js.map +0 -1
- /package/dist/indexer/{dictionary.service.spec.d.ts → dictionary/utils.spec.d.ts} +0 -0
- /package/dist/indexer/{fetch.service.spec.d.ts → dictionary/v1/ethDictionaryV1.spec.d.ts} +0 -0
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
|
+
## [3.11.0] - 2024-03-20
|
|
10
|
+
### Changed
|
|
11
|
+
- Update `@subql/node-core` with fixes and optimisations
|
|
12
|
+
|
|
9
13
|
## [3.10.1] - 2024-03-14
|
|
10
14
|
### Changed
|
|
11
15
|
- Update `@subql/node-core` to 4.7.2 with graphql comments escaping fix
|
|
@@ -427,7 +431,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
427
431
|
### Added
|
|
428
432
|
- Init release
|
|
429
433
|
|
|
430
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.
|
|
434
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.11.0...HEAD
|
|
435
|
+
[3.11.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.10.1...node-ethereum/3.11.0
|
|
431
436
|
[3.10.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.10.0...node-ethereum/3.10.1
|
|
432
437
|
[3.10.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.9.1...node-ethereum/3.10.0
|
|
433
438
|
[3.9.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.9.0...node-ethereum/3.9.1
|