@subql/node-stellar 4.4.0 → 4.5.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 +9 -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/soroban.server.spec.js +9 -9
- package/dist/stellar/soroban.server.spec.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 +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [4.5.0] - 2025-02-26
|
|
10
|
+
### Added
|
|
11
|
+
- `--network-endpoint-config` add optional parameter `pageLimit`
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
- Performance issue caused by making too many RPC requests.
|
|
15
|
+
|
|
9
16
|
## [4.4.0] - 2025-02-05
|
|
10
17
|
### Changed
|
|
11
18
|
- Update stellar sdk to v13 (#101)
|
|
@@ -192,7 +199,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
192
199
|
- rename `soroban` to `sorobanEndpoint` in network config (#16)
|
|
193
200
|
|
|
194
201
|
## [2.12.0] - 2023-09-12
|
|
195
|
-
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.
|
|
202
|
+
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.5.0...HEAD
|
|
203
|
+
[4.5.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.4.0...node-stellar/4.5.0
|
|
196
204
|
[4.4.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.3.0...node-stellar/4.4.0
|
|
197
205
|
[4.3.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.2.2...node-stellar/4.3.0
|
|
198
206
|
[4.2.2]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.2.0...node-stellar/4.2.2
|