@paraspell/sdk-pjs 12.10.0-rc.0 → 12.10.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/dist/index.d.ts +11 -12
- package/dist/index.mjs +61 -44
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _paraspell_sdk_core from '@paraspell/sdk-core';
|
|
2
|
-
import {
|
|
2
|
+
import { WithApi, TEvmChainFrom, TChain, TCurrencyInputWithAmount, Foreign, ForeignAbstract, Native, Override, findAssetInfo, getAllAssetsSymbols, getAssetDecimals, getAssetId, getAssets, getAssetsObject, getExistentialDeposit, getNativeAssetSymbol, getNativeAssets, getOtherAssets, getRelayChainSymbol, getSupportedAssets, getTChain, hasSupportForAsset, isChainEvm, TSubstrateChain, TBuilderOptions, TApiOrUrl, GeneralBuilder as GeneralBuilder$1, TTransferBaseOptions } from '@paraspell/sdk-core';
|
|
3
3
|
export * from '@paraspell/sdk-core';
|
|
4
4
|
import * as _polkadot_api from '@polkadot/api';
|
|
5
5
|
import { ApiPromise } from '@polkadot/api';
|
|
@@ -10,7 +10,6 @@ import { WalletClient } from 'viem';
|
|
|
10
10
|
import { toPolkadotV2 } from '@snowbridge/api';
|
|
11
11
|
|
|
12
12
|
type TPjsApi = ApiPromise;
|
|
13
|
-
type TPjsApiOrUrl = TApiOrUrl<TPjsApi>;
|
|
14
13
|
type Extrinsic = SubmittableExtrinsic<'promise'>;
|
|
15
14
|
type TPjsSigner = {
|
|
16
15
|
signer: Signer;
|
|
@@ -54,7 +53,7 @@ type TPjsEvmBuilderOptions<TApi, TRes, TSigner> = WithApi<TEvmBuilderOptionsBase
|
|
|
54
53
|
declare const getBalance: (options: _paraspell_sdk_core.TGetBalanceCommonOptions & {
|
|
55
54
|
currency?: _paraspell_sdk_core.TCurrencyCore;
|
|
56
55
|
} & {
|
|
57
|
-
api?:
|
|
56
|
+
api?: _paraspell_sdk_core.TApiOrUrl<TPjsApi>;
|
|
58
57
|
}) => Promise<bigint>;
|
|
59
58
|
|
|
60
59
|
declare const assets_Foreign: typeof Foreign;
|
|
@@ -172,10 +171,10 @@ declare class EvmBuilderCore<TApi, TRes, TSigner, T extends Partial<TPjsEvmBuild
|
|
|
172
171
|
* @param api - The API instance to use for building transactions. If not provided, a new instance will be created.
|
|
173
172
|
* @returns A new Builder instance.
|
|
174
173
|
*/
|
|
175
|
-
declare const Builder: (api?: TBuilderOptions<
|
|
174
|
+
declare const Builder: (api?: TBuilderOptions<TApiOrUrl<TPjsApi>>) => GeneralBuilder$1<_polkadot_api.ApiPromise, Extrinsic, TPjsSigner, object>;
|
|
176
175
|
type GeneralBuilder<T extends Partial<TTransferBaseOptions<TPjsApi, Extrinsic, TPjsSigner>> = object> = GeneralBuilder$1<TPjsApi, Extrinsic, TPjsSigner, T>;
|
|
177
|
-
declare const EvmBuilder: (provider?: AbstractProvider, api?: TBuilderOptions<
|
|
178
|
-
api: _paraspell_sdk_core.
|
|
176
|
+
declare const EvmBuilder: (provider?: AbstractProvider, api?: TBuilderOptions<TApiOrUrl<TPjsApi>>) => EvmBuilderCore<unknown, unknown, unknown, {
|
|
177
|
+
api: _paraspell_sdk_core.PolkadotApi<_polkadot_api.ApiPromise, Extrinsic, TPjsSigner>;
|
|
179
178
|
provider: AbstractProvider | undefined;
|
|
180
179
|
}>;
|
|
181
180
|
|
|
@@ -207,17 +206,17 @@ declare const transferEthToPolkadot$1: <TApi, TRes, TSigner>({ api, provider, si
|
|
|
207
206
|
declare const getTokenBalance: (signer: Signer$1, symbol: string) => Promise<bigint>;
|
|
208
207
|
|
|
209
208
|
declare const dryRun: (options: _paraspell_sdk_core.TDryRunBaseOptions<Extrinsic> & {
|
|
210
|
-
api?:
|
|
209
|
+
api?: TApiOrUrl<TPjsApi>;
|
|
211
210
|
}) => Promise<_paraspell_sdk_core.TDryRunResult>;
|
|
212
211
|
declare const dryRunOrigin: (options: _paraspell_sdk_core.TDryRunCallBaseOptions<Extrinsic> & {
|
|
213
|
-
api?:
|
|
212
|
+
api?: TApiOrUrl<TPjsApi>;
|
|
214
213
|
}) => Promise<_paraspell_sdk_core.TDryRunChainResult>;
|
|
215
214
|
declare const transferEthToPolkadot: (options: Omit<TPjsEvmBuilderOptions<TPjsApi, Extrinsic, TPjsSigner>, "api">) => ReturnType<typeof transferEthToPolkadot$1>;
|
|
216
|
-
declare const getParaEthTransferFees: (api?:
|
|
215
|
+
declare const getParaEthTransferFees: (api?: TApiOrUrl<TPjsApi>) => Promise<[bigint, bigint]>;
|
|
217
216
|
/**
|
|
218
217
|
* Gets the Ethereum bridge status.
|
|
219
218
|
*/
|
|
220
|
-
declare const getBridgeStatus: (api?:
|
|
219
|
+
declare const getBridgeStatus: (api?: TApiOrUrl<TPjsApi>) => Promise<_paraspell_sdk_core.TBridgeStatus>;
|
|
221
220
|
|
|
222
221
|
declare const transfer_approveToken: typeof approveToken;
|
|
223
222
|
declare const transfer_depositToken: typeof depositToken;
|
|
@@ -240,7 +239,7 @@ declare namespace transfer {
|
|
|
240
239
|
};
|
|
241
240
|
}
|
|
242
241
|
|
|
243
|
-
declare const createChainClient: (chain: TSubstrateChain, builderOptions?: TBuilderOptions<
|
|
242
|
+
declare const createChainClient: (chain: TSubstrateChain, builderOptions?: TBuilderOptions<TApiOrUrl<TPjsApi>>) => Promise<_polkadot_api.ApiPromise>;
|
|
244
243
|
|
|
245
244
|
export { Builder, EvmBuilder, approveToken, assets, convertSs58, createChainClient, depositToken, dryRun, dryRunOrigin, getBalance, getBridgeStatus, getParaEthTransferFees, getTokenBalance, transferEthToPolkadot, transfer as xcmPallet };
|
|
246
|
-
export type { Extrinsic, GeneralBuilder, TPjsApi,
|
|
245
|
+
export type { Extrinsic, GeneralBuilder, TPjsApi, TPjsEvmBuilderOptions, TPjsSigner };
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { getNativeAssetSymbol, getOtherAssets, hasJunction, getJunctionValue, getEvmPrivateKeyHex, UnsupportedOperationError, createClientCache, MAX_CLIENTS, EXTENSION_MS, createClientPoolHelpers, BatchMode, isConfig, findNativeAssetInfoOrThrow, getChainProviders, isSenderSigner,
|
|
1
|
+
import { getNativeAssetSymbol, getOtherAssets, hasJunction, getJunctionValue, getEvmPrivateKeyHex, UnsupportedOperationError, createClientCache, MAX_CLIENTS, EXTENSION_MS, createClientPoolHelpers, BatchMode, isConfig, findNativeAssetInfoOrThrow, getChainProviders, isSenderSigner, PolkadotApi, resolveChainApi, DEFAULT_TTL_MS, isExternalChain, findAssetInfoOrThrow, hasXcmPaymentApiSupport, resolveModuleError, getAssetsObject, RuntimeApiUnavailableError, wrapTxBypass, localizeLocation, addXcmVersionHeader, isAssetXcEqual, RELAY_LOCATION, getRelayChainOf, SubmitTransactionError, createChainClient as createChainClient$1, getBalance as getBalance$1, Foreign, ForeignAbstract, Native, Override, findAssetInfo, getAllAssetsSymbols, getAssetDecimals, getAssetId, getAssets, getExistentialDeposit, getNativeAssets, getRelayChainSymbol, getSupportedAssets, getTChain, hasSupportForAsset, isChainEvm, convertSs58 as convertSs58$1, assertHasId, getParaId, RoutingResolutionError, abstractDecimals, MissingParameterError, isOverrideLocationSpecifier, transferMoonbeamEvm, transferMoonbeamToEth, validateAddress as validateAddress$1, Builder as Builder$1, getBridgeStatus as getBridgeStatus$1, getParaEthTransferFees as getParaEthTransferFees$1, DRY_RUN_CLIENT_TIMEOUT_MS, dryRun as dryRun$1, dryRunOrigin as dryRunOrigin$1 } from '@paraspell/sdk-core';
|
|
2
2
|
export * from '@paraspell/sdk-core';
|
|
3
3
|
import { Keyring, WsProvider, ApiPromise } from '@polkadot/api';
|
|
4
4
|
import { u8aConcat, compactToU8a, u8aEq, isHex, u8aToHex, hexToU8a, stringToU8a } from '@polkadot/util';
|
|
@@ -15,6 +15,10 @@ function _arrayLikeToArray(r, a) {
|
|
|
15
15
|
function _arrayWithoutHoles(r) {
|
|
16
16
|
if (Array.isArray(r)) return _arrayLikeToArray(r);
|
|
17
17
|
}
|
|
18
|
+
function _assertThisInitialized(e) {
|
|
19
|
+
if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
20
|
+
return e;
|
|
21
|
+
}
|
|
18
22
|
function asyncGeneratorStep(n, t, e, r, o, a, c) {
|
|
19
23
|
try {
|
|
20
24
|
var i = n[a](c),
|
|
@@ -40,6 +44,9 @@ function _asyncToGenerator(n) {
|
|
|
40
44
|
});
|
|
41
45
|
};
|
|
42
46
|
}
|
|
47
|
+
function _callSuper(t, o, e) {
|
|
48
|
+
return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e));
|
|
49
|
+
}
|
|
43
50
|
function _classCallCheck(a, n) {
|
|
44
51
|
if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function");
|
|
45
52
|
}
|
|
@@ -110,6 +117,31 @@ function _defineProperty(e, r, t) {
|
|
|
110
117
|
writable: true
|
|
111
118
|
}) : e[r] = t, e;
|
|
112
119
|
}
|
|
120
|
+
function _getPrototypeOf(t) {
|
|
121
|
+
return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) {
|
|
122
|
+
return t.__proto__ || Object.getPrototypeOf(t);
|
|
123
|
+
}, _getPrototypeOf(t);
|
|
124
|
+
}
|
|
125
|
+
function _inherits(t, e) {
|
|
126
|
+
if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function");
|
|
127
|
+
t.prototype = Object.create(e && e.prototype, {
|
|
128
|
+
constructor: {
|
|
129
|
+
value: t,
|
|
130
|
+
writable: true,
|
|
131
|
+
configurable: true
|
|
132
|
+
}
|
|
133
|
+
}), Object.defineProperty(t, "prototype", {
|
|
134
|
+
writable: false
|
|
135
|
+
}), e && _setPrototypeOf(t, e);
|
|
136
|
+
}
|
|
137
|
+
function _isNativeReflectConstruct() {
|
|
138
|
+
try {
|
|
139
|
+
var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));
|
|
140
|
+
} catch (t) {}
|
|
141
|
+
return (_isNativeReflectConstruct = function () {
|
|
142
|
+
return !!t;
|
|
143
|
+
})();
|
|
144
|
+
}
|
|
113
145
|
function _iterableToArray(r) {
|
|
114
146
|
if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r);
|
|
115
147
|
}
|
|
@@ -137,6 +169,11 @@ function _objectSpread2(e) {
|
|
|
137
169
|
}
|
|
138
170
|
return e;
|
|
139
171
|
}
|
|
172
|
+
function _possibleConstructorReturn(t, e) {
|
|
173
|
+
if (e && ("object" == typeof e || "function" == typeof e)) return e;
|
|
174
|
+
if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined");
|
|
175
|
+
return _assertThisInitialized(t);
|
|
176
|
+
}
|
|
140
177
|
function _regenerator() {
|
|
141
178
|
/*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */
|
|
142
179
|
var e,
|
|
@@ -245,6 +282,11 @@ function _regeneratorDefine(e, r, n, t) {
|
|
|
245
282
|
}) : e[r] = n : (o("next", 0), o("throw", 1), o("return", 2));
|
|
246
283
|
}, _regeneratorDefine(e, r, n, t);
|
|
247
284
|
}
|
|
285
|
+
function _setPrototypeOf(t, e) {
|
|
286
|
+
return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) {
|
|
287
|
+
return t.__proto__ = e, t;
|
|
288
|
+
}, _setPrototypeOf(t, e);
|
|
289
|
+
}
|
|
248
290
|
function _toConsumableArray(r) {
|
|
249
291
|
return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread();
|
|
250
292
|
}
|
|
@@ -445,41 +487,27 @@ var createPolkadotJsClient = /*#__PURE__*/function () {
|
|
|
445
487
|
var _createClientPoolHelp = createClientPoolHelpers(clientPool, createPolkadotJsClient),
|
|
446
488
|
leaseClient = _createClientPoolHelp.leaseClient,
|
|
447
489
|
releaseClient = _createClientPoolHelp.releaseClient;
|
|
448
|
-
var PolkadotJsApi = /*#__PURE__*/function () {
|
|
449
|
-
function PolkadotJsApi(
|
|
490
|
+
var PolkadotJsApi = /*#__PURE__*/function (_PolkadotApi) {
|
|
491
|
+
function PolkadotJsApi() {
|
|
492
|
+
var _this;
|
|
450
493
|
_classCallCheck(this, PolkadotJsApi);
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
this._config = config;
|
|
494
|
+
_this = _callSuper(this, PolkadotJsApi, arguments);
|
|
495
|
+
_this.type = 'PJS';
|
|
496
|
+
return _this;
|
|
455
497
|
}
|
|
498
|
+
_inherits(PolkadotJsApi, _PolkadotApi);
|
|
456
499
|
return _createClass(PolkadotJsApi, [{
|
|
457
|
-
key: "getType",
|
|
458
|
-
value: function getType() {
|
|
459
|
-
return 'PJS';
|
|
460
|
-
}
|
|
461
|
-
}, {
|
|
462
|
-
key: "getConfig",
|
|
463
|
-
value: function getConfig() {
|
|
464
|
-
return this._config;
|
|
465
|
-
}
|
|
466
|
-
}, {
|
|
467
|
-
key: "getApi",
|
|
468
|
-
value: function getApi() {
|
|
469
|
-
return this.api;
|
|
470
|
-
}
|
|
471
|
-
}, {
|
|
472
500
|
key: "init",
|
|
473
501
|
value: function () {
|
|
474
502
|
var _init = _asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee3(chain) {
|
|
475
|
-
var
|
|
503
|
+
var _this2 = this;
|
|
476
504
|
var clientTtlMs,
|
|
477
505
|
_args = arguments;
|
|
478
506
|
return _regenerator().w(function (_context3) {
|
|
479
507
|
while (1) switch (_context3.n) {
|
|
480
508
|
case 0:
|
|
481
509
|
clientTtlMs = _args.length > 1 && _args[1] !== undefined ? _args[1] : DEFAULT_TTL_MS;
|
|
482
|
-
if (!(this.
|
|
510
|
+
if (!(this._chain !== undefined || isExternalChain(chain))) {
|
|
483
511
|
_context3.n = 1;
|
|
484
512
|
break;
|
|
485
513
|
}
|
|
@@ -489,11 +517,10 @@ var PolkadotJsApi = /*#__PURE__*/function () {
|
|
|
489
517
|
this._chain = chain;
|
|
490
518
|
_context3.n = 2;
|
|
491
519
|
return resolveChainApi(this._config, chain, function (wsUrl, c) {
|
|
492
|
-
return
|
|
520
|
+
return _this2.createApiInstance(wsUrl, c);
|
|
493
521
|
});
|
|
494
522
|
case 2:
|
|
495
|
-
this.
|
|
496
|
-
this.initialized = true;
|
|
523
|
+
this._api = _context3.v;
|
|
497
524
|
case 3:
|
|
498
525
|
return _context3.a(2);
|
|
499
526
|
}
|
|
@@ -809,7 +836,7 @@ var PolkadotJsApi = /*#__PURE__*/function () {
|
|
|
809
836
|
key: "getDryRunCall",
|
|
810
837
|
value: function () {
|
|
811
838
|
var _getDryRunCall = _asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee1(options) {
|
|
812
|
-
var
|
|
839
|
+
var _this3 = this;
|
|
813
840
|
var tx, address, feeAsset, chain, destination, version, _options$useRootOrigi, useRootOrigin, bypassOptions, supportsDryRunApi, basePayload, resolvedTx, resolvedFeeAsset, performDryRunCall, findFailingEventInResult, getExecutionSuccessFromResult, extractFailureReasonFromResult, response, resultHuman, resultJson, isSuccess, failureErr, shouldRetryWithVersion, msg, _msg, forwardedXcms, actualWeight, weight, destParaId, overriddenWeight, xcmFee, _yield$this$getPaymen, executionFee, fee, _t, _t2, _t3, _t4;
|
|
814
841
|
return _regenerator().w(function (_context1) {
|
|
815
842
|
while (1) switch (_context1.p = _context1.n) {
|
|
@@ -853,13 +880,13 @@ var PolkadotJsApi = /*#__PURE__*/function () {
|
|
|
853
880
|
resolvedFeeAsset = _context1.v;
|
|
854
881
|
performDryRunCall = /*#__PURE__*/function () {
|
|
855
882
|
var _ref5 = _asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee0(includeVersion) {
|
|
856
|
-
var
|
|
883
|
+
var _this3$api$call$dryRu;
|
|
857
884
|
var versionNum;
|
|
858
885
|
return _regenerator().w(function (_context0) {
|
|
859
886
|
while (1) switch (_context0.n) {
|
|
860
887
|
case 0:
|
|
861
888
|
versionNum = Number(version.charAt(1));
|
|
862
|
-
return _context0.a(2, (
|
|
889
|
+
return _context0.a(2, (_this3$api$call$dryRu = _this3.api.call.dryRunApi).dryRunCall.apply(_this3$api$call$dryRu, [basePayload, resolvedTx].concat(_toConsumableArray(includeVersion ? [versionNum] : []))));
|
|
863
890
|
}
|
|
864
891
|
}, _callee0);
|
|
865
892
|
}));
|
|
@@ -1408,22 +1435,12 @@ var PolkadotJsApi = /*#__PURE__*/function () {
|
|
|
1408
1435
|
}
|
|
1409
1436
|
return getBridgeStatus;
|
|
1410
1437
|
}()
|
|
1411
|
-
}, {
|
|
1412
|
-
key: "setDisconnectAllowed",
|
|
1413
|
-
value: function setDisconnectAllowed(allowed) {
|
|
1414
|
-
this.disconnectAllowed = allowed;
|
|
1415
|
-
}
|
|
1416
|
-
}, {
|
|
1417
|
-
key: "getDisconnectAllowed",
|
|
1418
|
-
value: function getDisconnectAllowed() {
|
|
1419
|
-
return this.disconnectAllowed;
|
|
1420
|
-
}
|
|
1421
1438
|
}, {
|
|
1422
1439
|
key: "disconnect",
|
|
1423
1440
|
value: function disconnect() {
|
|
1424
1441
|
var _this$_config$apiOver;
|
|
1425
1442
|
var force = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
|
|
1426
|
-
if (!this.
|
|
1443
|
+
if (!this._chain) return Promise.resolve();
|
|
1427
1444
|
if (!force && !this.disconnectAllowed) return Promise.resolve();
|
|
1428
1445
|
var api = isConfig(this._config) ? (_this$_config$apiOver = this._config.apiOverrides) === null || _this$_config$apiOver === void 0 ? void 0 : _this$_config$apiOver[this._chain] : this._config;
|
|
1429
1446
|
// Own client provided, destroy only if force true
|
|
@@ -1499,7 +1516,7 @@ var PolkadotJsApi = /*#__PURE__*/function () {
|
|
|
1499
1516
|
key: "signAndSubmitFinalized",
|
|
1500
1517
|
value: function () {
|
|
1501
1518
|
var _signAndSubmitFinalized = _asyncToGenerator(/*#__PURE__*/_regenerator().m(function _callee17(tx, sender) {
|
|
1502
|
-
var
|
|
1519
|
+
var _this4 = this;
|
|
1503
1520
|
return _regenerator().w(function (_context17) {
|
|
1504
1521
|
while (1) switch (_context17.n) {
|
|
1505
1522
|
case 0:
|
|
@@ -1526,7 +1543,7 @@ var PolkadotJsApi = /*#__PURE__*/function () {
|
|
|
1526
1543
|
if (status.isFinalized) {
|
|
1527
1544
|
if (dispatchError !== undefined) {
|
|
1528
1545
|
if (dispatchError.isModule) {
|
|
1529
|
-
var decoded =
|
|
1546
|
+
var decoded = _this4.api.registry.findMetaError(dispatchError.asModule);
|
|
1530
1547
|
var docs = decoded.docs,
|
|
1531
1548
|
name = decoded.name,
|
|
1532
1549
|
section = decoded.section;
|
|
@@ -1551,7 +1568,7 @@ var PolkadotJsApi = /*#__PURE__*/function () {
|
|
|
1551
1568
|
return signAndSubmitFinalized;
|
|
1552
1569
|
}()
|
|
1553
1570
|
}]);
|
|
1554
|
-
}();
|
|
1571
|
+
}(PolkadotApi);
|
|
1555
1572
|
|
|
1556
1573
|
var createChainClient = function createChainClient(chain, builderOptions) {
|
|
1557
1574
|
var pjsApi = new PolkadotJsApi(builderOptions);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paraspell/sdk-pjs",
|
|
3
|
-
"version": "12.10.0-rc.
|
|
3
|
+
"version": "12.10.0-rc.2",
|
|
4
4
|
"description": "Polkadot.js based SDK for ParaSpell XCM/XCMP tool for developers",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@snowbridge/registry": "^0.4.4",
|
|
30
30
|
"ethers": "^6.16.0",
|
|
31
31
|
"viem": "2.47.1",
|
|
32
|
-
"@paraspell/sdk-core": "12.10.0-rc.
|
|
32
|
+
"@paraspell/sdk-core": "12.10.0-rc.2"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"@polkadot/api": ">= 16.0 < 17",
|