@paraspell/sdk-core 10.8.3 → 10.10.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/dist/index.cjs +4302 -3136
- package/dist/index.d.ts +223 -41
- package/dist/index.mjs +4287 -3135
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _paraspell_sdk_common from '@paraspell/sdk-common';
|
|
2
|
-
import { TMultiLocation, TNodeDotKsmWithRelayChains, TNodeWithRelayChains, Version, TNodePolkadotKusama, TNode, TJunction, TEcosystemType, TJunctions } from '@paraspell/sdk-common';
|
|
2
|
+
import { TMultiLocation, TNodeDotKsmWithRelayChains, TNodeWithRelayChains, Version, TRelayChain, TNodePolkadotKusama, TNode, TJunction, TEcosystemType, TJunctions } from '@paraspell/sdk-common';
|
|
3
3
|
export * from '@paraspell/sdk-common';
|
|
4
4
|
import * as _paraspell_assets from '@paraspell/assets';
|
|
5
5
|
import { TCurrencyInputWithAmount, TCurrencyInput, WithAmount, TAsset, TMultiAsset, TMultiAssetWithFee, TCurrencyCore, TAmount, TAssetWithLocation } from '@paraspell/assets';
|
|
@@ -13,8 +13,6 @@ type WithApi<TBase, TApi, TRes> = TBase & {
|
|
|
13
13
|
};
|
|
14
14
|
type TApiOrUrl<TApi> = TApi | string | string[];
|
|
15
15
|
|
|
16
|
-
type TRelaychain = 'Polkadot' | 'Kusama';
|
|
17
|
-
|
|
18
16
|
type TPolkadotXCMTransferOptions<TApi, TRes> = {
|
|
19
17
|
api: IPolkadotApi<TApi, TRes>;
|
|
20
18
|
destLocation: TMultiLocation;
|
|
@@ -38,7 +36,7 @@ type TPolkadotXCMTransferOptions<TApi, TRes> = {
|
|
|
38
36
|
type TXTokensTransferOptions<TApi, TRes> = {
|
|
39
37
|
api: IPolkadotApi<TApi, TRes>;
|
|
40
38
|
asset: WithAmount<TAsset>;
|
|
41
|
-
|
|
39
|
+
address: TAddress;
|
|
42
40
|
scenario: TScenario;
|
|
43
41
|
origin: TNodePolkadotKusama;
|
|
44
42
|
destination: TDestination;
|
|
@@ -52,7 +50,6 @@ type TXTokensTransferOptions<TApi, TRes> = {
|
|
|
52
50
|
type TXTransferTransferOptions<TApi, TRes> = {
|
|
53
51
|
api: IPolkadotApi<TApi, TRes>;
|
|
54
52
|
asset: WithAmount<TAsset>;
|
|
55
|
-
scenario: TScenario;
|
|
56
53
|
recipientAddress: TAddress;
|
|
57
54
|
origin: TNodePolkadotKusama;
|
|
58
55
|
paraIdTo?: number;
|
|
@@ -143,7 +140,7 @@ type TRelayToParaBaseOptions = {
|
|
|
143
140
|
/**
|
|
144
141
|
* The origin node
|
|
145
142
|
*/
|
|
146
|
-
origin:
|
|
143
|
+
origin: TRelayChain;
|
|
147
144
|
/**
|
|
148
145
|
* The destination node or multi-location
|
|
149
146
|
*/
|
|
@@ -200,9 +197,14 @@ type TWeight = {
|
|
|
200
197
|
};
|
|
201
198
|
type TCreateBeneficiaryOptions<TApi, TRes> = {
|
|
202
199
|
api: IPolkadotApi<TApi, TRes>;
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
200
|
+
address: TAddress;
|
|
201
|
+
version: Version;
|
|
202
|
+
};
|
|
203
|
+
type TCreateBeneficiaryXTokensOptions<TApi, TRes> = {
|
|
204
|
+
api: IPolkadotApi<TApi, TRes>;
|
|
205
|
+
origin: TNodeDotKsmWithRelayChains;
|
|
206
|
+
destination: TDestination;
|
|
207
|
+
address: TAddress;
|
|
206
208
|
version: Version;
|
|
207
209
|
paraId?: number;
|
|
208
210
|
};
|
|
@@ -210,6 +212,42 @@ type TBridgeStatus = 'Normal' | 'Halted';
|
|
|
210
212
|
type TTransferLocalOptions<TApi, TRes> = Omit<TSendInternalOptions<TApi, TRes>, 'address'> & {
|
|
211
213
|
address: string;
|
|
212
214
|
};
|
|
215
|
+
type TTransferFeeEstimates = {
|
|
216
|
+
originFee: bigint;
|
|
217
|
+
reserveFee: bigint;
|
|
218
|
+
};
|
|
219
|
+
type TCreateBaseTransferXcmOptions = {
|
|
220
|
+
chain: TNodeDotKsmWithRelayChains;
|
|
221
|
+
destChain: TNodeWithRelayChains;
|
|
222
|
+
asset: WithAmount<TAsset>;
|
|
223
|
+
feeAsset?: TAsset;
|
|
224
|
+
fees: TTransferFeeEstimates;
|
|
225
|
+
recipientAddress: string;
|
|
226
|
+
version: Version;
|
|
227
|
+
paraIdTo?: number;
|
|
228
|
+
};
|
|
229
|
+
type TCreateTransferXcmOptions<TApi, TRes> = WithApi<TCreateBaseTransferXcmOptions, TApi, TRes>;
|
|
230
|
+
type TCreateBaseSwapXcmOptions = {
|
|
231
|
+
chain?: TNodeDotKsmWithRelayChains;
|
|
232
|
+
exchangeChain: TNodePolkadotKusama;
|
|
233
|
+
destChain?: TNodeWithRelayChains;
|
|
234
|
+
assetFrom: WithAmount<TAsset>;
|
|
235
|
+
assetTo: WithAmount<TAsset>;
|
|
236
|
+
senderAddress: string;
|
|
237
|
+
recipientAddress: string;
|
|
238
|
+
calculateMinAmountOut: (amountIn: bigint, assetTo?: TAsset) => Promise<bigint>;
|
|
239
|
+
};
|
|
240
|
+
type TCreateSwapXcmOptions<TApi, TRes> = WithApi<TCreateBaseSwapXcmOptions, TApi, TRes>;
|
|
241
|
+
type TSwapFeeEstimates = {
|
|
242
|
+
originReserveFee: bigint;
|
|
243
|
+
exchangeFee: bigint;
|
|
244
|
+
destReserveFee: bigint;
|
|
245
|
+
};
|
|
246
|
+
type TCreateSwapXcmInternalOptions<TApi, TRes> = WithApi<TCreateBaseSwapXcmOptions, TApi, TRes> & {
|
|
247
|
+
version: Version;
|
|
248
|
+
fees: TSwapFeeEstimates;
|
|
249
|
+
paraIdTo?: number;
|
|
250
|
+
};
|
|
213
251
|
|
|
214
252
|
type TAssetClaimOptionsBase = {
|
|
215
253
|
node: TNodeWithRelayChains;
|
|
@@ -503,7 +541,7 @@ type TOtherReserveAsset = {
|
|
|
503
541
|
type TSelfReserveAsset = 'SelfReserve';
|
|
504
542
|
type TReserveAsset = TOtherReserveAsset | TSelfReserveAsset;
|
|
505
543
|
type TBifrostToken = {
|
|
506
|
-
Native: string;
|
|
544
|
+
Native: string | number;
|
|
507
545
|
} | {
|
|
508
546
|
VToken: string;
|
|
509
547
|
} | {
|
|
@@ -666,6 +704,8 @@ declare class BridgeHaltedError extends Error {
|
|
|
666
704
|
* Error thrown when the Dry Run fails.
|
|
667
705
|
*/
|
|
668
706
|
declare class DryRunFailedError extends Error {
|
|
707
|
+
readonly reason: string;
|
|
708
|
+
readonly dryRunType?: 'origin' | 'destination' | 'assetHub' | 'bridgeHub';
|
|
669
709
|
/**
|
|
670
710
|
* Constructs a new DryRunFailedError.
|
|
671
711
|
*
|
|
@@ -1265,7 +1305,7 @@ declare class Acala<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXT
|
|
|
1265
1305
|
}
|
|
1266
1306
|
|
|
1267
1307
|
declare class Ajuna<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXTokensTransfer, IPolkadotXCMTransfer {
|
|
1268
|
-
constructor();
|
|
1308
|
+
constructor(chain?: TNodePolkadotKusama, info?: string, type?: TEcosystemType, version?: Version);
|
|
1269
1309
|
transferXTokens<TApi, TRes>(input: TXTokensTransferOptions<TApi, TRes>): TRes;
|
|
1270
1310
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
1271
1311
|
protected canUseXTokens({ asset, to: destination }: TSendInternalOptions<TApi, TRes>): boolean;
|
|
@@ -1273,6 +1313,10 @@ declare class Ajuna<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXT
|
|
|
1273
1313
|
transferLocalNonNativeAsset(options: TTransferLocalOptions<TApi, TRes>): TRes;
|
|
1274
1314
|
}
|
|
1275
1315
|
|
|
1316
|
+
declare class AjunaPaseo<TApi, TRes> extends Ajuna<TApi, TRes> {
|
|
1317
|
+
constructor();
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1276
1320
|
declare class Altair<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXTokensTransfer {
|
|
1277
1321
|
constructor();
|
|
1278
1322
|
private getCurrencySelection;
|
|
@@ -1294,7 +1338,7 @@ declare class AssetHubKusama<TApi, TRes> extends ParachainNode<TApi, TRes> imple
|
|
|
1294
1338
|
}
|
|
1295
1339
|
|
|
1296
1340
|
declare class AssetHubPolkadot<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
1297
|
-
constructor();
|
|
1341
|
+
constructor(chain?: TNodePolkadotKusama, info?: string, type?: TEcosystemType, version?: Version);
|
|
1298
1342
|
handleBridgeTransfer<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>, targetChain: 'Polkadot' | 'Kusama'): Promise<TRes>;
|
|
1299
1343
|
handleEthBridgeNativeTransfer<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
1300
1344
|
handleEthBridgeTransfer<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
@@ -1308,6 +1352,14 @@ declare class AssetHubPolkadot<TApi, TRes> extends ParachainNode<TApi, TRes> imp
|
|
|
1308
1352
|
transferLocalNonNativeAsset(options: TTransferLocalOptions<TApi, TRes>): TRes;
|
|
1309
1353
|
}
|
|
1310
1354
|
|
|
1355
|
+
declare class AssetHubPaseo<TApi, TRes> extends AssetHubPolkadot<TApi, TRes> {
|
|
1356
|
+
constructor();
|
|
1357
|
+
}
|
|
1358
|
+
|
|
1359
|
+
declare class AssetHubWestend<TApi, TRes> extends AssetHubPolkadot<TApi, TRes> {
|
|
1360
|
+
constructor();
|
|
1361
|
+
}
|
|
1362
|
+
|
|
1311
1363
|
declare class Astar<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer, IXTokensTransfer {
|
|
1312
1364
|
constructor();
|
|
1313
1365
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
@@ -1330,7 +1382,7 @@ declare class BifrostKusama<TApi, TRes> extends ParachainNode<TApi, TRes> implem
|
|
|
1330
1382
|
}
|
|
1331
1383
|
|
|
1332
1384
|
declare class BifrostPolkadot<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXTokensTransfer, IPolkadotXCMTransfer {
|
|
1333
|
-
constructor();
|
|
1385
|
+
constructor(chain?: TNodePolkadotKusama, info?: string, type?: TEcosystemType, version?: Version);
|
|
1334
1386
|
getCurrencySelection(asset: TAsset): {
|
|
1335
1387
|
Native: string;
|
|
1336
1388
|
VToken?: undefined;
|
|
@@ -1381,6 +1433,10 @@ declare class BifrostPolkadot<TApi, TRes> extends ParachainNode<TApi, TRes> impl
|
|
|
1381
1433
|
transferLocalNonNativeAsset(options: TTransferLocalOptions<TApi, TRes>): TRes;
|
|
1382
1434
|
}
|
|
1383
1435
|
|
|
1436
|
+
declare class BifrostPaseo<TApi, TRes> extends BifrostPolkadot<TApi, TRes> {
|
|
1437
|
+
constructor();
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1384
1440
|
declare class BridgeHubKusama<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
1385
1441
|
constructor();
|
|
1386
1442
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
@@ -1388,11 +1444,19 @@ declare class BridgeHubKusama<TApi, TRes> extends ParachainNode<TApi, TRes> impl
|
|
|
1388
1444
|
}
|
|
1389
1445
|
|
|
1390
1446
|
declare class BridgeHubPolkadot<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
1391
|
-
constructor();
|
|
1447
|
+
constructor(chain?: TNodePolkadotKusama, info?: string, type?: TEcosystemType, version?: Version);
|
|
1392
1448
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
1393
1449
|
getRelayToParaOverrides(): TRelayToParaOverrides;
|
|
1394
1450
|
}
|
|
1395
1451
|
|
|
1452
|
+
declare class BridgeHubPaseo<TApi, TRes> extends BridgeHubPolkadot<TApi, TRes> {
|
|
1453
|
+
constructor();
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
declare class BridgeHubWestend<TApi, TRes> extends BridgeHubPolkadot<TApi, TRes> {
|
|
1457
|
+
constructor();
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1396
1460
|
declare class Centrifuge<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXTokensTransfer {
|
|
1397
1461
|
constructor();
|
|
1398
1462
|
private getCurrencySelection;
|
|
@@ -1401,11 +1465,15 @@ declare class Centrifuge<TApi, TRes> extends ParachainNode<TApi, TRes> implement
|
|
|
1401
1465
|
}
|
|
1402
1466
|
|
|
1403
1467
|
declare class Collectives<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
1404
|
-
constructor();
|
|
1468
|
+
constructor(chain?: TNodePolkadotKusama, info?: string, type?: TEcosystemType, version?: Version);
|
|
1405
1469
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
1406
1470
|
getRelayToParaOverrides(): TRelayToParaOverrides;
|
|
1407
1471
|
}
|
|
1408
1472
|
|
|
1473
|
+
declare class CollectivesWestend<TApi, TRes> extends Collectives<TApi, TRes> {
|
|
1474
|
+
constructor();
|
|
1475
|
+
}
|
|
1476
|
+
|
|
1409
1477
|
declare class ComposableFinance<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXTokensTransfer {
|
|
1410
1478
|
constructor();
|
|
1411
1479
|
transferXTokens<TApi, TRes>(input: TXTokensTransferOptions<TApi, TRes>): TRes;
|
|
@@ -1418,11 +1486,19 @@ declare class CoretimeKusama<TApi, TRes> extends ParachainNode<TApi, TRes> imple
|
|
|
1418
1486
|
}
|
|
1419
1487
|
|
|
1420
1488
|
declare class CoretimePolkadot<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
1421
|
-
constructor();
|
|
1489
|
+
constructor(chain?: TNodePolkadotKusama, info?: string, type?: TEcosystemType, version?: Version);
|
|
1422
1490
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
1423
1491
|
getRelayToParaOverrides(): TRelayToParaOverrides;
|
|
1424
1492
|
}
|
|
1425
1493
|
|
|
1494
|
+
declare class CoretimePaseo<TApi, TRes> extends CoretimePolkadot<TApi, TRes> {
|
|
1495
|
+
constructor();
|
|
1496
|
+
}
|
|
1497
|
+
|
|
1498
|
+
declare class CoretimeWestend<TApi, TRes> extends CoretimePolkadot<TApi, TRes> {
|
|
1499
|
+
constructor();
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1426
1502
|
declare class Crab<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
1427
1503
|
constructor();
|
|
1428
1504
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
@@ -1464,13 +1540,17 @@ declare class Encointer<TApi, TRes> extends ParachainNode<TApi, TRes> implements
|
|
|
1464
1540
|
}
|
|
1465
1541
|
|
|
1466
1542
|
declare class Heima<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
1467
|
-
constructor();
|
|
1543
|
+
constructor(chain?: TNodePolkadotKusama, info?: string, type?: TEcosystemType, version?: Version);
|
|
1468
1544
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
1469
1545
|
}
|
|
1470
1546
|
|
|
1547
|
+
declare class HeimaPaseo<TApi, TRes> extends Heima<TApi, TRes> {
|
|
1548
|
+
constructor();
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1471
1551
|
declare class Hydration<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXTokensTransfer, IPolkadotXCMTransfer {
|
|
1472
1552
|
private static NATIVE_ASSET_ID;
|
|
1473
|
-
constructor();
|
|
1553
|
+
constructor(chain?: TNodePolkadotKusama, info?: string, type?: TEcosystemType, version?: Version);
|
|
1474
1554
|
transferToAssetHub<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): TRes;
|
|
1475
1555
|
transferToPolimec<TApi, TRes>(options: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
1476
1556
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
@@ -1480,6 +1560,10 @@ declare class Hydration<TApi, TRes> extends ParachainNode<TApi, TRes> implements
|
|
|
1480
1560
|
transferLocalNonNativeAsset(options: TTransferLocalOptions<TApi, TRes>): TRes;
|
|
1481
1561
|
}
|
|
1482
1562
|
|
|
1563
|
+
declare class HydrationPaseo<TApi, TRes> extends Hydration<TApi, TRes> {
|
|
1564
|
+
constructor();
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1483
1567
|
declare class Interlay<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXTokensTransfer {
|
|
1484
1568
|
constructor();
|
|
1485
1569
|
getCurrencySelection(asset: TAsset): TForeignOrTokenAsset;
|
|
@@ -1488,6 +1572,12 @@ declare class Interlay<TApi, TRes> extends ParachainNode<TApi, TRes> implements
|
|
|
1488
1572
|
transferLocalNonNativeAsset(options: TTransferLocalOptions<TApi, TRes>): TRes;
|
|
1489
1573
|
}
|
|
1490
1574
|
|
|
1575
|
+
declare class Jamton<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXTokensTransfer {
|
|
1576
|
+
private static NATIVE_ASSET_IDS;
|
|
1577
|
+
constructor();
|
|
1578
|
+
transferXTokens<TApi, TRes>(input: TXTokensTransferOptions<TApi, TRes>): TRes;
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1491
1581
|
declare class Karura<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXTokensTransfer {
|
|
1492
1582
|
constructor();
|
|
1493
1583
|
transferXTokens<TApi, TRes>(input: TXTokensTransferOptions<TApi, TRes>): TRes;
|
|
@@ -1496,11 +1586,15 @@ declare class Karura<TApi, TRes> extends ParachainNode<TApi, TRes> implements IX
|
|
|
1496
1586
|
}
|
|
1497
1587
|
|
|
1498
1588
|
declare class KiltSpiritnet<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
1499
|
-
constructor();
|
|
1589
|
+
constructor(chain?: TNodePolkadotKusama, info?: string, type?: TEcosystemType, version?: Version);
|
|
1500
1590
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
1501
1591
|
transferRelayToPara(): TSerializedApiCall;
|
|
1502
1592
|
}
|
|
1503
1593
|
|
|
1594
|
+
declare class KiltPaseo<TApi, TRes> extends KiltSpiritnet<TApi, TRes> {
|
|
1595
|
+
constructor();
|
|
1596
|
+
}
|
|
1597
|
+
|
|
1504
1598
|
declare class Kintsugi<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXTokensTransfer {
|
|
1505
1599
|
constructor();
|
|
1506
1600
|
getCurrencySelection(asset: TAsset): TForeignOrTokenAsset;
|
|
@@ -1510,11 +1604,15 @@ declare class Kintsugi<TApi, TRes> extends ParachainNode<TApi, TRes> implements
|
|
|
1510
1604
|
}
|
|
1511
1605
|
|
|
1512
1606
|
declare class Laos<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
1513
|
-
constructor();
|
|
1607
|
+
constructor(chain?: TNodePolkadotKusama, info?: string, type?: TEcosystemType, version?: Version);
|
|
1514
1608
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
1515
1609
|
transferRelayToPara(): TSerializedApiCall;
|
|
1516
1610
|
}
|
|
1517
1611
|
|
|
1612
|
+
declare class LaosPaseo<TApi, TRes> extends Laos<TApi, TRes> {
|
|
1613
|
+
constructor();
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1518
1616
|
declare class Manta<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXTokensTransfer {
|
|
1519
1617
|
static readonly NATIVE_ASSET_ID = 1n;
|
|
1520
1618
|
constructor();
|
|
@@ -1524,7 +1622,7 @@ declare class Manta<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXT
|
|
|
1524
1622
|
}
|
|
1525
1623
|
|
|
1526
1624
|
declare class Moonbeam<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
1527
|
-
constructor();
|
|
1625
|
+
constructor(chain?: TNodePolkadotKusama, info?: string, type?: TEcosystemType, version?: Version);
|
|
1528
1626
|
private getMultiLocation;
|
|
1529
1627
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
1530
1628
|
getRelayToParaOverrides(): TRelayToParaOverrides;
|
|
@@ -1547,16 +1645,34 @@ declare class Mythos<TApi, TRes> extends ParachainNode<TApi, TRes> implements IP
|
|
|
1547
1645
|
}
|
|
1548
1646
|
|
|
1549
1647
|
declare class NeuroWeb<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
1550
|
-
constructor();
|
|
1648
|
+
constructor(chain?: TNodePolkadotKusama, info?: string, type?: TEcosystemType, version?: Version);
|
|
1551
1649
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
1552
1650
|
}
|
|
1553
1651
|
|
|
1554
|
-
declare class
|
|
1652
|
+
declare class NeuroWebPaseo<TApi, TRes> extends NeuroWeb<TApi, TRes> {
|
|
1555
1653
|
constructor();
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
declare class Nodle<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
1657
|
+
constructor(chain?: TNodePolkadotKusama, info?: string, type?: TEcosystemType, version?: Version);
|
|
1556
1658
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
1557
1659
|
transferRelayToPara(): TSerializedApiCall;
|
|
1558
1660
|
}
|
|
1559
1661
|
|
|
1662
|
+
declare class NodlePaseo<TApi, TRes> extends Nodle<TApi, TRes> {
|
|
1663
|
+
constructor();
|
|
1664
|
+
}
|
|
1665
|
+
|
|
1666
|
+
declare class PeoplePolkadot<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
1667
|
+
constructor(chain?: TNodePolkadotKusama, info?: string, type?: TEcosystemType, version?: Version);
|
|
1668
|
+
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
1669
|
+
getRelayToParaOverrides(): TRelayToParaOverrides;
|
|
1670
|
+
}
|
|
1671
|
+
|
|
1672
|
+
declare class PAssetHub<TApi, TRes> extends PeoplePolkadot<TApi, TRes> {
|
|
1673
|
+
constructor();
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1560
1676
|
declare class Peaq<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXTokensTransfer {
|
|
1561
1677
|
constructor();
|
|
1562
1678
|
transferXTokens<TApi, TRes>(input: TXTokensTransferOptions<TApi, TRes>): TRes;
|
|
@@ -1570,16 +1686,22 @@ declare class Pendulum<TApi, TRes> extends ParachainNode<TApi, TRes> implements
|
|
|
1570
1686
|
transferXTokens<TApi, TRes>(input: TXTokensTransferOptions<TApi, TRes>): TRes;
|
|
1571
1687
|
}
|
|
1572
1688
|
|
|
1689
|
+
declare class Penpal<TApi, TRes> extends Moonbeam<TApi, TRes> {
|
|
1690
|
+
constructor();
|
|
1691
|
+
}
|
|
1692
|
+
|
|
1573
1693
|
declare class PeopleKusama<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
1574
1694
|
constructor();
|
|
1575
1695
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
1576
1696
|
getRelayToParaOverrides(): TRelayToParaOverrides;
|
|
1577
1697
|
}
|
|
1578
1698
|
|
|
1579
|
-
declare class
|
|
1699
|
+
declare class PeoplePaseo<TApi, TRes> extends PeoplePolkadot<TApi, TRes> {
|
|
1700
|
+
constructor();
|
|
1701
|
+
}
|
|
1702
|
+
|
|
1703
|
+
declare class PeopleWestend<TApi, TRes> extends PeoplePolkadot<TApi, TRes> {
|
|
1580
1704
|
constructor();
|
|
1581
|
-
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
1582
|
-
getRelayToParaOverrides(): TRelayToParaOverrides;
|
|
1583
1705
|
}
|
|
1584
1706
|
|
|
1585
1707
|
declare class Phala<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXTransferTransfer {
|
|
@@ -1634,12 +1756,16 @@ declare class Unique<TApi, TRes> extends ParachainNode<TApi, TRes> implements IX
|
|
|
1634
1756
|
}
|
|
1635
1757
|
|
|
1636
1758
|
declare class Zeitgeist<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXTokensTransfer {
|
|
1637
|
-
constructor();
|
|
1759
|
+
constructor(chain?: TNodePolkadotKusama, info?: string, type?: TEcosystemType, version?: Version);
|
|
1638
1760
|
private getCurrencySelection;
|
|
1639
1761
|
transferXTokens<TApi, TRes>(input: TXTokensTransferOptions<TApi, TRes>): TRes;
|
|
1640
1762
|
transferLocalNonNativeAsset(options: TTransferLocalOptions<TApi, TRes>): TRes;
|
|
1641
1763
|
}
|
|
1642
1764
|
|
|
1765
|
+
declare class ZeitgeistPaseo<TApi, TRes> extends Zeitgeist<TApi, TRes> {
|
|
1766
|
+
constructor();
|
|
1767
|
+
}
|
|
1768
|
+
|
|
1643
1769
|
declare const nodes: <TApi, TRes>() => {
|
|
1644
1770
|
AssetHubPolkadot: AssetHubPolkadot<TApi, TRes>;
|
|
1645
1771
|
Acala: Acala<TApi, TRes>;
|
|
@@ -1656,6 +1782,7 @@ declare const nodes: <TApi, TRes>() => {
|
|
|
1656
1782
|
Hydration: Hydration<TApi, TRes>;
|
|
1657
1783
|
Interlay: Interlay<TApi, TRes>;
|
|
1658
1784
|
Heima: Heima<TApi, TRes>;
|
|
1785
|
+
Jamton: Jamton<TApi, TRes>;
|
|
1659
1786
|
Moonbeam: Moonbeam<TApi, TRes>;
|
|
1660
1787
|
AssetHubKusama: AssetHubKusama<TApi, TRes>;
|
|
1661
1788
|
CoretimeKusama: CoretimeKusama<TApi, TRes>;
|
|
@@ -1690,6 +1817,26 @@ declare const nodes: <TApi, TRes>() => {
|
|
|
1690
1817
|
Mythos: Mythos<TApi, TRes>;
|
|
1691
1818
|
Peaq: Peaq<TApi, TRes>;
|
|
1692
1819
|
Polimec: Polimec<TApi, TRes>;
|
|
1820
|
+
AssetHubWestend: AssetHubWestend<TApi, TRes>;
|
|
1821
|
+
BridgeHubWestend: BridgeHubWestend<TApi, TRes>;
|
|
1822
|
+
CollectivesWestend: CollectivesWestend<TApi, TRes>;
|
|
1823
|
+
CoretimeWestend: CoretimeWestend<TApi, TRes>;
|
|
1824
|
+
PeopleWestend: PeopleWestend<TApi, TRes>;
|
|
1825
|
+
Penpal: Penpal<TApi, TRes>;
|
|
1826
|
+
AssetHubPaseo: AssetHubPaseo<TApi, TRes>;
|
|
1827
|
+
BridgeHubPaseo: BridgeHubPaseo<TApi, TRes>;
|
|
1828
|
+
CoretimePaseo: CoretimePaseo<TApi, TRes>;
|
|
1829
|
+
PAssetHub: PAssetHub<TApi, TRes>;
|
|
1830
|
+
PeoplePaseo: PeoplePaseo<TApi, TRes>;
|
|
1831
|
+
AjunaPaseo: AjunaPaseo<TApi, TRes>;
|
|
1832
|
+
BifrostPaseo: BifrostPaseo<TApi, TRes>;
|
|
1833
|
+
HeimaPaseo: HeimaPaseo<TApi, TRes>;
|
|
1834
|
+
HydrationPaseo: HydrationPaseo<TApi, TRes>;
|
|
1835
|
+
KiltPaseo: KiltPaseo<TApi, TRes>;
|
|
1836
|
+
LaosPaseo: LaosPaseo<TApi, TRes>;
|
|
1837
|
+
NeuroWebPaseo: NeuroWebPaseo<TApi, TRes>;
|
|
1838
|
+
NodlePaseo: NodlePaseo<TApi, TRes>;
|
|
1839
|
+
ZeitgeistPaseo: ZeitgeistPaseo<TApi, TRes>;
|
|
1693
1840
|
};
|
|
1694
1841
|
|
|
1695
1842
|
declare const getNodeConfig: (node: TNodeDotKsmWithRelayChains) => TNodeConfig;
|
|
@@ -1766,10 +1913,17 @@ declare const assertToIsString: (to: TDestination, overrideMsg?: string) => asse
|
|
|
1766
1913
|
declare const assertAddressIsString: (address: TAddress) => asserts address is Exclude<TAddress, TMultiLocation>;
|
|
1767
1914
|
declare const assertHasLocation: (asset: TAsset) => asserts asset is TAssetWithLocation;
|
|
1768
1915
|
|
|
1769
|
-
declare const
|
|
1916
|
+
declare const getChainVersion: <TApi, TRes>(chain: TNodeWithRelayChains) => Version;
|
|
1770
1917
|
|
|
1771
|
-
|
|
1772
|
-
|
|
1918
|
+
/**
|
|
1919
|
+
* Gets the relay chain (Polkadot, Kusama, Westend, or Paseo) of a given chain.
|
|
1920
|
+
*
|
|
1921
|
+
* @param chain - The chain to evaluate.
|
|
1922
|
+
* @returns The corresponding relay chain.
|
|
1923
|
+
*/
|
|
1924
|
+
declare const getRelayChainOf: (chain: TNodeDotKsmWithRelayChains) => TRelayChain;
|
|
1925
|
+
|
|
1926
|
+
declare const createApiInstanceForNode: <TApi, TRes>(api: IPolkadotApi<TApi, TRes>, node: TNodeDotKsmWithRelayChains) => Promise<TApi>;
|
|
1773
1927
|
|
|
1774
1928
|
declare const computeFeeFromDryRun: (dryRun: any, node: TNodeDotKsmWithRelayChains, executionFee: bigint, isFeeAsset?: boolean) => bigint;
|
|
1775
1929
|
|
|
@@ -1785,10 +1939,13 @@ declare const resolveModuleError: (node: TNodeDotKsmWithRelayChains, error: TMod
|
|
|
1785
1939
|
*/
|
|
1786
1940
|
declare const getNode: <TApi, TRes, T extends keyof ReturnType<typeof nodes>>(node: T) => ReturnType<typeof nodes<TApi, TRes>>[T];
|
|
1787
1941
|
|
|
1788
|
-
declare const
|
|
1942
|
+
declare const createBeneficiaryLocXTokens: <TApi, TRes>({ api, address: recipientAddress, origin, destination, version, paraId }: TCreateBeneficiaryXTokensOptions<TApi, TRes>) => TMultiLocation;
|
|
1943
|
+
declare const createBeneficiaryLocation: <TApi, TRes>({ api, address: recipientAddress, version }: TCreateBeneficiaryOptions<TApi, TRes>) => TMultiLocation;
|
|
1789
1944
|
|
|
1790
1945
|
declare const createX1Payload: (version: Version, junction: TJunction) => TJunctions;
|
|
1791
1946
|
|
|
1947
|
+
declare const getChainLocation: (chain: TNodeWithRelayChains) => TMultiLocation;
|
|
1948
|
+
|
|
1792
1949
|
/**
|
|
1793
1950
|
* This function localizes a multiLocation by removing the `Parachain` junction
|
|
1794
1951
|
* if it exists. The `parents` field is set to `0` either if a `Parachain` was removed
|
|
@@ -1802,17 +1959,42 @@ declare const localizeLocation: (node: TNodeWithRelayChains, multiLocation: TMul
|
|
|
1802
1959
|
|
|
1803
1960
|
declare const reverseTransformMultiLocation: (multiLocation: TMultiLocation) => TMultiLocation;
|
|
1804
1961
|
|
|
1962
|
+
declare const createMultiAsset: (version: Version, amount: TAmount, multiLocation: TMultiLocation) => TMultiAsset;
|
|
1963
|
+
declare const createVersionedMultiAssets: (version: Version, amount: TAmount, multiLocation: TMultiLocation) => OneKey<Version, TMultiAsset[]>;
|
|
1964
|
+
|
|
1965
|
+
declare const maybeOverrideMultiAssets: (version: Version, amount: TAmount, multiAssets: TMultiAsset[], overriddenCurrency?: TMultiLocation | TMultiAsset[]) => TMultiAsset[];
|
|
1966
|
+
declare const maybeOverrideMultiAsset: (version: Version, amount: TAmount, multiAsset: TMultiAsset, overriddenCurrency?: TMultiLocation | TMultiAsset[]) => TMultiAsset;
|
|
1967
|
+
|
|
1968
|
+
declare const sortMultiAssets: (assets: TMultiAsset[]) => TMultiAsset[];
|
|
1969
|
+
|
|
1805
1970
|
declare const resolveParaId: (paraId: number | undefined, destination: TDestination) => number | undefined;
|
|
1806
1971
|
|
|
1807
|
-
declare const
|
|
1972
|
+
declare const createAssetsFilter: (asset: TMultiAsset) => {
|
|
1973
|
+
Wild: {
|
|
1974
|
+
AllOf: {
|
|
1975
|
+
id: _paraspell_sdk_common.TMultiLocation;
|
|
1976
|
+
fun: string;
|
|
1977
|
+
};
|
|
1978
|
+
};
|
|
1979
|
+
};
|
|
1808
1980
|
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
declare const
|
|
1981
|
+
declare const createBaseExecuteXcm: (options: TCreateBaseTransferXcmOptions & {
|
|
1982
|
+
suffixXcm?: unknown[];
|
|
1983
|
+
}) => unknown[];
|
|
1984
|
+
|
|
1985
|
+
declare const createExecuteCall: (chain: TNodeDotKsmWithRelayChains, xcm: TXcmVersioned<any>, maxWeight: TWeight) => TSerializedApiCall;
|
|
1986
|
+
|
|
1987
|
+
declare const createExecuteExchangeXcm: <TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>, origin: TNodeDotKsmWithRelayChains, weight: TWeight, originExecutionFee: bigint, destExecutionFee: bigint) => TRes;
|
|
1988
|
+
|
|
1989
|
+
declare const createDirectExecuteXcm: <TApi, TRes>(options: TCreateTransferXcmOptions<TApi, TRes>) => OneKey<_paraspell_sdk_common.Version, unknown[]>;
|
|
1990
|
+
|
|
1991
|
+
declare const handleExecuteTransfer: <TApi, TRes>(chain: TNodePolkadotKusama, options: TPolkadotXCMTransferOptions<TApi, TRes>) => Promise<TSerializedApiCall>;
|
|
1992
|
+
|
|
1993
|
+
declare const handleSwapExecuteTransfer: <TApi, TRes>(options: TCreateSwapXcmOptions<TApi, TRes>) => Promise<TRes>;
|
|
1994
|
+
|
|
1995
|
+
declare const handleToAhTeleport: <TApi, TRes>(origin: TNodePolkadotKusama, input: TPolkadotXCMTransferOptions<TApi, TRes>, defaultTx: TRes) => Promise<TRes>;
|
|
1996
|
+
|
|
1997
|
+
declare const validateAddress: (address: TAddress, node: TNodeWithRelayChains, isDestination?: boolean) => void;
|
|
1816
1998
|
|
|
1817
|
-
export { AssetClaimBuilder, BatchMode, BridgeHaltedError, Builder, DRY_RUN_CLIENT_TIMEOUT_MS, DryRunFailedError, ETHEREUM_JUNCTION, ETH_CHAIN_ID, GeneralBuilder, IncompatibleNodesError, InvalidAddressError, InvalidParameterError, NoXCMSupportImplementedError, NodeNotSupportedError, PolkadotXcmError, ScenarioNotSupportedError, TX_CLIENT_TIMEOUT_MS, TransferToAhNotSupported, UnableToComputeError, XTokensError, addXcmVersionHeader, assertAddressIsString, assertHasLocation, assertToIsString, blake2b256, blake2b512, claimAssets, computeFeeFromDryRun, computeFeeFromDryRunPjs, convertSs58, createApiInstanceForNode,
|
|
1818
|
-
export type { IPolkadotApi, IPolkadotXCMTransfer, IXTokensTransfer, IXTransferTransfer, OneKey, TAddress, TApiOrUrl, TAssetClaimOptions, TAssetClaimOptionsBase, TBalanceResponse, TBatchOptions, TBifrostToken, TBridgeStatus, TCreateBeneficiaryOptions, TDestWeight, TDestination, TDryRunBaseOptions, TDryRunCallBaseOptions, TDryRunCallOptions, TDryRunChain, TDryRunNodeFailure, TDryRunNodeResult, TDryRunNodeResultInternal, TDryRunNodeSuccess, TDryRunOptions, TDryRunResult, TDryRunXcmBaseOptions, TDryRunXcmOptions, TEdJsonMap, TEvmBuilderOptions, TEvmBuilderOptionsBase, TEvmNodeFrom, TFeeType, TForeignAssetId, TForeignOrNativeAsset, TForeignOrTokenAsset, TGetAssetBalanceOptions, TGetAssetBalanceOptionsBase, TGetBalanceForeignOptions, TGetBalanceForeignOptionsBase, TGetBalanceNativeOptions, TGetBalanceNativeOptionsBase, TGetFeeForDestNodeBaseOptions, TGetFeeForDestNodeOptions, TGetMaxForeignTransferableAmountOptions, TGetMaxForeignTransferableAmountOptionsBase, TGetMaxNativeTransferableAmountOptions, TGetMaxNativeTransferableAmountOptionsBase, TGetOriginFeeDetailsOptions, TGetOriginFeeDetailsOptionsBase, TGetOriginXcmFeeBaseOptions, TGetOriginXcmFeeEstimateOptions, TGetOriginXcmFeeOptions, TGetReverseTxFeeOptions, TGetTransferInfoOptions, TGetTransferInfoOptionsBase, TGetTransferableAmountOptions, TGetTransferableAmountOptionsBase, TGetXcmFeeBaseOptions, TGetXcmFeeBuilderOptions, TGetXcmFeeEstimateDetail, TGetXcmFeeEstimateOptions, TGetXcmFeeEstimateResult, TGetXcmFeeOptions, TGetXcmFeeResult, THopInfo, THopTransferInfo, THubKey, TMantaAsset, TModuleError, TNativeTokenAsset, TNodeConfig, TNodeConfigMap, TNodleAsset, TOriginFeeDetails, TOtherReserveAsset, TPolkadotXCMTransferOptions, TPolkadotXcmMethod, TProviderEntry, TRelayToParaDestination, TRelayToParaOptions, TRelayToParaOverrides,
|
|
1999
|
+
export { AssetClaimBuilder, BatchMode, BridgeHaltedError, Builder, DRY_RUN_CLIENT_TIMEOUT_MS, DryRunFailedError, ETHEREUM_JUNCTION, ETH_CHAIN_ID, GeneralBuilder, IncompatibleNodesError, InvalidAddressError, InvalidParameterError, NoXCMSupportImplementedError, NodeNotSupportedError, PolkadotXcmError, ScenarioNotSupportedError, TX_CLIENT_TIMEOUT_MS, TransferToAhNotSupported, UnableToComputeError, XTokensError, addXcmVersionHeader, assertAddressIsString, assertHasLocation, assertToIsString, blake2b256, blake2b512, claimAssets, computeFeeFromDryRun, computeFeeFromDryRunPjs, convertSs58, createApiInstanceForNode, createAssetsFilter, createBaseExecuteXcm, createBeneficiaryLocXTokens, createBeneficiaryLocation, createDirectExecuteXcm, createExecuteCall, createExecuteExchangeXcm, createMultiAsset, createVersionedMultiAssets, createX1Payload, deriveAccountId, dryRun, dryRunOrigin, encodeSs58, getAssetBalance, getAssetBalanceInternal, getBalanceForeign, getBalanceForeignInternal, getBalanceNative, getBalanceNativeInternal, getBridgeStatus, getChainLocation, getChainVersion, getNode, getNodeConfig, getNodeProviders, getOriginFeeDetails, getOriginFeeDetailsInternal, getOriginXcmFee, getOriginXcmFeeEstimate, getParaEthTransferFees, getParaId, getRelayChainOf, getTNode, getTransferInfo, getTransferableAmount, getTransferableAmountInternal, getXcmFee, getXcmFeeEstimate, handleExecuteTransfer, handleSwapExecuteTransfer, handleToAhTeleport, localizeLocation, maybeOverrideMultiAsset, maybeOverrideMultiAssets, resolveModuleError, resolveParaId, reverseTransformMultiLocation, send, sortMultiAssets, transferMoonbeamEvm, transferMoonbeamToEth, transferRelayToPara, validateAddress, verifyEdOnDestination };
|
|
2000
|
+
export type { IPolkadotApi, IPolkadotXCMTransfer, IXTokensTransfer, IXTransferTransfer, OneKey, TAddress, TApiOrUrl, TAssetClaimOptions, TAssetClaimOptionsBase, TBalanceResponse, TBatchOptions, TBifrostToken, TBridgeStatus, TCreateBaseSwapXcmOptions, TCreateBaseTransferXcmOptions, TCreateBeneficiaryOptions, TCreateBeneficiaryXTokensOptions, TCreateSwapXcmInternalOptions, TCreateSwapXcmOptions, TCreateTransferXcmOptions, TDestWeight, TDestination, TDryRunBaseOptions, TDryRunCallBaseOptions, TDryRunCallOptions, TDryRunChain, TDryRunNodeFailure, TDryRunNodeResult, TDryRunNodeResultInternal, TDryRunNodeSuccess, TDryRunOptions, TDryRunResult, TDryRunXcmBaseOptions, TDryRunXcmOptions, TEdJsonMap, TEvmBuilderOptions, TEvmBuilderOptionsBase, TEvmNodeFrom, TFeeType, TForeignAssetId, TForeignOrNativeAsset, TForeignOrTokenAsset, TGetAssetBalanceOptions, TGetAssetBalanceOptionsBase, TGetBalanceForeignOptions, TGetBalanceForeignOptionsBase, TGetBalanceNativeOptions, TGetBalanceNativeOptionsBase, TGetFeeForDestNodeBaseOptions, TGetFeeForDestNodeOptions, TGetMaxForeignTransferableAmountOptions, TGetMaxForeignTransferableAmountOptionsBase, TGetMaxNativeTransferableAmountOptions, TGetMaxNativeTransferableAmountOptionsBase, TGetOriginFeeDetailsOptions, TGetOriginFeeDetailsOptionsBase, TGetOriginXcmFeeBaseOptions, TGetOriginXcmFeeEstimateOptions, TGetOriginXcmFeeOptions, TGetReverseTxFeeOptions, TGetTransferInfoOptions, TGetTransferInfoOptionsBase, TGetTransferableAmountOptions, TGetTransferableAmountOptionsBase, TGetXcmFeeBaseOptions, TGetXcmFeeBuilderOptions, TGetXcmFeeEstimateDetail, TGetXcmFeeEstimateOptions, TGetXcmFeeEstimateResult, TGetXcmFeeOptions, TGetXcmFeeResult, THopInfo, THopTransferInfo, THubKey, TMantaAsset, TModuleError, TNativeTokenAsset, TNodeConfig, TNodeConfigMap, TNodleAsset, TOriginFeeDetails, TOtherReserveAsset, TPolkadotXCMTransferOptions, TPolkadotXcmMethod, TProviderEntry, TRelayToParaDestination, TRelayToParaOptions, TRelayToParaOverrides, TReserveAsset, TScenario, TSelfReserveAsset, TSendBaseOptions, TSendBaseOptionsWithSenderAddress, TSendInternalOptions, TSendOptions, TSerializeEthTransferOptions, TSerializedApiCall, TSerializedEthTransfer, TSwapFeeEstimates, TTransferFeeEstimates, TTransferInfo, TTransferLocalOptions, TVerifyEdOnDestinationOptions, TVerifyEdOnDestinationOptionsBase, TWeight, TXTokensCurrencySelection, TXTokensMethod, TXTokensTransferOptions, TXTransferMethod, TXTransferTransferOptions, TXcmAsset, TXcmFeeBase, TXcmFeeChain, TXcmFeeDetail, TXcmFeeHopInfo, TXcmForeignAsset, TXcmPalletMethod, TXcmVersioned, TZeitgeistAsset, WithApi, WithRequiredSenderAddress };
|