@subql/node-stellar 3.6.2-0 → 3.8.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.
- package/CHANGELOG.md +12 -2
- package/dist/.tsbuildinfo +1 -1
- package/dist/indexer/fetch.module.js.map +1 -1
- package/dist/indexer/project.service.d.ts +1 -0
- package/dist/indexer/project.service.js +9 -0
- package/dist/indexer/project.service.js.map +1 -1
- package/dist/indexer/worker/worker-fetch.module.js.map +1 -1
- package/dist/stellar/api.service.stellar.d.ts +2 -2
- package/dist/stellar/api.service.stellar.js +1 -1
- package/dist/stellar/api.service.stellar.js.map +1 -1
- package/dist/subcommands/testing.module.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [3.8.1] - 2024-03-01
|
|
10
|
+
### Fixed
|
|
11
|
+
- Update `@subql/node-core` to fix Poi generation issue with negative integer, also drop subscription triggers and notifiy_functions
|
|
12
|
+
|
|
13
|
+
## [3.8.0] - 2024-02-23
|
|
14
|
+
### Changed
|
|
15
|
+
- Update `@subql/node-core` to 7.3.0
|
|
16
|
+
|
|
9
17
|
### Fixed
|
|
10
18
|
- Remove soroban client and use stellar sdk, fix decode issue with `scVal` (#46)
|
|
11
19
|
|
|
@@ -47,7 +55,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
47
55
|
|
|
48
56
|
## [3.3.1] - 2023-11-13
|
|
49
57
|
### Changed
|
|
50
|
-
- Updates to match changes in
|
|
58
|
+
- Updates to match changes in '@subql/node-core' (#34)
|
|
51
59
|
- Dictionary service to use dictionary registry
|
|
52
60
|
- Use yargs from node core
|
|
53
61
|
|
|
@@ -86,7 +94,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
86
94
|
- rename `soroban` to `sorobanEndpoint` in network config (#16)
|
|
87
95
|
|
|
88
96
|
## [2.12.0] - 2023-09-12
|
|
89
|
-
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.
|
|
97
|
+
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.8.1...HEAD
|
|
98
|
+
[3.8.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.8.0...node-stellar/3.8.1
|
|
99
|
+
[3.8.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.6.1...node-stellar/3.8.0
|
|
90
100
|
[3.6.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.6.0...node-stellar/3.6.1
|
|
91
101
|
[3.6.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.5.0...node-stellar/3.6.0
|
|
92
102
|
[3.5.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.4.2...node-stellar/3.5.0
|