@stellar/stellar-sdk 11.2.0 → 11.2.1
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 +7 -0
- package/dist/stellar-sdk.js +129 -119
- package/dist/stellar-sdk.min.js +1 -1
- package/lib/horizon/server_api.d.ts +0 -1
- package/package.json +7 -8
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { Asset } from "@stellar/stellar-base";
|
|
2
|
-
import { Omit } from "utility-types";
|
|
3
2
|
import { HorizonApi } from "./horizon_api";
|
|
4
3
|
import { AccountRecordSigners as AccountRecordSignersType } from "./types/account";
|
|
5
4
|
import { AssetRecord as AssetRecordType } from "./types/assets";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stellar/stellar-sdk",
|
|
3
|
-
"version": "11.2.
|
|
3
|
+
"version": "11.2.1",
|
|
4
4
|
"description": "A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"stellar"
|
|
@@ -92,11 +92,11 @@
|
|
|
92
92
|
"@types/json-schema": "^7.0.15",
|
|
93
93
|
"@types/lodash": "^4.14.199",
|
|
94
94
|
"@types/mocha": "^10.0.2",
|
|
95
|
-
"@types/node": "^20.
|
|
95
|
+
"@types/node": "^20.11.5",
|
|
96
96
|
"@types/randombytes": "^2.0.1",
|
|
97
97
|
"@types/sinon": "^17.0.2",
|
|
98
98
|
"@types/urijs": "^1.19.20",
|
|
99
|
-
"@typescript-eslint/parser": "^6.
|
|
99
|
+
"@typescript-eslint/parser": "^6.19.1",
|
|
100
100
|
"axios-mock-adapter": "^1.22.0",
|
|
101
101
|
"babel-loader": "^9.1.3",
|
|
102
102
|
"babel-plugin-istanbul": "^6.1.1",
|
|
@@ -116,7 +116,7 @@
|
|
|
116
116
|
"ghooks": "^2.0.4",
|
|
117
117
|
"husky": "^8.0.3",
|
|
118
118
|
"jsdoc": "^4.0.2",
|
|
119
|
-
"json-schema-faker": "^0.5.
|
|
119
|
+
"json-schema-faker": "^0.5.5",
|
|
120
120
|
"karma": "^6.4.1",
|
|
121
121
|
"karma-chai": "^0.1.0",
|
|
122
122
|
"karma-chrome-launcher": "^3.1.0",
|
|
@@ -131,25 +131,24 @@
|
|
|
131
131
|
"mocha": "^10.2.0",
|
|
132
132
|
"node-polyfill-webpack-plugin": "^3.0.0",
|
|
133
133
|
"nyc": "^15.1.0",
|
|
134
|
-
"prettier": "^3.
|
|
134
|
+
"prettier": "^3.2.4",
|
|
135
135
|
"randombytes": "^2.1.0",
|
|
136
136
|
"sinon": "^17.0.1",
|
|
137
137
|
"sinon-chai": "^3.7.0",
|
|
138
138
|
"taffydb": "^2.7.3",
|
|
139
139
|
"terser-webpack-plugin": "^5.3.10",
|
|
140
140
|
"ts-node": "^10.9.2",
|
|
141
|
-
"typescript": "^5.3.3",
|
|
142
|
-
"utility-types": "^3.7.0",
|
|
143
141
|
"webpack": "^5.88.2",
|
|
144
142
|
"webpack-cli": "^5.0.1"
|
|
145
143
|
},
|
|
146
144
|
"dependencies": {
|
|
147
|
-
"@stellar/stellar-base": "10.0.
|
|
145
|
+
"@stellar/stellar-base": "^10.0.2",
|
|
148
146
|
"axios": "^1.6.5",
|
|
149
147
|
"bignumber.js": "^9.1.2",
|
|
150
148
|
"eventsource": "^2.0.2",
|
|
151
149
|
"randombytes": "^2.1.0",
|
|
152
150
|
"toml": "^3.0.0",
|
|
151
|
+
"typescript": "^5.3.3",
|
|
153
152
|
"urijs": "^1.19.1"
|
|
154
153
|
}
|
|
155
154
|
}
|