@subql/node-ethereum 6.2.2-0 → 6.3.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/utils/string.js +2 -1
- package/dist/utils/string.js.map +1 -1
- package/package.json +3 -4
- package/dist/blockchain.service.test.d.ts +0 -1
- package/dist/blockchain.service.test.js +0 -27
- package/dist/blockchain.service.test.js.map +0 -1
- package/dist/ethereum/api.ethereum.test.d.ts +0 -1
- package/dist/ethereum/api.ethereum.test.js +0 -266
- package/dist/ethereum/api.ethereum.test.js.map +0 -1
- package/dist/ethereum/api.service.ethereum.test.d.ts +0 -1
- package/dist/ethereum/api.service.ethereum.test.js +0 -91
- package/dist/ethereum/api.service.ethereum.test.js.map +0 -1
- package/dist/ethereum/ethers/celo/celo-ws-provider.spec.d.ts +0 -1
- package/dist/ethereum/ethers/celo/celo-ws-provider.spec.js +0 -33
- package/dist/ethereum/ethers/celo/celo-ws-provider.spec.js.map +0 -1
- package/dist/ethereum/ethers/json-rpc-batch-provider.spec.d.ts +0 -1
- package/dist/ethereum/ethers/json-rpc-batch-provider.spec.js +0 -63
- package/dist/ethereum/ethers/json-rpc-batch-provider.spec.js.map +0 -1
- package/dist/ethereum/ethers/op/op-provider.spec.d.ts +0 -1
- package/dist/ethereum/ethers/op/op-provider.spec.js +0 -32
- package/dist/ethereum/ethers/op/op-provider.spec.js.map +0 -1
- package/dist/indexer/dictionary/utils.spec.d.ts +0 -1
- package/dist/indexer/dictionary/utils.spec.js +0 -101
- package/dist/indexer/dictionary/utils.spec.js.map +0 -1
- package/dist/indexer/dictionary/v1/ethDictionaryV1.spec.d.ts +0 -1
- package/dist/indexer/dictionary/v1/ethDictionaryV1.spec.js +0 -519
- package/dist/indexer/dictionary/v1/ethDictionaryV1.spec.js.map +0 -1
- package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.d.ts +0 -1
- package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.js +0 -585
- package/dist/indexer/dictionary/v2/ethDictionaryV2.spec.js.map +0 -1
- package/dist/indexer/dictionary/v2/utils.spec.d.ts +0 -1
- package/dist/indexer/dictionary/v2/utils.spec.js +0 -92
- package/dist/indexer/dictionary/v2/utils.spec.js.map +0 -1
- package/dist/indexer/unfinalizedBlocks.service.spec.d.ts +0 -1
- package/dist/indexer/unfinalizedBlocks.service.spec.js +0 -169
- package/dist/indexer/unfinalizedBlocks.service.spec.js.map +0 -1
- package/dist/utils/project.spec.d.ts +0 -1
- package/dist/utils/project.spec.js +0 -99
- package/dist/utils/project.spec.js.map +0 -1
- package/dist/utils/string.spec.d.ts +0 -1
- package/dist/utils/string.spec.js +0 -103
- package/dist/utils/string.spec.js.map +0 -1
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
|
+
## [6.3.0] - 2025-11-17
|
|
10
|
+
### Added
|
|
11
|
+
- Support for `indexed` option in event topic0 filters (#400)
|
|
12
|
+
|
|
9
13
|
## [6.2.1] - 2025-07-30
|
|
10
14
|
### Changed
|
|
11
15
|
- Update `@subql` deps, fixes issue with indexes not being found (#391)
|
|
@@ -651,7 +655,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
651
655
|
### Added
|
|
652
656
|
- Init release
|
|
653
657
|
|
|
654
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.
|
|
658
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.3.0...HEAD
|
|
659
|
+
[6.3.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.2.1...node-ethereum/6.3.0
|
|
655
660
|
[6.2.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.2.0...node-ethereum/6.2.1
|
|
656
661
|
[6.2.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.1.1...node-ethereum/6.2.0
|
|
657
662
|
[6.1.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/6.1.0...node-ethereum/6.1.1
|