@subql/node-ethereum 2.8.1-2 → 2.9.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 +5 -3
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -5,9 +5,10 @@ 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
|
-
- Limit the number of calls to eth_chainId (#123)
|
|
10
8
|
|
|
9
|
+
## [2.9.0] - 2023-07-05
|
|
10
|
+
### Fixed
|
|
11
|
+
- Limit the number of calls to eth_chainId (#123)
|
|
11
12
|
### Added
|
|
12
13
|
- `store-cache-upper-limit` flag to limit the max size of the store cache. (#124)
|
|
13
14
|
|
|
@@ -160,7 +161,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
160
161
|
- Retry request when encouraging timeout/rate limit behaviours (#9)
|
|
161
162
|
|
|
162
163
|
## [0.1.0] - 2022-10-31
|
|
163
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/
|
|
164
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/v2.9.0...HEAD
|
|
165
|
+
[2.9.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/v2.8.0...node-ethereum/v2.9.0
|
|
164
166
|
[2.8.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.6.1...node-ethereum/2.8.0
|
|
165
167
|
[2.6.1]: https://github.com/subquery/subql-ethereum/compare/node/2.6.0...node-ethereum/2.6.1
|
|
166
168
|
[2.6.0]: https://github.com/subquery/subql-ethereum/compare/node-ethereum/2.5.3...node-ethereum/2.6.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@subql/node-ethereum",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Ian He",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@nestjs/schedule": "^3.0.1",
|
|
27
27
|
"@subql/common": "^2.3.0",
|
|
28
28
|
"@subql/common-ethereum": "2.2.0",
|
|
29
|
-
"@subql/node-core": "
|
|
29
|
+
"@subql/node-core": "^3.1.0",
|
|
30
30
|
"@subql/testing": "^2.0.0",
|
|
31
31
|
"@subql/types": "^2.1.2",
|
|
32
32
|
"@subql/types-ethereum": "2.2.3-0",
|
|
@@ -66,6 +66,5 @@
|
|
|
66
66
|
"files": [
|
|
67
67
|
"/dist",
|
|
68
68
|
"/bin"
|
|
69
|
-
]
|
|
70
|
-
"stableVersion": "2.8.1-1"
|
|
69
|
+
]
|
|
71
70
|
}
|