@subql/node-ethereum 3.9.1 → 3.10.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.ethereum.js +8 -9
- package/dist/ethereum/api.ethereum.js.map +1 -1
- package/dist/ethereum/ethers/celo/celo-provider.d.ts +284 -0
- package/dist/ethereum/ethers/celo/celo-provider.js +35 -0
- package/dist/ethereum/ethers/celo/celo-provider.js.map +1 -0
- package/dist/ethereum/ethers/celo/celo-ws-provider.spec.js +16 -10
- package/dist/ethereum/ethers/celo/celo-ws-provider.spec.js.map +1 -1
- package/dist/ethereum/ethers/op/op-provider.d.ts +374 -0
- package/dist/ethereum/ethers/op/op-provider.js +21 -0
- package/dist/ethereum/ethers/op/op-provider.js.map +1 -0
- package/dist/ethereum/ethers/op/op-provider.spec.js +32 -0
- package/dist/ethereum/ethers/op/op-provider.spec.js.map +1 -0
- package/dist/ethereum/utils.ethereum.d.ts +1 -1
- package/dist/ethereum/utils.ethereum.js.map +1 -1
- package/package.json +2 -2
- package/dist/ethereum/ethers/celo/celo-json-rpc-batch-provider.d.ts +0 -7
- package/dist/ethereum/ethers/celo/celo-json-rpc-batch-provider.js +0 -23
- package/dist/ethereum/ethers/celo/celo-json-rpc-batch-provider.js.map +0 -1
- package/dist/ethereum/ethers/celo/celo-json-rpc-batch-provider.spec.js +0 -27
- package/dist/ethereum/ethers/celo/celo-json-rpc-batch-provider.spec.js.map +0 -1
- package/dist/ethereum/ethers/celo/celo-json-rpc-provider.d.ts +0 -7
- package/dist/ethereum/ethers/celo/celo-json-rpc-provider.js +0 -23
- package/dist/ethereum/ethers/celo/celo-json-rpc-provider.js.map +0 -1
- package/dist/ethereum/ethers/celo/celo-json-rpc-provider.spec.d.ts +0 -1
- package/dist/ethereum/ethers/celo/celo-json-rpc-provider.spec.js +0 -27
- package/dist/ethereum/ethers/celo/celo-json-rpc-provider.spec.js.map +0 -1
- package/dist/ethereum/ethers/celo/celo-ws-provider.d.ts +0 -6
- package/dist/ethereum/ethers/celo/celo-ws-provider.js +0 -23
- package/dist/ethereum/ethers/celo/celo-ws-provider.js.map +0 -1
- /package/dist/ethereum/ethers/{celo/celo-json-rpc-batch-provider.spec.d.ts → op/op-provider.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.10.0] - 2024-03-13
|
|
10
|
+
### Added
|
|
11
|
+
- Op L1 fields to transaction receipts (#258)
|
|
12
|
+
|
|
9
13
|
## [3.9.1] - 2024-03-09
|
|
10
14
|
### Changed
|
|
11
15
|
- Update `@subql/node-core` to 7.4.1 with bug fixes
|
|
@@ -419,7 +423,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
419
423
|
### Added
|
|
420
424
|
- Init release
|
|
421
425
|
|
|
422
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.
|
|
426
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.10.0...HEAD
|
|
427
|
+
[3.10.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.9.1...node-ethereum/3.10.0
|
|
423
428
|
[3.9.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.9.0...node-ethereum/3.9.1
|
|
424
429
|
[3.9.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.8.1...node-ethereum/3.9.0
|
|
425
430
|
[3.8.1]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/3.8.0...node-ethereum/3.8.1
|