@subql/frontier-evm-processor 0.1.4 → 1.0.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 +24 -7
- package/dist/bundle.js +28 -28
- package/dist/frontierEthProvider.d.ts +1 -0
- package/dist/frontierEthProvider.js +40 -4
- package/dist/frontierEthProvider.js.map +1 -1
- package/dist/index.d.ts +39 -9
- package/dist/index.js +67 -32
- package/dist/index.js.map +1 -1
- package/dist/utils.js +1 -1
- package/dist/utils.js.map +1 -1
- package/package.json +3 -3
- package/src/frontierEthProvider.ts +1 -0
- package/src/index.ts +41 -10
- package/tsconfig.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
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
|
+
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [1.0.0] - 2023-10-05
|
|
10
|
+
### Changed
|
|
11
|
+
- Updated dependencies (#54)
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
- JSDoc to filters (#54)
|
|
15
|
+
|
|
7
16
|
## [0.1.4] - 2023-05-29
|
|
8
17
|
### Fixed
|
|
9
18
|
- `to` field being defined on contract creation. It is now undefined (#51)
|
|
@@ -13,21 +22,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
13
22
|
- Don't throw when not able to get execution event (#49)
|
|
14
23
|
|
|
15
24
|
## [0.1.2] - 2022-08-26
|
|
16
|
-
|
|
25
|
+
### Fixed
|
|
26
|
+
- No changes, fix release skipped.
|
|
17
27
|
|
|
18
28
|
## [0.1.1] - 2022-08-26
|
|
19
|
-
|
|
29
|
+
### Fixed
|
|
30
|
+
- No changes, fix release skipped.
|
|
20
31
|
|
|
21
32
|
## [0.1.0] - 2022-08-26
|
|
22
33
|
### Added
|
|
23
34
|
- Bundled build output. (#18)
|
|
35
|
+
|
|
24
36
|
### Changed
|
|
25
37
|
- Updated dependencies. (#17)
|
|
26
38
|
|
|
27
39
|
## [0.0.2] - 2022-05-11
|
|
28
|
-
|
|
29
|
-
Migrated from `@subql/contract-processors` package
|
|
30
|
-
|
|
31
|
-
### Updated
|
|
32
|
-
|
|
40
|
+
### Changed
|
|
33
41
|
- update to datasource spec version 1.0.0
|
|
42
|
+
|
|
43
|
+
[Unreleased]: https://github.com/subquery/datasource-processors/compare/frontier-evm-processor/1.0.0...HEAD
|
|
44
|
+
[1.0.0]: https://github.com/subquery/datasource-processors/compare/frontier-evm-processor/0.1.4...frontier-evm-processor/1.0.0
|
|
45
|
+
[0.1.4]: https://github.com/subquery/datasource-processors/frontier-evm/0.1.3...frontier-evm/0.1.4
|
|
46
|
+
[0.1.3]: https://github.com/subquery/datasource-processors/frontier-evm/0.1.2...frontier-evm/0.1.3
|
|
47
|
+
[0.1.2]: https://github.com/subquery/datasource-processors/frontier-evm/0.1.1...frontier-evm/0.1.2
|
|
48
|
+
[0.1.1]: https://github.com/subquery/datasource-processors/frontier-evm/0.1.0...frontier-evm/0.1.1
|
|
49
|
+
[0.1.0]: https://github.com/subquery/datasource-processors/frontier-evm/0.0.2...frontier-evm/0.1.0
|
|
50
|
+
[0.0.2]: https://github.com/subquery/datasource-processors/tags/frontier-evm/0.0.2
|