@subql/types-ethereum 2.1.1-0 → 2.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +20 -6
  2. package/package.json +2 -3
package/CHANGELOG.md CHANGED
@@ -1,13 +1,15 @@
1
1
  # Changelog
2
-
3
2
  All notable changes to this project will be documented in this file.
4
3
 
5
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
6
 
8
- All logs must start with the format: [x.y.z] - yyyy-mm-dd
9
-
10
7
  ## [Unreleased]
8
+
9
+ ## [2.2.0] - 2023-05-22
10
+ ### Fixed
11
+ - Add chainId to global (#77)
12
+
11
13
  ## [2.1.0] - 2023-05-11
12
14
  ### Added
13
15
  - `bulkRemove` to the store
@@ -22,6 +24,7 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd
22
24
  - Remove `count` method from the store (#51)
23
25
 
24
26
  ## [1.0.0] - 2023-04-03
27
+ ### Changed
25
28
  - Release
26
29
 
27
30
  ## [0.2.2] - 2023-01-23
@@ -29,15 +32,26 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd
29
32
  - Add `count` to `Store` interface (#1480)
30
33
 
31
34
  ## [0.2.1] - 2022-11-18
35
+ ### Fixed
32
36
  - Re-release 0.2.1
33
37
 
34
38
  ## [0.2.0] - 2022-12-06
39
+ ### Added
35
40
  - Support for `bypassBlocks` (#1435)
36
41
 
37
42
  ## [0.2.0] - 2022-11-17
38
-
43
+ ### Changed
39
44
  - Sync with main sdk (#14)
40
45
 
41
46
  ## [0.1.0] - 2022-10-31
42
-
43
- Initial release
47
+ [Unreleased]: https://github.com/subquery/subql-ethereum/compare/types/v2.2.0...HEAD
48
+ [2.2.0]: https://github.com/subquery/subql-ethereum/compare/types/v2.1.0...types/v2.2.0
49
+ [2.1.0]: https://github.com/subquery/subql-ethereum/compare/types/2.0.0v.../types/v2.1.0
50
+ [2.0.0]: https://github.com/subquery/subql-ethereum/compare/types/1.0.1v.../types/v2.0.0
51
+ [1.0.1]: https://github.com/subquery/subql-ethereum/compare/types/1.0.0v.../types/v1.0.1
52
+ [1.0.0]: https://github.com/subquery/subql-ethereum/compare/types/0.2.2v.../types/v1.0.0
53
+ [0.2.2]: https://github.com/subquery/subql-ethereum/compare/types/0.2.1v.../types/v0.2.2
54
+ [0.2.1]: https://github.com/subquery/subql-ethereum/compare/types/0.2.0v.../types/v0.2.1
55
+ [0.2.0]: https://github.com/subquery/subql-ethereum/compare/types/0.2.0v.../types/v0.2.0
56
+ [0.2.0]: https://github.com/subquery/subql-ethereum/compare/types/0.2.0v.../types/v0.2.0
57
+ [0.1.0]: https://github.com/subquery/subql-ethereum/tag/v0.1.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/types-ethereum",
3
- "version": "2.1.1-0",
3
+ "version": "2.2.0",
4
4
  "description": "",
5
5
  "homepage": "https://github.com/subquery/subql",
6
6
  "repository": "github:subquery/subql",
@@ -17,6 +17,5 @@
17
17
  ],
18
18
  "dependencies": {
19
19
  "@ethersproject/abstract-provider": "^5.6.1"
20
- },
21
- "stableVersion": "2.1.0"
20
+ }
22
21
  }