@stellar/stellar-sdk 11.2.0 → 11.2.2
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 +14 -0
- package/README.md +2 -0
- package/dist/stellar-sdk.js +1001 -846
- package/dist/stellar-sdk.min.js +1 -1
- package/lib/horizon/server_api.d.ts +0 -1
- package/package.json +16 -17
|
@@ -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.2",
|
|
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"
|
|
@@ -76,11 +76,11 @@
|
|
|
76
76
|
]
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@babel/cli": "^7.23.
|
|
80
|
-
"@babel/core": "^7.23.
|
|
81
|
-
"@babel/eslint-parser": "^7.
|
|
79
|
+
"@babel/cli": "^7.23.9",
|
|
80
|
+
"@babel/core": "^7.23.9",
|
|
81
|
+
"@babel/eslint-parser": "^7.23.10",
|
|
82
82
|
"@babel/eslint-plugin": "^7.22.10",
|
|
83
|
-
"@babel/preset-env": "^7.23.
|
|
83
|
+
"@babel/preset-env": "^7.23.9",
|
|
84
84
|
"@babel/preset-typescript": "^7.23.0",
|
|
85
85
|
"@babel/register": "^7.23.7",
|
|
86
86
|
"@definitelytyped/dtslint": "^0.1.2",
|
|
@@ -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.17",
|
|
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.20.0",
|
|
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",
|
|
@@ -124,32 +124,31 @@
|
|
|
124
124
|
"karma-firefox-launcher": "^2.1.1",
|
|
125
125
|
"karma-mocha": "^2.0.0",
|
|
126
126
|
"karma-sinon-chai": "^2.0.2",
|
|
127
|
-
"karma-webpack": "^5.0.
|
|
128
|
-
"lint-staged": "^15.2.
|
|
127
|
+
"karma-webpack": "^5.0.1",
|
|
128
|
+
"lint-staged": "^15.2.2",
|
|
129
129
|
"lodash": "^4.17.21",
|
|
130
130
|
"minami": "^1.1.1",
|
|
131
|
-
"mocha": "^10.
|
|
131
|
+
"mocha": "^10.3.0",
|
|
132
132
|
"node-polyfill-webpack-plugin": "^3.0.0",
|
|
133
133
|
"nyc": "^15.1.0",
|
|
134
|
-
"prettier": "^3.
|
|
134
|
+
"prettier": "^3.2.5",
|
|
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
|
-
"
|
|
142
|
-
"utility-types": "^3.7.0",
|
|
143
|
-
"webpack": "^5.88.2",
|
|
141
|
+
"webpack": "^5.90.1",
|
|
144
142
|
"webpack-cli": "^5.0.1"
|
|
145
143
|
},
|
|
146
144
|
"dependencies": {
|
|
147
|
-
"@stellar/stellar-base": "
|
|
148
|
-
"axios": "^1.6.
|
|
145
|
+
"@stellar/stellar-base": "^11.0.0",
|
|
146
|
+
"axios": "^1.6.7",
|
|
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
|
}
|