@subql/node-stellar 4.3.1-2 → 4.4.1-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 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/stellar/api.stellar.d.ts +1 -0
- package/dist/stellar/api.stellar.js +19 -4
- package/dist/stellar/api.stellar.js.map +1 -1
- package/dist/stellar/soroban.server.js +4 -3
- package/dist/stellar/soroban.server.js.map +1 -1
- package/dist/stellar/utils.stellar.d.ts +1 -0
- package/dist/stellar/utils.stellar.js +2 -1
- package/dist/stellar/utils.stellar.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -5,8 +5,18 @@ 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
|
+
### Added
|
|
10
|
+
- `--network-endpoint-config` add optional parameter `pageLimit`
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Performance issue caused by making too many RPC requests.
|
|
14
|
+
|
|
15
|
+
## [4.4.0] - 2025-02-05
|
|
8
16
|
### Changed
|
|
9
17
|
- Update stellar sdk to v13 (#101)
|
|
18
|
+
- Update header year to 2025
|
|
19
|
+
- Update `@subql/node-core`
|
|
10
20
|
|
|
11
21
|
### Fixed
|
|
12
22
|
- Events not being associated to operations and therefore not indexed (#101)
|
|
@@ -188,7 +198,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
188
198
|
- rename `soroban` to `sorobanEndpoint` in network config (#16)
|
|
189
199
|
|
|
190
200
|
## [2.12.0] - 2023-09-12
|
|
191
|
-
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.
|
|
201
|
+
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.4.0...HEAD
|
|
202
|
+
[4.4.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.3.0...node-stellar/4.4.0
|
|
192
203
|
[4.3.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.2.2...node-stellar/4.3.0
|
|
193
204
|
[4.2.2]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.2.0...node-stellar/4.2.2
|
|
194
205
|
[4.2.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.1.1...node-stellar/4.2.0
|