@subql/node-stellar 5.0.0 → 5.0.3-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 +16 -1
- package/dist/.tsbuildinfo +1 -1
- package/dist/blockchain.service.js +1 -1
- package/dist/blockchain.service.js.map +1 -1
- package/dist/indexer/indexer.manager.d.ts +5 -4
- package/dist/indexer/indexer.manager.js +11 -1
- package/dist/indexer/indexer.manager.js.map +1 -1
- package/dist/stellar/api.stellar.d.ts +2 -2
- package/dist/stellar/api.stellar.js +0 -1
- package/dist/stellar/api.stellar.js.map +1 -1
- package/dist/stellar/utils.stellar.d.ts +2 -2
- package/dist/stellar/utils.stellar.js +1 -1
- package/dist/stellar/utils.stellar.js.map +1 -1
- package/package.json +7 -6
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ 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
|
+
### Changed
|
|
9
|
+
- Update `@subql/node-core` (#124)
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- Sandbox now has access to Horizon and Soroban Server APIs via `unsafeApi` and `unsafeSorobanApi` (#124)
|
|
13
|
+
|
|
14
|
+
## [5.0.2] - 2025-05-01
|
|
15
|
+
### Changed
|
|
16
|
+
- Re release of previously failed release
|
|
17
|
+
|
|
18
|
+
## [5.0.1] - 2025-05-01
|
|
19
|
+
### Changed
|
|
20
|
+
- Update `@subql/node-core` with workers performance fix
|
|
8
21
|
|
|
9
22
|
## [5.0.0] - 2025-04-24
|
|
10
23
|
### Added
|
|
@@ -214,7 +227,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
214
227
|
- rename `soroban` to `sorobanEndpoint` in network config (#16)
|
|
215
228
|
|
|
216
229
|
## [2.12.0] - 2023-09-12
|
|
217
|
-
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/5.0.
|
|
230
|
+
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/5.0.2...HEAD
|
|
231
|
+
[5.0.2]: https://github.com/subquery/subql-stellar/compare/node-stellar/5.0.1...node-stellar/5.0.2
|
|
232
|
+
[5.0.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/5.0.0...node-stellar/5.0.1
|
|
218
233
|
[5.0.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.6.1...node-stellar/5.0.0
|
|
219
234
|
[4.6.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.6.0...node-stellar/4.6.1
|
|
220
235
|
[4.6.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/4.5.0...node-stellar/4.6.0
|