@subql/node-ethereum 2.11.1-2 → 2.12.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 +8 -4
- package/dist/.tsbuildinfo +1 -1
- package/dist/ethereum/api.ethereum.js +15 -2
- package/dist/ethereum/api.ethereum.js.map +1 -1
- package/dist/ethereum/ethers/celo/celo-json-rpc-batch-provider.d.ts +7 -0
- package/dist/ethereum/ethers/celo/celo-json-rpc-batch-provider.js +23 -0
- package/dist/ethereum/ethers/celo/celo-json-rpc-batch-provider.js.map +1 -0
- package/dist/ethereum/ethers/celo/celo-json-rpc-batch-provider.spec.d.ts +1 -0
- package/dist/ethereum/ethers/celo/celo-json-rpc-batch-provider.spec.js +30 -0
- package/dist/ethereum/ethers/celo/celo-json-rpc-batch-provider.spec.js.map +1 -0
- package/dist/ethereum/ethers/celo/celo-json-rpc-provider.d.ts +7 -0
- package/dist/ethereum/ethers/celo/celo-json-rpc-provider.js +23 -0
- package/dist/ethereum/ethers/celo/celo-json-rpc-provider.js.map +1 -0
- package/dist/ethereum/ethers/celo/celo-json-rpc-provider.spec.d.ts +1 -0
- package/dist/ethereum/ethers/celo/celo-json-rpc-provider.spec.js +30 -0
- package/dist/ethereum/ethers/celo/celo-json-rpc-provider.spec.js.map +1 -0
- package/dist/ethereum/ethers/celo/celo-ws-provider.d.ts +6 -0
- package/dist/ethereum/ethers/celo/celo-ws-provider.js +23 -0
- package/dist/ethereum/ethers/celo/celo-ws-provider.js.map +1 -0
- package/dist/ethereum/ethers/celo/celo-ws-provider.spec.d.ts +1 -0
- package/dist/ethereum/ethers/celo/celo-ws-provider.spec.js +30 -0
- package/dist/ethereum/ethers/celo/celo-ws-provider.spec.js.map +1 -0
- package/dist/ethereum/utils.ethereum.js +3 -0
- package/dist/ethereum/utils.ethereum.js.map +1 -1
- package/package.json +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -5,11 +5,14 @@ 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
|
-
### Fixed
|
|
9
|
-
- Fallback to singular provider if batch provider is not supported (#144)
|
|
10
8
|
|
|
9
|
+
## [2.12.0] - 2023-09-01
|
|
11
10
|
### Fixed
|
|
11
|
+
- Fallback to singular provider if batch provider is not supported (#144)
|
|
12
12
|
- Fix missing ds option for event in dictionary query entries (#145)
|
|
13
|
+
- Update `node-core` to 4.2.5, fix dictionary failed to get token issue.
|
|
14
|
+
### Added
|
|
15
|
+
- Custom provider for Celo (#147)
|
|
13
16
|
|
|
14
17
|
## [2.11.1] - 2023-08-14
|
|
15
18
|
### Changed
|
|
@@ -203,14 +206,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
203
206
|
### Added
|
|
204
207
|
- Init release
|
|
205
208
|
|
|
206
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.
|
|
209
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.12.0...HEAD
|
|
210
|
+
[2.12.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.11.1...node-ethereum/2.12.0
|
|
207
211
|
[2.11.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.10.0...node-ethereum/2.11.1
|
|
208
212
|
[2.10.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.2...node-ethereum/2.10.0
|
|
209
213
|
[2.9.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.1...node-ethereum/2.9.2
|
|
210
214
|
[2.9.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.9.0...node-ethereum/2.9.1
|
|
211
215
|
[2.9.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.8.0...node-ethereum/2.9.0
|
|
212
216
|
[2.8.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.6.1...node-ethereum/2.8.0
|
|
213
|
-
[2.6.1]: https://github.com/subquery/subql-ethereum/compare/node
|
|
217
|
+
[2.6.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum//2.6.0...node-ethereum/2.6.1
|
|
214
218
|
[2.6.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.5.3...node-ethereum/2.6.0
|
|
215
219
|
[2.5.3]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.5.2...node-ethereum/2.5.3
|
|
216
220
|
[2.5.2]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.5.1...node-ethereum/2.5.2
|