@stellar/stellar-sdk 11.3.0 → 12.0.0-rc.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 +24 -0
- package/README.md +1 -1
- package/dist/stellar-sdk.js +292 -53
- package/dist/stellar-sdk.min.js +1 -1
- package/lib/contract_client/assembled_transaction.d.ts +19 -19
- package/lib/contract_client/assembled_transaction.js +19 -8
- package/lib/contract_client/client.d.ts +3 -3
- package/lib/contract_client/client.js +21 -53
- package/lib/contract_client/sent_transaction.d.ts +4 -5
- package/lib/contract_client/sent_transaction.js +18 -12
- package/lib/contract_client/types.d.ts +1 -1
- package/lib/contract_client/types.js +3 -1
- package/lib/contract_client/utils.d.ts +1 -1
- package/lib/contract_client/utils.js +1 -1
- package/lib/contract_spec.js +2 -2
- package/lib/horizon/account_call_builder.d.ts +0 -1
- package/lib/horizon/assets_call_builder.d.ts +0 -1
- package/lib/horizon/claimable_balances_call_builder.d.ts +0 -1
- package/lib/horizon/effect_call_builder.d.ts +0 -1
- package/lib/horizon/friendbot_builder.d.ts +0 -1
- package/lib/horizon/horizon_api.d.ts +0 -1
- package/lib/horizon/ledger_call_builder.d.ts +0 -1
- package/lib/horizon/liquidity_pool_call_builder.d.ts +0 -1
- package/lib/horizon/offer_call_builder.d.ts +0 -1
- package/lib/horizon/operation_call_builder.d.ts +0 -1
- package/lib/horizon/orderbook_call_builder.d.ts +0 -1
- package/lib/horizon/path_call_builder.d.ts +0 -1
- package/lib/horizon/payment_call_builder.d.ts +0 -1
- package/lib/horizon/strict_receive_path_call_builder.d.ts +0 -1
- package/lib/horizon/strict_send_path_call_builder.d.ts +0 -1
- package/lib/horizon/trade_aggregation_call_builder.d.ts +0 -1
- package/lib/horizon/trades_call_builder.d.ts +0 -1
- package/lib/horizon/transaction_call_builder.d.ts +0 -1
- package/lib/index.d.ts +0 -1
- package/lib/soroban/api.d.ts +1 -0
- package/lib/soroban/index.d.ts +0 -1
- package/package.json +5 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stellar/stellar-sdk",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.0.0-rc.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"
|
|
@@ -79,12 +79,11 @@
|
|
|
79
79
|
"devDependencies": {
|
|
80
80
|
"@babel/cli": "^7.24.1",
|
|
81
81
|
"@babel/core": "^7.24.3",
|
|
82
|
-
"@babel/eslint-parser": "^7.24.1",
|
|
83
82
|
"@babel/eslint-plugin": "^7.22.10",
|
|
84
83
|
"@babel/preset-env": "^7.24.3",
|
|
85
84
|
"@babel/preset-typescript": "^7.24.1",
|
|
86
85
|
"@babel/register": "^7.23.7",
|
|
87
|
-
"@definitelytyped/dtslint": "^0.
|
|
86
|
+
"@definitelytyped/dtslint": "^0.2.20",
|
|
88
87
|
"@istanbuljs/nyc-config-babel": "3.0.0",
|
|
89
88
|
"@stellar/tsconfig": "^1.0.2",
|
|
90
89
|
"@types/chai": "^4.3.14",
|
|
@@ -97,7 +96,7 @@
|
|
|
97
96
|
"@types/randombytes": "^2.0.1",
|
|
98
97
|
"@types/sinon": "^17.0.2",
|
|
99
98
|
"@types/urijs": "^1.19.20",
|
|
100
|
-
"@typescript-eslint/parser": "^
|
|
99
|
+
"@typescript-eslint/parser": "^7.7.1",
|
|
101
100
|
"ava": "^5.3.1",
|
|
102
101
|
"axios-mock-adapter": "^1.22.0",
|
|
103
102
|
"babel-loader": "^9.1.3",
|
|
@@ -117,7 +116,7 @@
|
|
|
117
116
|
"eslint-plugin-prettier": "^5.1.2",
|
|
118
117
|
"eslint-webpack-plugin": "^4.1.0",
|
|
119
118
|
"ghooks": "^2.0.4",
|
|
120
|
-
"husky": "^
|
|
119
|
+
"husky": "^9.0.11",
|
|
121
120
|
"jsdoc": "^4.0.2",
|
|
122
121
|
"json-schema-faker": "^0.5.6",
|
|
123
122
|
"karma": "^6.4.3",
|
|
@@ -146,7 +145,7 @@
|
|
|
146
145
|
"webpack-cli": "^5.0.1"
|
|
147
146
|
},
|
|
148
147
|
"dependencies": {
|
|
149
|
-
"@stellar/stellar-base": "
|
|
148
|
+
"@stellar/stellar-base": "11.1.0",
|
|
150
149
|
"axios": "^1.6.8",
|
|
151
150
|
"bignumber.js": "^9.1.2",
|
|
152
151
|
"eventsource": "^2.0.2",
|