@subql/types-ethereum 4.2.1-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 +4 -1
- package/package.json +13 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,8 @@ 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
|
+
|
|
9
|
+
## [4.2.1] - 2025-07-01
|
|
8
10
|
### Changed
|
|
9
11
|
- Update `@subql/types-core` (#386)
|
|
10
12
|
|
|
@@ -168,7 +170,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
168
170
|
- Sync with main sdk (#14)
|
|
169
171
|
|
|
170
172
|
## [0.1.0] - 2022-10-31
|
|
171
|
-
[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
|
|
172
175
|
[4.2.0]: https://github.com/subquery/subql-ethereum/compare/types-ethereum/4.1.1...types-ethereum/4.2.0
|
|
173
176
|
[4.1.1]: https://github.com/subquery/subql-ethereum/compare/types-ethereum/4.1.0...types-ethereum/4.1.1
|
|
174
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.1
|
|
3
|
+
"version": "4.2.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "https://github.com/subquery/subql",
|
|
6
6
|
"repository": "github:subquery/subql",
|
|
@@ -13,13 +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
31
|
"@subql/types-core": "^2.1.0"
|
|
23
|
-
}
|
|
24
|
-
"stableVersion": "4.2.0"
|
|
32
|
+
}
|
|
25
33
|
}
|