@subql/types-ethereum 4.2.0 → 4.2.1
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/package.json +13 -4
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
|
+
## [4.2.1] - 2025-07-01
|
|
10
|
+
### Changed
|
|
11
|
+
- Update `@subql/types-core` (#386)
|
|
12
|
+
|
|
9
13
|
## [4.2.0] - 2025-06-18
|
|
10
14
|
### Added
|
|
11
15
|
- Support for ERC-4844 fields and new transaction type filter (#383)
|
|
@@ -166,7 +170,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
166
170
|
- Sync with main sdk (#14)
|
|
167
171
|
|
|
168
172
|
## [0.1.0] - 2022-10-31
|
|
169
|
-
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/types-ethereum/4.2.
|
|
173
|
+
[Unreleased]: https://github.com/subquery/subql-ethereum/compare/types-ethereum/4.2.1...HEAD
|
|
174
|
+
[4.2.1]: https://github.com/subquery/subql-ethereum/compare/types-ethereum/4.2.0...types-ethereum/4.2.1
|
|
170
175
|
[4.2.0]: https://github.com/subquery/subql-ethereum/compare/types-ethereum/4.1.1...types-ethereum/4.2.0
|
|
171
176
|
[4.1.1]: https://github.com/subquery/subql-ethereum/compare/types-ethereum/4.1.0...types-ethereum/4.1.1
|
|
172
177
|
[4.1.0]: https://github.com/subquery/subql-ethereum/compare/types-ethereum/4.0.0...types-ethereum/4.1.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@subql/types-ethereum",
|
|
3
|
-
"version": "4.2.
|
|
3
|
+
"version": "4.2.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "https://github.com/subquery/subql",
|
|
6
6
|
"repository": "github:subquery/subql",
|
|
@@ -13,12 +13,21 @@
|
|
|
13
13
|
"main": "dist/index.js",
|
|
14
14
|
"license": "GPL-3.0",
|
|
15
15
|
"files": [
|
|
16
|
-
"
|
|
17
|
-
"
|
|
16
|
+
"/dist",
|
|
17
|
+
"!/dist/**/*.spec.js",
|
|
18
|
+
"!/dist/**/*.spec.d.ts",
|
|
19
|
+
"!/dist/**/*.spec.js.map",
|
|
20
|
+
"!/dist/**/*.test.js",
|
|
21
|
+
"!/dist/**/*.test.d.ts",
|
|
22
|
+
"!/dist/**/*.test.js.map",
|
|
23
|
+
"package.json",
|
|
24
|
+
"README.md",
|
|
25
|
+
"CHANGELOG.md",
|
|
26
|
+
"LICENSE"
|
|
18
27
|
],
|
|
19
28
|
"dependencies": {
|
|
20
29
|
"@ethersproject/abstract-provider": "^5.6.1",
|
|
21
30
|
"@ethersproject/providers": "^5.7.2",
|
|
22
|
-
"@subql/types-core": "^2.0
|
|
31
|
+
"@subql/types-core": "^2.1.0"
|
|
23
32
|
}
|
|
24
33
|
}
|