@paraspell/sdk-core 8.6.1 → 8.7.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 +475 -212
- package/dist/index.d.ts +98 -15
- package/dist/index.mjs +474 -213
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -122,9 +122,6 @@ type TCurrencyCore = TCurrencySymbol | {
|
|
|
122
122
|
} | {
|
|
123
123
|
multilocation: TMultiLocationValue;
|
|
124
124
|
};
|
|
125
|
-
type TCurrencyCoreWithFee = WithAmount<TCurrencyCore> & {
|
|
126
|
-
isFeeAsset?: boolean;
|
|
127
|
-
};
|
|
128
125
|
type TMultiAssetWithFee = TMultiAsset & {
|
|
129
126
|
isFeeAsset?: boolean;
|
|
130
127
|
};
|
|
@@ -135,14 +132,14 @@ type TCurrencyInputWithAmount = WithAmount<TCurrencySymbol | {
|
|
|
135
132
|
} | {
|
|
136
133
|
multilocation: TMultiLocationValueWithOverride;
|
|
137
134
|
}> | {
|
|
138
|
-
multiasset:
|
|
135
|
+
multiasset: TMultiAsset[] | WithAmount<TCurrencyCore>[];
|
|
139
136
|
};
|
|
140
137
|
type TCurrencyInput = TCurrencySymbol | {
|
|
141
138
|
id: TCurrency;
|
|
142
139
|
} | {
|
|
143
140
|
multilocation: TMultiLocationValueWithOverride;
|
|
144
141
|
} | {
|
|
145
|
-
multiasset:
|
|
142
|
+
multiasset: TMultiAsset[] | WithAmount<TCurrencyCore>[];
|
|
146
143
|
};
|
|
147
144
|
type WithAmount<TBase> = TBase & {
|
|
148
145
|
amount: TAmount;
|
|
@@ -231,7 +228,7 @@ declare abstract class ParachainNode<TApi, TRes> {
|
|
|
231
228
|
transfer(options: TSendInternalOptions<TApi, TRes>): Promise<TRes>;
|
|
232
229
|
getRelayToParaOverrides(): TRelayToParaOverrides;
|
|
233
230
|
transferRelayToPara(options: TRelayToParaOptions<TApi, TRes>): TSerializedApiCall;
|
|
234
|
-
createCurrencySpec(amount: TAmount, scenario: TScenario, version: Version, _asset?: TAsset
|
|
231
|
+
createCurrencySpec(amount: TAmount, scenario: TScenario, version: Version, _asset?: TAsset): TXcmVersioned<TMultiAsset[]>;
|
|
235
232
|
createPolkadotXcmHeader(scenario: TScenario, version: Version, destination: TDestination, paraId?: number): TXcmVersioned<TMultiLocation>;
|
|
236
233
|
getNativeAssetSymbol(): string;
|
|
237
234
|
protected transferToEthereum<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
@@ -257,7 +254,27 @@ declare class AssetHubKusama<TApi, TRes> extends ParachainNode<TApi, TRes> imple
|
|
|
257
254
|
constructor();
|
|
258
255
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
259
256
|
getRelayToParaOverrides(): TRelayToParaOverrides;
|
|
260
|
-
createCurrencySpec(amount: string, scenario: TScenario, version: Version, asset?: TAsset
|
|
257
|
+
createCurrencySpec(amount: string, scenario: TScenario, version: Version, asset?: TAsset): {
|
|
258
|
+
V1: TMultiAsset[];
|
|
259
|
+
V2?: undefined;
|
|
260
|
+
V3?: undefined;
|
|
261
|
+
V4?: undefined;
|
|
262
|
+
} | {
|
|
263
|
+
V2: TMultiAsset[];
|
|
264
|
+
V1?: undefined;
|
|
265
|
+
V3?: undefined;
|
|
266
|
+
V4?: undefined;
|
|
267
|
+
} | {
|
|
268
|
+
V3: TMultiAsset[];
|
|
269
|
+
V1?: undefined;
|
|
270
|
+
V2?: undefined;
|
|
271
|
+
V4?: undefined;
|
|
272
|
+
} | {
|
|
273
|
+
V4: TMultiAsset[];
|
|
274
|
+
V1?: undefined;
|
|
275
|
+
V2?: undefined;
|
|
276
|
+
V3?: undefined;
|
|
277
|
+
};
|
|
261
278
|
}
|
|
262
279
|
|
|
263
280
|
declare class AssetHubPolkadot<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
@@ -268,9 +285,30 @@ declare class AssetHubPolkadot<TApi, TRes> extends ParachainNode<TApi, TRes> imp
|
|
|
268
285
|
handleBifrostEthTransfer: <TApi_1, TRes_1>(input: TPolkadotXCMTransferOptions<TApi_1, TRes_1>) => TRes_1;
|
|
269
286
|
patchInput<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): TPolkadotXCMTransferOptions<TApi, TRes>;
|
|
270
287
|
private getSection;
|
|
288
|
+
private handleExecuteTransfer;
|
|
271
289
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
272
290
|
getRelayToParaOverrides(): TRelayToParaOverrides;
|
|
273
|
-
createCurrencySpec(amount: TAmount, scenario: TScenario, version: Version, asset?: TAsset
|
|
291
|
+
createCurrencySpec(amount: TAmount, scenario: TScenario, version: Version, asset?: TAsset): {
|
|
292
|
+
V1: TMultiAsset[];
|
|
293
|
+
V2?: undefined;
|
|
294
|
+
V3?: undefined;
|
|
295
|
+
V4?: undefined;
|
|
296
|
+
} | {
|
|
297
|
+
V2: TMultiAsset[];
|
|
298
|
+
V1?: undefined;
|
|
299
|
+
V3?: undefined;
|
|
300
|
+
V4?: undefined;
|
|
301
|
+
} | {
|
|
302
|
+
V3: TMultiAsset[];
|
|
303
|
+
V1?: undefined;
|
|
304
|
+
V2?: undefined;
|
|
305
|
+
V4?: undefined;
|
|
306
|
+
} | {
|
|
307
|
+
V4: TMultiAsset[];
|
|
308
|
+
V1?: undefined;
|
|
309
|
+
V2?: undefined;
|
|
310
|
+
V3?: undefined;
|
|
311
|
+
};
|
|
274
312
|
}
|
|
275
313
|
|
|
276
314
|
declare class Astar<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer, IXTokensTransfer {
|
|
@@ -406,7 +444,27 @@ declare class Crab<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPol
|
|
|
406
444
|
constructor();
|
|
407
445
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
408
446
|
transferRelayToPara(): TSerializedApiCall;
|
|
409
|
-
createCurrencySpec(amount: string, scenario: TScenario, version: Version, _asset?: TAsset
|
|
447
|
+
createCurrencySpec(amount: string, scenario: TScenario, version: Version, _asset?: TAsset): {
|
|
448
|
+
V1: TMultiAsset[];
|
|
449
|
+
V2?: undefined;
|
|
450
|
+
V3?: undefined;
|
|
451
|
+
V4?: undefined;
|
|
452
|
+
} | {
|
|
453
|
+
V2: TMultiAsset[];
|
|
454
|
+
V1?: undefined;
|
|
455
|
+
V3?: undefined;
|
|
456
|
+
V4?: undefined;
|
|
457
|
+
} | {
|
|
458
|
+
V3: TMultiAsset[];
|
|
459
|
+
V1?: undefined;
|
|
460
|
+
V2?: undefined;
|
|
461
|
+
V4?: undefined;
|
|
462
|
+
} | {
|
|
463
|
+
V4: TMultiAsset[];
|
|
464
|
+
V1?: undefined;
|
|
465
|
+
V2?: undefined;
|
|
466
|
+
V3?: undefined;
|
|
467
|
+
};
|
|
410
468
|
}
|
|
411
469
|
|
|
412
470
|
declare class Crust<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXTokensTransfer {
|
|
@@ -489,14 +547,14 @@ declare class Manta<TApi, TRes> extends ParachainNode<TApi, TRes> implements IXT
|
|
|
489
547
|
|
|
490
548
|
declare class Moonbeam<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
491
549
|
constructor();
|
|
492
|
-
private
|
|
550
|
+
private getMultiLocation;
|
|
493
551
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
494
552
|
getRelayToParaOverrides(): TRelayToParaOverrides;
|
|
495
553
|
}
|
|
496
554
|
|
|
497
555
|
declare class Moonriver<TApi, TRes> extends ParachainNode<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
498
556
|
constructor();
|
|
499
|
-
private
|
|
557
|
+
private getMultiLocation;
|
|
500
558
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
501
559
|
getRelayToParaOverrides(): TRelayToParaOverrides;
|
|
502
560
|
}
|
|
@@ -696,11 +754,12 @@ type TPolkadotXCMTransferOptions<TApi, TRes> = {
|
|
|
696
754
|
addressSelection: TXcmVersioned<TMultiLocation>;
|
|
697
755
|
address: TAddress;
|
|
698
756
|
currencySelection: TXcmVersioned<TMultiAsset[]>;
|
|
757
|
+
overriddenAsset?: TMultiLocation | TMultiAssetWithFee[];
|
|
699
758
|
scenario: TScenario;
|
|
700
759
|
asset: WithAmount<TAsset>;
|
|
760
|
+
feeAsset?: TAsset;
|
|
701
761
|
destination: TDestination;
|
|
702
762
|
paraIdTo?: number;
|
|
703
|
-
overriddenAsset?: TMultiLocation | TMultiAssetWithFee[];
|
|
704
763
|
version?: Version;
|
|
705
764
|
senderAddress?: string;
|
|
706
765
|
pallet?: string;
|
|
@@ -715,7 +774,7 @@ type TXTokensTransferOptions<TApi, TRes> = {
|
|
|
715
774
|
origin: TNodePolkadotKusama;
|
|
716
775
|
destination: TDestination;
|
|
717
776
|
paraIdTo?: number;
|
|
718
|
-
overriddenAsset?: TMultiLocation |
|
|
777
|
+
overriddenAsset?: TMultiLocation | TMultiAssetWithFee[];
|
|
719
778
|
pallet?: string;
|
|
720
779
|
method?: string;
|
|
721
780
|
};
|
|
@@ -783,6 +842,10 @@ type TSendBaseOptions = {
|
|
|
783
842
|
* The currency to transfer. Either ID, symbol, multi-location, or multi-asset
|
|
784
843
|
*/
|
|
785
844
|
currency: TCurrencyInputWithAmount;
|
|
845
|
+
/**
|
|
846
|
+
* The optional fee asset. Either ID, symbol, or multi-location
|
|
847
|
+
*/
|
|
848
|
+
feeAsset?: TCurrencyInput;
|
|
786
849
|
/**
|
|
787
850
|
* The optional destination parachain ID
|
|
788
851
|
*/
|
|
@@ -804,9 +867,10 @@ type TSendBaseOptions = {
|
|
|
804
867
|
* Options for transferring from a parachain to another parachain or relay chain
|
|
805
868
|
*/
|
|
806
869
|
type TSendOptions<TApi, TRes> = WithApi<TSendBaseOptions, TApi, TRes>;
|
|
807
|
-
type TSendInternalOptions<TApi, TRes> = Omit<TSendBaseOptions, 'from' | 'currency'> & {
|
|
870
|
+
type TSendInternalOptions<TApi, TRes> = Omit<TSendBaseOptions, 'from' | 'currency' | 'feeAsset'> & {
|
|
808
871
|
api: IPolkadotApi<TApi, TRes>;
|
|
809
872
|
asset: WithAmount<TAsset>;
|
|
873
|
+
feeAsset?: TAsset;
|
|
810
874
|
overriddenAsset?: TMultiLocation | TMultiAssetWithFee[];
|
|
811
875
|
};
|
|
812
876
|
type TRelayToParaBaseOptions = {
|
|
@@ -864,6 +928,10 @@ type TXTransferSection = 'transfer';
|
|
|
864
928
|
type TXTokensSection = 'transfer' | 'transfer_multiasset' | 'transfer_multiassets';
|
|
865
929
|
type TPolkadotXcmSection = 'limited_teleport_assets' | 'limited_reserve_transfer_assets' | 'reserve_transfer_assets' | 'reserve_withdraw_assets' | 'transfer_assets';
|
|
866
930
|
type TXcmPalletSection = 'limited_teleport_assets' | 'reserve_transfer_assets' | 'limited_reserve_transfer_assets';
|
|
931
|
+
type TWeight = {
|
|
932
|
+
refTime: bigint;
|
|
933
|
+
proofSize: bigint;
|
|
934
|
+
};
|
|
867
935
|
|
|
868
936
|
type TMultiAsset = TMultiAssetV3 | TMultiAssetV4;
|
|
869
937
|
interface TMultiAssetV3 {
|
|
@@ -1125,6 +1193,7 @@ type TDryRunOptions<TApi, TRes> = WithApi<TDryRunBaseOptions<TRes>, TApi, TRes>;
|
|
|
1125
1193
|
type TDryRunResult = {
|
|
1126
1194
|
success: true;
|
|
1127
1195
|
fee: bigint;
|
|
1196
|
+
weight?: TWeight;
|
|
1128
1197
|
} | {
|
|
1129
1198
|
success: false;
|
|
1130
1199
|
failureReason: string;
|
|
@@ -1242,6 +1311,7 @@ interface IPolkadotApi<TApi, TRes> {
|
|
|
1242
1311
|
hexToUint8a(hex: string): Uint8Array;
|
|
1243
1312
|
stringToUint8a(str: string): Uint8Array;
|
|
1244
1313
|
calculateTransactionFee(tx: TRes, address: string): Promise<bigint>;
|
|
1314
|
+
quoteAhPrice(fromMl: TMultiLocation, toMl: TMultiLocation, amountIn: bigint, includeFee?: boolean): Promise<bigint | undefined>;
|
|
1245
1315
|
getBalanceNative(address: string): Promise<bigint>;
|
|
1246
1316
|
getBalanceNativeAcala(address: string, symbol: string): Promise<bigint>;
|
|
1247
1317
|
getBalanceForeignPolkadotXcm(address: string, id?: string): Promise<bigint>;
|
|
@@ -1395,6 +1465,15 @@ declare class GeneralBuilder<TApi, TRes, T extends Partial<TSendBaseOptions> = o
|
|
|
1395
1465
|
pallet: string;
|
|
1396
1466
|
method: string;
|
|
1397
1467
|
}>;
|
|
1468
|
+
/**
|
|
1469
|
+
* Optional fee asset for the transaction.
|
|
1470
|
+
*
|
|
1471
|
+
* @param currency - The currency to be used for the fee.
|
|
1472
|
+
* @returns An instance of the Builder
|
|
1473
|
+
*/
|
|
1474
|
+
feeAsset(currency: TCurrencyInput | undefined): GeneralBuilder<TApi, TRes, T & {
|
|
1475
|
+
feeAsset: TCurrencyInput | undefined;
|
|
1476
|
+
}>;
|
|
1398
1477
|
/**
|
|
1399
1478
|
* Adds the transfer transaction to the batch.
|
|
1400
1479
|
*
|
|
@@ -1727,6 +1806,8 @@ declare const send: <TApi, TRes>(options: TSendOptions<TApi, TRes>) => Promise<T
|
|
|
1727
1806
|
|
|
1728
1807
|
declare const transferRelayToPara: <TApi, TRes>(options: TRelayToParaOptions<TApi, TRes>) => Promise<TRes>;
|
|
1729
1808
|
|
|
1809
|
+
declare const isAssetEqual: (asset1: TAsset, asset2: TAsset) => boolean;
|
|
1810
|
+
|
|
1730
1811
|
declare const isForeignAsset: (asset: TAsset) => asset is TForeignAsset;
|
|
1731
1812
|
|
|
1732
1813
|
declare const isSymbolSpecifier: (currencySymbolValue: TCurrencySymbolValue) => currencySymbolValue is TSymbolSpecifier;
|
|
@@ -1759,6 +1840,8 @@ declare const getNode: <TApi, TRes, T extends keyof ReturnType<typeof nodes>>(no
|
|
|
1759
1840
|
|
|
1760
1841
|
declare const isOverrideMultiLocationSpecifier: (multiLocationSpecifier: TMultiLocationValueWithOverride) => multiLocationSpecifier is TOverrideMultiLocationSpecifier;
|
|
1761
1842
|
|
|
1843
|
+
declare const transformMultiLocation: (multiLocation: TMultiLocation) => TMultiLocation;
|
|
1844
|
+
|
|
1762
1845
|
declare const resolveParaId: (paraId: number | undefined, destination: TDestination) => number | undefined;
|
|
1763
1846
|
|
|
1764
1847
|
declare const validateAddress: (address: TAddress, node: TNodeWithRelayChains, isDestination?: boolean) => void;
|
|
@@ -1778,4 +1861,4 @@ declare const determineRelayChain: (node: TNodeWithRelayChains) => TRelaychain;
|
|
|
1778
1861
|
*/
|
|
1779
1862
|
declare const isRelayChain: (node: TNodeWithRelayChains) => node is "Polkadot" | "Kusama";
|
|
1780
1863
|
|
|
1781
|
-
export { AssetClaimBuilder, BatchMode, Builder, DuplicateAssetError, DuplicateAssetIdError, ETHEREUM_JUNCTION, ETH_CHAIN_ID, Foreign, ForeignAbstract, GeneralBuilder, type IPolkadotApi, type IPolkadotXCMTransfer, type IXTokensTransfer, type IXTransferTransfer, IncompatibleNodesError, InvalidAddressError, InvalidCurrencyError, NODES_WITH_RELAY_CHAINS, NODES_WITH_RELAY_CHAINS_DOT_KSM, NODE_NAMES, NODE_NAMES_DOT_KSM, Native, NoXCMSupportImplementedError, NodeNotSupportedError, type OneKey, Override, Parents, PolkadotXcmError, SUPPORTED_PALLETS, ScenarioNotSupportedError, type TAddress, type TAmount, type TApiOrUrl, type TAsset, type TAssetClaimOptions, type TAssetClaimOptionsBase, type TAssetJsonMap, type TBalanceResponse, type TBatchOptions, type TBifrostToken, type TCurrency, type TCurrencyCore, type
|
|
1864
|
+
export { AssetClaimBuilder, BatchMode, Builder, DuplicateAssetError, DuplicateAssetIdError, ETHEREUM_JUNCTION, ETH_CHAIN_ID, Foreign, ForeignAbstract, GeneralBuilder, type IPolkadotApi, type IPolkadotXCMTransfer, type IXTokensTransfer, type IXTransferTransfer, IncompatibleNodesError, InvalidAddressError, InvalidCurrencyError, NODES_WITH_RELAY_CHAINS, NODES_WITH_RELAY_CHAINS_DOT_KSM, NODE_NAMES, NODE_NAMES_DOT_KSM, Native, NoXCMSupportImplementedError, NodeNotSupportedError, type OneKey, Override, Parents, PolkadotXcmError, SUPPORTED_PALLETS, ScenarioNotSupportedError, type TAddress, type TAmount, type TApiOrUrl, type TAsset, type TAssetClaimOptions, type TAssetClaimOptionsBase, type TAssetJsonMap, type TBalanceResponse, type TBatchOptions, type TBifrostToken, type TCurrency, type TCurrencyCore, type TCurrencyInput, type TCurrencyInputWithAmount, type TCurrencySymbol, type TCurrencySymbolValue, type TDestWeight, type TDestination, type TDryRunBaseOptions, type TDryRunOptions, type TDryRunResult, type TEcosystemType, type TEdJsonMap, type TEvmBuilderOptions, type TEvmBuilderOptionsBase, type TEvmNodeFrom, type TForeignAsset, type TForeignAssetId, type TForeignOrNativeAsset, type TForeignOrTokenAsset, type TGetAssetBalanceOptions, type TGetAssetBalanceOptionsBase, type TGetBalanceForeignOptions, type TGetBalanceForeignOptionsBase, type TGetBalanceNativeOptions, type TGetBalanceNativeOptionsBase, type TGetMaxForeignTransferableAmountOptions, type TGetMaxForeignTransferableAmountOptionsBase, type TGetMaxNativeTransferableAmountOptions, type TGetMaxNativeTransferableAmountOptionsBase, type TGetOriginFeeDetailsOptions, type TGetOriginFeeDetailsOptionsBase, type TGetTransferInfoOptions, type TGetTransferInfoOptionsBase, type TGetTransferableAmountOptions, type TGetTransferableAmountOptionsBase, type TJunction, type TJunctionGeneralIndex, type TJunctionParachain, type TJunctionType, type TJunctions, type TMantaAsset, type TModuleError, type TMultiAsset, type TMultiAssetV3, type TMultiAssetV4, type TMultiAssetWithFee, type TMultiLocation, type TMultiLocationValue, type TMultiLocationValueWithOverride, type TNativeAsset, type TNativeTokenAsset, type TNode, type TNodeAssets, type TNodeConfig, type TNodeConfigMap, type TNodeDotKsmWithRelayChains, type TNodePolkadotKusama, type TNodeWithRelayChains, type TNodleAsset, type TOriginFeeDetails, type TOtherReserveAsset, type TOverrideMultiLocationSpecifier, type TPallet, type TPalletDetails, type TPalletJsonMap, type TPalletMap, type TPolkadotXCMTransferOptions, type TPolkadotXcmSection, type TProviderEntry, type TRelayChainSymbol, type TRelayToParaDestination, type TRelayToParaOptions, type TRelayToParaOverrides, type TRelaychain, type TReserveAsset, type TScenario, type TSelfReserveAsset, type TSendBaseOptions, type TSendInternalOptions, type TSendOptions, type TSerializeEthTransferOptions, type TSerializedApiCall, type TSerializedEthTransfer, type TSymbolSpecifier, type TTransferInfo, type TVerifyEdOnDestinationOptions, type TVerifyEdOnDestinationOptionsBase, type TVersionClaimAssets, type TWeight, type TXTokensCurrencySelection, type TXTokensSection, type TXTokensTransferOptions, type TXTransferSection, type TXTransferTransferOptions, type TXcmAsset, type TXcmForeignAsset, type TXcmPalletSection, type TXcmVersioned, type TZeitgeistAsset, Version, type WithAmount, type WithApi, XTokensError, claimAssets, computeFeeFromDryRun, computeFeeFromDryRunPjs, createApiInstanceForNode, createX1Payload, deepEqual, determineRelayChain, findAssetById, findAssetByMultiLocation, findAssetBySymbol, findBestMatches, generateAddressMultiLocationV4, generateAddressPayload, getAllAssetsSymbols, getAssetBalance, getAssetBalanceInternal, getAssetBySymbolOrId, getAssetDecimals, getAssetId, getAssetMultiLocation, getAssets, getAssetsObject, getBalanceForeign, getBalanceForeignInternal, getBalanceNative, getBalanceNativeInternal, getDefaultPallet, getDryRun, getExistentialDeposit, getFees, getMaxForeignTransferableAmount, getMaxNativeTransferableAmount, getNativeAssetSymbol, getNativeAssets, getNode, getNodeConfig, getNodeProviders, getOriginFeeDetails, getOriginFeeDetailsInternal, getOtherAssets, getParaEthTransferFees, getParaId, getRelayChainSymbol, getSupportedAssets, getSupportedPallets, getSupportedPalletsDetails, getTNode, getTransferInfo, getTransferableAmount, hasDryRunSupport, hasSupportForAsset, isAssetEqual, isEthersContract, isEthersSigner, isForeignAsset, isNodeEvm, isOverrideMultiLocationSpecifier, isRelayChain, isSymbolSpecifier, normalizeSymbol, resolveModuleError, resolveParaId, send, transferMoonbeamEvm, transferMoonbeamToEth, transferRelayToPara, transformMultiLocation, validateAddress, verifyEdOnDestination };
|