@paraspell/sdk-core 11.6.1 → 11.7.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.cjs +498 -354
- package/dist/index.d.ts +50 -24
- package/dist/index.mjs +495 -356
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -192,6 +192,10 @@ type TDestWeight = {
|
|
|
192
192
|
ref_time: bigint;
|
|
193
193
|
proof_size: bigint;
|
|
194
194
|
};
|
|
195
|
+
type TTxPair<TRes> = {
|
|
196
|
+
tx: TRes;
|
|
197
|
+
txBypass: TRes;
|
|
198
|
+
};
|
|
195
199
|
type TXTransferMethod = 'transfer';
|
|
196
200
|
type TXTokensMethod = 'transfer' | 'transfer_multiasset' | 'transfer_multiassets';
|
|
197
201
|
type TPolkadotXcmMethod = 'limited_teleport_assets' | 'limited_reserve_transfer_assets' | 'reserve_withdraw_assets' | 'transfer_assets';
|
|
@@ -443,16 +447,18 @@ declare class GeneralBuilder<TApi, TRes, T extends Partial<TSendBaseOptions> = o
|
|
|
443
447
|
* @returns A Extrinsic representing the batched transactions.
|
|
444
448
|
*/
|
|
445
449
|
buildBatch(this: GeneralBuilder<TApi, TRes, TSendBaseOptions>, options?: TBatchOptions): Promise<TRes>;
|
|
450
|
+
protected buildInternal(this: GeneralBuilder<TApi, TRes, TSendBaseOptions>): Promise<TRes>;
|
|
446
451
|
/**
|
|
447
452
|
* Builds and returns the transfer extrinsic.
|
|
448
453
|
*
|
|
449
454
|
* @returns A Promise that resolves to the transfer extrinsic.
|
|
450
455
|
*/
|
|
451
456
|
build(this: GeneralBuilder<TApi, TRes, TSendBaseOptions>): Promise<TRes>;
|
|
452
|
-
|
|
453
|
-
|
|
457
|
+
private buildCommon;
|
|
458
|
+
private maybePerformXcmFormatCheck;
|
|
454
459
|
dryRun(this: GeneralBuilder<TApi, TRes, TSendBaseOptionsWithSenderAddress>): Promise<TDryRunResult>;
|
|
455
460
|
dryRunPreview(this: GeneralBuilder<TApi, TRes, TSendBaseOptionsWithSenderAddress>, options?: TDryRunPreviewOptions): Promise<TDryRunResult>;
|
|
461
|
+
private createTxs;
|
|
456
462
|
/**
|
|
457
463
|
* Returns the XCM fee for the transfer using dryRun or paymentInfo function.
|
|
458
464
|
*
|
|
@@ -636,15 +642,15 @@ type TGetTransferableAmountOptionsBase<TRes> = {
|
|
|
636
642
|
*/
|
|
637
643
|
currency: WithAmount<TCurrencyCore>;
|
|
638
644
|
/**
|
|
639
|
-
* The
|
|
645
|
+
* The transactions
|
|
640
646
|
*/
|
|
641
|
-
|
|
647
|
+
txs: TTxPair<TRes>;
|
|
642
648
|
feeAsset?: TCurrencyInput;
|
|
643
649
|
};
|
|
644
650
|
type TGetTransferableAmountOptions<TApi, TRes> = WithApi<TGetTransferableAmountOptionsBase<TRes>, TApi, TRes>;
|
|
645
651
|
type TGetMinTransferableAmountOptions<TApi, TRes> = WithApi<TGetTransferableAmountOptionsBase<TRes> & {
|
|
646
652
|
address: string;
|
|
647
|
-
builder: GeneralBuilder<TApi, TRes,
|
|
653
|
+
builder: GeneralBuilder<TApi, TRes, TSendBaseOptionsWithSenderAddress>;
|
|
648
654
|
}, TApi, TRes>;
|
|
649
655
|
type TVerifyEdOnDestinationOptionsBase<TRes> = {
|
|
650
656
|
/**
|
|
@@ -668,9 +674,9 @@ type TVerifyEdOnDestinationOptionsBase<TRes> = {
|
|
|
668
674
|
*/
|
|
669
675
|
currency: WithAmount<TCurrencyCore>;
|
|
670
676
|
/**
|
|
671
|
-
* The
|
|
677
|
+
* The transactions
|
|
672
678
|
*/
|
|
673
|
-
|
|
679
|
+
txs: TTxPair<TRes>;
|
|
674
680
|
feeAsset?: TCurrencyInput;
|
|
675
681
|
};
|
|
676
682
|
type TVerifyEdOnDestinationOptions<TApi, TRes> = WithApi<TVerifyEdOnDestinationOptionsBase<TRes>, TApi, TRes>;
|
|
@@ -748,7 +754,9 @@ type TBuilderConfig<TApi> = {
|
|
|
748
754
|
apiOverrides?: Partial<Record<TChain, TApi>>;
|
|
749
755
|
development?: boolean;
|
|
750
756
|
abstractDecimals?: boolean;
|
|
757
|
+
xcmFormatCheck?: boolean;
|
|
751
758
|
};
|
|
759
|
+
type TCreateTxsOptions<TApi, TRes> = Pick<TSendOptions<TApi, TRes>, 'api' | 'from' | 'to' | 'currency'>;
|
|
752
760
|
|
|
753
761
|
type TProviderEntry = {
|
|
754
762
|
name: string;
|
|
@@ -1030,19 +1038,20 @@ declare class ChainNotSupportedError extends Error {
|
|
|
1030
1038
|
constructor(message?: string);
|
|
1031
1039
|
}
|
|
1032
1040
|
|
|
1041
|
+
type TDryRunType = 'origin' | 'destination' | 'assetHub' | 'bridgeHub' | TChain;
|
|
1033
1042
|
/**
|
|
1034
1043
|
* Error thrown when the Dry Run fails.
|
|
1035
1044
|
*/
|
|
1036
1045
|
declare class DryRunFailedError extends Error {
|
|
1037
1046
|
readonly reason: string;
|
|
1038
|
-
readonly dryRunType?:
|
|
1047
|
+
readonly dryRunType?: TDryRunType;
|
|
1039
1048
|
/**
|
|
1040
1049
|
* Constructs a new DryRunFailedError.
|
|
1041
1050
|
*
|
|
1042
1051
|
* @param reason - The reason why the dry run failed.
|
|
1043
1052
|
* @param dryRunType - Optional. Specifies if the error is related to the 'origin' or 'destination' dry run.
|
|
1044
1053
|
*/
|
|
1045
|
-
constructor(reason: string, dryRunType?:
|
|
1054
|
+
constructor(reason: string, dryRunType?: TDryRunType);
|
|
1046
1055
|
}
|
|
1047
1056
|
|
|
1048
1057
|
/**
|
|
@@ -1137,9 +1146,9 @@ declare class UnableToComputeError extends Error {
|
|
|
1137
1146
|
|
|
1138
1147
|
type TGetXcmFeeBaseOptions<TRes, TDisableFallback extends boolean = boolean> = {
|
|
1139
1148
|
/**
|
|
1140
|
-
* The
|
|
1149
|
+
* The transactions
|
|
1141
1150
|
*/
|
|
1142
|
-
|
|
1151
|
+
txs: TTxPair<TRes>;
|
|
1143
1152
|
/**
|
|
1144
1153
|
* The origin chain
|
|
1145
1154
|
*/
|
|
@@ -1159,24 +1168,31 @@ type TGetXcmFeeBaseOptions<TRes, TDisableFallback extends boolean = boolean> = {
|
|
|
1159
1168
|
swapConfig?: TSwapConfig;
|
|
1160
1169
|
};
|
|
1161
1170
|
type TGetXcmFeeOptions<TApi, TRes, TDisableFallback extends boolean = boolean> = WithApi<TGetXcmFeeBaseOptions<TRes, TDisableFallback>, TApi, TRes>;
|
|
1162
|
-
type
|
|
1163
|
-
|
|
1171
|
+
type TGetXcmFeeInternalOptions<TApi, TRes, TDisableFallback extends boolean = boolean> = Omit<TGetXcmFeeOptions<TApi, TRes, TDisableFallback>, 'txs'> & {
|
|
1172
|
+
tx: TRes;
|
|
1173
|
+
useRootOrigin: boolean;
|
|
1174
|
+
};
|
|
1175
|
+
type TGetXcmFeeEstimateOptions<TApi, TRes> = Omit<TGetXcmFeeInternalOptions<TApi, TRes>, 'disableFallback' | 'useRootOrigin'>;
|
|
1176
|
+
type TGetOriginXcmFeeEstimateOptions<TApi, TRes> = Omit<TGetXcmFeeInternalOptions<TApi, TRes>, 'disableFallback' | 'address' | 'useRootOrigin'>;
|
|
1164
1177
|
type TGetXcmFeeBuilderOptions = {
|
|
1165
1178
|
disableFallback: boolean;
|
|
1166
1179
|
};
|
|
1167
1180
|
type TGetOriginXcmFeeBaseOptions<TRes> = {
|
|
1168
|
-
|
|
1181
|
+
txs: {
|
|
1182
|
+
tx: TRes;
|
|
1183
|
+
txBypass: TRes;
|
|
1184
|
+
};
|
|
1169
1185
|
origin: TSubstrateChain;
|
|
1170
1186
|
destination: TChain;
|
|
1171
1187
|
senderAddress: string;
|
|
1172
|
-
currency:
|
|
1188
|
+
currency: WithAmount<TCurrencyCore>;
|
|
1173
1189
|
feeAsset?: TCurrencyInput;
|
|
1174
1190
|
disableFallback: boolean;
|
|
1175
1191
|
useRootOrigin?: boolean;
|
|
1176
1192
|
};
|
|
1177
1193
|
type TGetOriginXcmFeeOptions<TApi, TRes> = WithApi<TGetOriginXcmFeeBaseOptions<TRes>, TApi, TRes>;
|
|
1178
|
-
type
|
|
1179
|
-
|
|
1194
|
+
type TGetOriginXcmFeeInternalOptions<TApi, TRes> = Omit<TGetOriginXcmFeeOptions<TApi, TRes>, 'txs'> & {
|
|
1195
|
+
tx: TRes;
|
|
1180
1196
|
};
|
|
1181
1197
|
type TSwapConfig = {
|
|
1182
1198
|
currencyTo: TCurrencyCore;
|
|
@@ -1368,7 +1384,7 @@ type TOriginFeeDetails = {
|
|
|
1368
1384
|
xcmFee: bigint;
|
|
1369
1385
|
};
|
|
1370
1386
|
type TGetTransferInfoOptionsBase<TRes> = {
|
|
1371
|
-
|
|
1387
|
+
txs: TTxPair<TRes>;
|
|
1372
1388
|
origin: TSubstrateChain;
|
|
1373
1389
|
destination: TChain;
|
|
1374
1390
|
senderAddress: string;
|
|
@@ -2124,7 +2140,7 @@ declare const getOriginXcmFee: <TApi, TRes>(options: TGetOriginXcmFeeOptions<TAp
|
|
|
2124
2140
|
|
|
2125
2141
|
declare const getOriginXcmFeeEstimate: <TApi, TRes>({ api, tx, origin, destination, currency, senderAddress, feeAsset }: TGetOriginXcmFeeEstimateOptions<TApi, TRes>) => Promise<TGetXcmFeeEstimateDetail>;
|
|
2126
2142
|
|
|
2127
|
-
declare const getOriginXcmFeeInternal: <TApi, TRes>({ api, tx, origin, destination, senderAddress, disableFallback, feeAsset, currency, useRootOrigin }:
|
|
2143
|
+
declare const getOriginXcmFeeInternal: <TApi, TRes>({ api, tx, origin, destination, senderAddress, disableFallback, feeAsset, currency, useRootOrigin }: TGetOriginXcmFeeInternalOptions<TApi, TRes>) => Promise<TXcmFeeDetail & {
|
|
2128
2144
|
forwardedXcms?: any;
|
|
2129
2145
|
destParaId?: number;
|
|
2130
2146
|
}>;
|
|
@@ -2133,16 +2149,18 @@ declare const getXcmFee: <TApi, TRes, TDisableFallback extends boolean>(options:
|
|
|
2133
2149
|
|
|
2134
2150
|
declare const getXcmFeeEstimate: <TApi, TRes>(options: TGetXcmFeeEstimateOptions<TApi, TRes>) => Promise<TGetXcmFeeEstimateResult>;
|
|
2135
2151
|
|
|
2152
|
+
declare const getXcmFeeInternal: <TApi, TRes, TDisableFallback extends boolean>({ api, tx, origin, destination, senderAddress, address, currency, feeAsset, disableFallback, swapConfig, useRootOrigin }: TGetXcmFeeInternalOptions<TApi, TRes, TDisableFallback>) => Promise<TGetXcmFeeResult<TDisableFallback>>;
|
|
2153
|
+
|
|
2136
2154
|
declare const getBridgeStatus: <TApi, TRes>(api: IPolkadotApi<TApi, TRes>) => Promise<TBridgeStatus>;
|
|
2137
2155
|
|
|
2138
2156
|
declare const send: <TApi, TRes>(options: TSendOptions<TApi, TRes>) => Promise<TRes>;
|
|
2139
2157
|
|
|
2140
|
-
declare const getTransferInfo: <TApi, TRes>({ api,
|
|
2158
|
+
declare const getTransferInfo: <TApi, TRes>({ api, txs, origin, destination, senderAddress, ahAddress, address, currency, feeAsset }: TGetTransferInfoOptions<TApi, TRes>) => Promise<TTransferInfo>;
|
|
2141
2159
|
|
|
2142
|
-
declare const getMinTransferableAmountInternal: <TApi, TRes>({ api, origin, senderAddress, address, origin: chain, destination, currency,
|
|
2160
|
+
declare const getMinTransferableAmountInternal: <TApi, TRes>({ api, origin, senderAddress, address, origin: chain, destination, currency, feeAsset, txs, builder }: TGetMinTransferableAmountOptions<TApi, TRes>) => Promise<bigint>;
|
|
2143
2161
|
declare const getMinTransferableAmount: <TApi, TRes>(options: TGetMinTransferableAmountOptions<TApi, TRes>) => Promise<bigint>;
|
|
2144
2162
|
|
|
2145
|
-
declare const getTransferableAmountInternal: <TApi, TRes>({ api, senderAddress, origin: chain, destination, currency,
|
|
2163
|
+
declare const getTransferableAmountInternal: <TApi, TRes>({ api, senderAddress, origin: chain, destination, currency, txs, feeAsset }: TGetTransferableAmountOptions<TApi, TRes>) => Promise<bigint>;
|
|
2146
2164
|
declare const getTransferableAmount: <TApi, TRes>(options: TGetTransferableAmountOptions<TApi, TRes>) => Promise<bigint>;
|
|
2147
2165
|
|
|
2148
2166
|
declare const transferRelayToPara: <TApi, TRes>(options: TRelayToParaOptions<TApi, TRes>) => Promise<TRes>;
|
|
@@ -2158,6 +2176,7 @@ declare const addXcmVersionHeader: <T, V extends Version>(obj: T, version: V) =>
|
|
|
2158
2176
|
|
|
2159
2177
|
declare const assertToIsString: (to: TDestination, overrideMsg?: string) => asserts to is Exclude<TDestination, TLocation>;
|
|
2160
2178
|
declare const assertAddressIsString: (address: TAddress) => asserts address is Exclude<TAddress, TLocation>;
|
|
2179
|
+
declare const assertSenderAddress: (address: string | undefined) => asserts address is string;
|
|
2161
2180
|
declare const assertHasLocation: (asset: TAssetInfo) => asserts asset is TAssetWithLocation;
|
|
2162
2181
|
declare const assertHasId: (asset: TAssetInfo) => asserts asset is TForeignAssetWithId;
|
|
2163
2182
|
declare const assertIsForeign: (asset: TAssetInfo) => asserts asset is TForeignAssetInfo;
|
|
@@ -2170,6 +2189,13 @@ declare const maybeOverrideAsset: (version: Version, amount: bigint, asset: TAss
|
|
|
2170
2189
|
|
|
2171
2190
|
declare const sortAssets: (assets: TAsset[]) => TAsset[];
|
|
2172
2191
|
|
|
2192
|
+
declare const computeOverridenAmount: <TApi, TRes>(options: TCreateTxsOptions<TApi, TRes>) => bigint | "800";
|
|
2193
|
+
declare const overrideTxAmount: <TApi, TRes>(options: TCreateTxsOptions<TApi, TRes>, builder: GeneralBuilder<TApi, TRes, TSendBaseOptionsWithSenderAddress>) => Promise<TRes>;
|
|
2194
|
+
declare const createTxs: <TApi, TRes>(options: TCreateTxsOptions<TApi, TRes>, builder: GeneralBuilder<TApi, TRes, TSendBaseOptionsWithSenderAddress>) => Promise<{
|
|
2195
|
+
tx: Awaited<TRes>;
|
|
2196
|
+
txBypass: Awaited<TRes>;
|
|
2197
|
+
}>;
|
|
2198
|
+
|
|
2173
2199
|
declare const isConfig: <TApi>(value: any) => value is TBuilderConfig<TApi>;
|
|
2174
2200
|
|
|
2175
2201
|
declare const getChainVersion: <TApi, TRes>(chain: TChain) => Version;
|
|
@@ -2257,5 +2283,5 @@ declare const handleToAhTeleport: <TApi, TRes>(origin: TParachain, input: TPolka
|
|
|
2257
2283
|
|
|
2258
2284
|
declare const validateAddress: (address: TAddress, chain: TChain, isDestination?: boolean) => void;
|
|
2259
2285
|
|
|
2260
|
-
export { AmountTooLowError, AssetClaimBuilder, AssetsPallet, BatchMode, BridgeHaltedError, Builder, ChainNotSupportedError, DRY_RUN_CLIENT_TIMEOUT_MS, DryRunFailedError, ETHEREUM_JUNCTION, ETH_CHAIN_ID, GeneralBuilder, IncompatibleChainsError, InvalidAddressError, InvalidParameterError, MissingChainApiError, NoXCMSupportImplementedError, PolkadotXcmError, ScenarioNotSupportedError, TX_CLIENT_TIMEOUT_MS, TransferToAhNotSupported, UnableToComputeError, XTokensError, abstractDecimals, addEthereumBridgeFees, addXcmVersionHeader, applyDecimalAbstraction, assertAddressIsString, assertHasId, assertHasLocation, assertIsForeign, assertToIsString, blake2b256, blake2b512, calcPreviewMintAmount, claimAssets, computeFeeFromDryRun, computeFeeFromDryRunPjs, convertSs58, createAsset, createAssetsFilter, createBaseExecuteXcm, createBeneficiaryLocXTokens, createBeneficiaryLocation, createChainClient, createDirectExecuteXcm, createExecuteCall, createExecuteExchangeXcm, createTypeAndThenCall, createVersionedAssets, createX1Payload, deriveAccountId, dryRun, dryRunInternal, dryRunOrigin, encodeSs58, getAssetBalance, getAssetBalanceInternal, getAssetReserveChain, getBalanceForeign, getBalanceForeignInternal, getBalanceNative, getBalanceNativeInternal, getBridgeStatus, getChain, getChainConfig, getChainLocation, getChainProviders, getChainVersion, getCurrencySelection, getMinTransferableAmount, getMinTransferableAmountInternal, getOriginFeeDetails, getOriginFeeDetailsInternal, getOriginXcmFee, getOriginXcmFeeEstimate, getOriginXcmFeeInternal, getParaEthTransferFees, getParaId, getRelayChainOf, getTChain, getTransferInfo, getTransferableAmount, getTransferableAmountInternal, getXcmFee, getXcmFeeEstimate, handleExecuteTransfer, handleSwapExecuteTransfer, handleToAhTeleport, isConfig, localizeLocation, maybeOverrideAsset, maybeOverrideAssets, padFee, padFeeBy, resolveDestChain, resolveModuleError, resolveParaId, reverseTransformLocation, send, sortAssets, transferMoonbeamEvm, transferMoonbeamToEth, transferRelayToPara, traverseXcmHops, validateAddress, verifyEdOnDestination, wrapTxBypass };
|
|
2261
|
-
export type { BuildHopInfoOptions, HopProcessParams, HopTraversalConfig, HopTraversalResult, IPolkadotApi, IPolkadotXCMTransfer, IXTokensTransfer, IXTransferTransfer, OneKey, TAddress, TApiOrUrl, TAssetClaimInternalOptions, TAssetClaimOptions, TAssetClaimOptionsBase,
|
|
2286
|
+
export { AmountTooLowError, AssetClaimBuilder, AssetsPallet, BatchMode, BridgeHaltedError, Builder, ChainNotSupportedError, DRY_RUN_CLIENT_TIMEOUT_MS, DryRunFailedError, ETHEREUM_JUNCTION, ETH_CHAIN_ID, GeneralBuilder, IncompatibleChainsError, InvalidAddressError, InvalidParameterError, MissingChainApiError, NoXCMSupportImplementedError, PolkadotXcmError, ScenarioNotSupportedError, TX_CLIENT_TIMEOUT_MS, TransferToAhNotSupported, UnableToComputeError, XTokensError, abstractDecimals, addEthereumBridgeFees, addXcmVersionHeader, applyDecimalAbstraction, assertAddressIsString, assertHasId, assertHasLocation, assertIsForeign, assertSenderAddress, assertToIsString, blake2b256, blake2b512, calcPreviewMintAmount, claimAssets, computeFeeFromDryRun, computeFeeFromDryRunPjs, computeOverridenAmount, convertSs58, createAsset, createAssetsFilter, createBaseExecuteXcm, createBeneficiaryLocXTokens, createBeneficiaryLocation, createChainClient, createDirectExecuteXcm, createExecuteCall, createExecuteExchangeXcm, createTxs, createTypeAndThenCall, createVersionedAssets, createX1Payload, deriveAccountId, dryRun, dryRunInternal, dryRunOrigin, encodeSs58, getAssetBalance, getAssetBalanceInternal, getAssetReserveChain, getBalanceForeign, getBalanceForeignInternal, getBalanceNative, getBalanceNativeInternal, getBridgeStatus, getChain, getChainConfig, getChainLocation, getChainProviders, getChainVersion, getCurrencySelection, getMinTransferableAmount, getMinTransferableAmountInternal, getOriginFeeDetails, getOriginFeeDetailsInternal, getOriginXcmFee, getOriginXcmFeeEstimate, getOriginXcmFeeInternal, getParaEthTransferFees, getParaId, getRelayChainOf, getTChain, getTransferInfo, getTransferableAmount, getTransferableAmountInternal, getXcmFee, getXcmFeeEstimate, getXcmFeeInternal, handleExecuteTransfer, handleSwapExecuteTransfer, handleToAhTeleport, isConfig, localizeLocation, maybeOverrideAsset, maybeOverrideAssets, overrideTxAmount, padFee, padFeeBy, resolveDestChain, resolveModuleError, resolveParaId, reverseTransformLocation, send, sortAssets, transferMoonbeamEvm, transferMoonbeamToEth, transferRelayToPara, traverseXcmHops, validateAddress, verifyEdOnDestination, wrapTxBypass };
|
|
2287
|
+
export type { BuildHopInfoOptions, HopProcessParams, HopTraversalConfig, HopTraversalResult, IPolkadotApi, IPolkadotXCMTransfer, IXTokensTransfer, IXTransferTransfer, OneKey, TAddress, TApiOrUrl, TAssetClaimInternalOptions, TAssetClaimOptions, TAssetClaimOptionsBase, TBatchOptions, TBifrostToken, TBridgeStatus, TBuildDestInfoOptions, TBuilderConfig, TBuilderOptions, TBypassOptions, TChainConfig, TChainConfigMap, TChainWithApi, TConditionalXcmFeeDetail, TConditionalXcmFeeHopInfo, TCreateBaseSwapXcmOptions, TCreateBaseTransferXcmOptions, TCreateBeneficiaryOptions, TCreateBeneficiaryXTokensOptions, TCreateSwapXcmInternalOptions, TCreateSwapXcmOptions, TCreateTransferXcmOptions, TCreateTxsOptions, TDestWeight, TDestXcmFeeDetail, TDestination, TDryRunBaseOptions, TDryRunBypassOptions, TDryRunCallBaseOptions, TDryRunCallOptions, TDryRunChain, TDryRunChainFailure, TDryRunChainResult, TDryRunChainSuccess, TDryRunOptions, TDryRunPreviewOptions, TDryRunResBase, TDryRunResult, TDryRunXcmBaseOptions, TDryRunXcmOptions, TEvmBuilderOptions, TEvmBuilderOptionsBase, TEvmChainFrom, TFeeType, TForeignAssetId, TForeignOrNativeAsset, TForeignOrTokenAsset, TGetAssetBalanceOptions, TGetAssetBalanceOptionsBase, TGetBalanceForeignByAssetOptions, TGetBalanceForeignOptions, TGetBalanceForeignOptionsBase, TGetBalanceNativeOptions, TGetBalanceNativeOptionsBase, TGetFeeForDestChainBaseOptions, TGetFeeForDestChainOptions, TGetMinTransferableAmountOptions, TGetOriginFeeDetailsOptions, TGetOriginFeeDetailsOptionsBase, TGetOriginXcmFeeBaseOptions, TGetOriginXcmFeeEstimateOptions, TGetOriginXcmFeeInternalOptions, TGetOriginXcmFeeOptions, TGetReverseTxFeeOptions, TGetTransferInfoOptions, TGetTransferInfoOptionsBase, TGetTransferableAmountOptions, TGetTransferableAmountOptionsBase, TGetXcmFeeBaseOptions, TGetXcmFeeBuilderOptions, TGetXcmFeeEstimateDetail, TGetXcmFeeEstimateOptions, TGetXcmFeeEstimateResult, TGetXcmFeeInternalOptions, TGetXcmFeeOptions, TGetXcmFeeResult, THopInfo, THopTransferInfo, THubKey, TMantaAsset, TModuleError, TNativeTokenAsset, TNodleAsset, TOriginFeeDetails, TOtherReserveAsset, TPolkadotXCMTransferOptions, TPolkadotXcmMethod, TProviderEntry, TRelayToParaDestination, TRelayToParaOptions, TRelayToParaOverrides, TReserveAsset, TScenario, TSelfReserveAsset, TSendBaseOptions, TSendBaseOptionsWithSenderAddress, TSendInternalOptions, TSendOptions, TSerializeEthTransferOptions, TSerializedApiCall, TSerializedEthTransfer, TSwapConfig, TSwapFeeEstimates, TTransferFeeEstimates, TTransferInfo, TTransferLocalOptions, TTxPair, TTypeAndThenCallContext, TTypeAndThenFees, TVerifyEdOnDestinationOptions, TVerifyEdOnDestinationOptionsBase, TWeight, TXTokensCurrencySelection, TXTokensMethod, TXTokensTransferOptions, TXTransferMethod, TXTransferTransferOptions, TXcmAsset, TXcmFeeBase, TXcmFeeChain, TXcmFeeDetail, TXcmFeeDetailError, TXcmFeeDetailSuccess, TXcmFeeDetailWithFallback, TXcmFeeHopInfo, TXcmFeeHopResult, TXcmForeignAsset, TXcmPalletMethod, TXcmVersioned, TZeitgeistAsset, WithApi, WithRequiredSenderAddress };
|