@paraspell/sdk-core 11.8.4 → 11.8.6
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 +690 -318
- package/dist/index.d.ts +40 -8
- package/dist/index.mjs +692 -321
- package/package.json +11 -11
package/dist/index.d.ts
CHANGED
|
@@ -150,6 +150,10 @@ type TRelayToParaBaseOptions = {
|
|
|
150
150
|
* The destination address. A SS58 or H160 format.
|
|
151
151
|
*/
|
|
152
152
|
address: TAddress;
|
|
153
|
+
/**
|
|
154
|
+
* The sender address. A SS58 or H160 format.
|
|
155
|
+
*/
|
|
156
|
+
senderAddress?: string;
|
|
153
157
|
/**
|
|
154
158
|
* The optional destination parachain ID
|
|
155
159
|
*/
|
|
@@ -1434,7 +1438,7 @@ interface IPolkadotApi<TApi, TRes> {
|
|
|
1434
1438
|
getEvmStorage(contract: string, slot: string): Promise<string>;
|
|
1435
1439
|
getBalanceNative(address: string): Promise<bigint>;
|
|
1436
1440
|
getBalanceNativeAcala(address: string, symbol: string): Promise<bigint>;
|
|
1437
|
-
getBalanceForeignPolkadotXcm(address: string,
|
|
1441
|
+
getBalanceForeignPolkadotXcm(chain: TSubstrateChain, address: string, asset: TAssetInfo): Promise<bigint>;
|
|
1438
1442
|
getMythosForeignBalance(address: string): Promise<bigint>;
|
|
1439
1443
|
getBalanceForeignAssetsPallet(address: string, location: TLocation): Promise<bigint>;
|
|
1440
1444
|
getForeignAssetsByIdBalance(address: string, assetId: string): Promise<bigint>;
|
|
@@ -1451,6 +1455,10 @@ interface IPolkadotApi<TApi, TRes> {
|
|
|
1451
1455
|
setDisconnectAllowed(allowed: boolean): void;
|
|
1452
1456
|
getDisconnectAllowed(): boolean;
|
|
1453
1457
|
disconnect(force?: boolean): Promise<void>;
|
|
1458
|
+
/**
|
|
1459
|
+
* Convert a location to a chain account address using the runtime LocationToAccount API, if available.
|
|
1460
|
+
*/
|
|
1461
|
+
convertLocationToAccount(location: TLocation): Promise<string | undefined>;
|
|
1454
1462
|
}
|
|
1455
1463
|
|
|
1456
1464
|
declare const blake2b256: (msg: Uint8Array) => Uint8Array<ArrayBufferLike>;
|
|
@@ -1494,7 +1502,7 @@ declare abstract class Parachain<TApi, TRes> {
|
|
|
1494
1502
|
throwIfCantReceive(destChain: TChain | undefined): void;
|
|
1495
1503
|
throwIfTempDisabled(options: TSendInternalOptions<TApi, TRes>, destChain?: TChain): void;
|
|
1496
1504
|
isSendingTempDisabled(_options: TSendInternalOptions<TApi, TRes>): boolean;
|
|
1497
|
-
isReceivingTempDisabled(
|
|
1505
|
+
isReceivingTempDisabled(_scenario: TScenario): boolean;
|
|
1498
1506
|
canReceiveFrom(_origin: TChain): boolean;
|
|
1499
1507
|
shouldUseNativeAssetTeleport({ assetInfo: asset, to }: TSendInternalOptions<TApi, TRes>): boolean;
|
|
1500
1508
|
getRelayToParaOverrides(): TRelayToParaOverrides;
|
|
@@ -1688,6 +1696,8 @@ declare class CollectivesWestend<TApi, TRes> extends Collectives<TApi, TRes> {
|
|
|
1688
1696
|
declare class ComposableFinance<TApi, TRes> extends Parachain<TApi, TRes> implements IXTokensTransfer {
|
|
1689
1697
|
constructor();
|
|
1690
1698
|
transferXTokens<TApi, TRes>(input: TXTokensTransferOptions<TApi, TRes>): TRes;
|
|
1699
|
+
isSendingTempDisabled(_options: TSendInternalOptions<TApi, TRes>): boolean;
|
|
1700
|
+
isReceivingTempDisabled(_scenario: TScenario): boolean;
|
|
1691
1701
|
}
|
|
1692
1702
|
|
|
1693
1703
|
declare class CoretimeKusama<TApi, TRes> extends Parachain<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
@@ -1699,6 +1709,7 @@ declare class CoretimeKusama<TApi, TRes> extends Parachain<TApi, TRes> implement
|
|
|
1699
1709
|
declare class CoretimePolkadot<TApi, TRes> extends Parachain<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
1700
1710
|
constructor(chain?: TParachain, info?: string, ecosystem?: TRelaychain, version?: Version);
|
|
1701
1711
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
1712
|
+
canReceiveFrom(origin: TChain): boolean;
|
|
1702
1713
|
getRelayToParaOverrides(): TRelayToParaOverrides;
|
|
1703
1714
|
}
|
|
1704
1715
|
|
|
@@ -1735,6 +1746,8 @@ declare class CrustShadow<TApi, TRes> extends Parachain<TApi, TRes> implements I
|
|
|
1735
1746
|
declare class Curio<TApi, TRes> extends Parachain<TApi, TRes> implements IXTokensTransfer {
|
|
1736
1747
|
constructor();
|
|
1737
1748
|
transferXTokens<TApi, TRes>(input: TXTokensTransferOptions<TApi, TRes>): TRes;
|
|
1749
|
+
isSendingTempDisabled(_options: TSendInternalOptions<TApi, TRes>): boolean;
|
|
1750
|
+
isReceivingTempDisabled(_scenario: TScenario): boolean;
|
|
1738
1751
|
}
|
|
1739
1752
|
|
|
1740
1753
|
declare class Darwinia<TApi, TRes> extends Parachain<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
@@ -1906,12 +1919,16 @@ declare class PeoplePolkadot<TApi, TRes> extends Parachain<TApi, TRes> implement
|
|
|
1906
1919
|
|
|
1907
1920
|
declare class PAssetHub<TApi, TRes> extends PeoplePolkadot<TApi, TRes> {
|
|
1908
1921
|
constructor();
|
|
1922
|
+
isSendingTempDisabled(_options: TSendInternalOptions<TApi, TRes>): boolean;
|
|
1923
|
+
isReceivingTempDisabled(_scenario: TScenario): boolean;
|
|
1909
1924
|
}
|
|
1910
1925
|
|
|
1911
1926
|
declare class Peaq<TApi, TRes> extends Parachain<TApi, TRes> implements IXTokensTransfer {
|
|
1912
1927
|
constructor();
|
|
1913
1928
|
transferXTokens<TApi, TRes>(input: TXTokensTransferOptions<TApi, TRes>): TRes;
|
|
1914
1929
|
transferRelayToPara(): Promise<TSerializedApiCall>;
|
|
1930
|
+
isSendingTempDisabled(_options: TSendInternalOptions<TApi, TRes>): boolean;
|
|
1931
|
+
isReceivingTempDisabled(_scenario: TScenario): boolean;
|
|
1915
1932
|
transferLocalNonNativeAsset(options: TTransferLocalOptions<TApi, TRes>): TRes;
|
|
1916
1933
|
}
|
|
1917
1934
|
|
|
@@ -1948,6 +1965,7 @@ declare class Phala<TApi, TRes> extends Parachain<TApi, TRes> implements IXTrans
|
|
|
1948
1965
|
declare class Polimec<TApi, TRes> extends Parachain<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
1949
1966
|
constructor();
|
|
1950
1967
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
1968
|
+
isSendingTempDisabled({ assetInfo }: TSendInternalOptions<TApi, TRes>): boolean;
|
|
1951
1969
|
transferRelayToPara(options: TRelayToParaOptions<TApi, TRes>): Promise<TSerializedApiCall>;
|
|
1952
1970
|
transferLocalNonNativeAsset(options: TTransferLocalOptions<TApi, TRes>): TRes;
|
|
1953
1971
|
}
|
|
@@ -1967,6 +1985,7 @@ declare class RobonomicsKusama<TApi, TRes> extends Parachain<TApi, TRes> impleme
|
|
|
1967
1985
|
declare class RobonomicsPolkadot<TApi, TRes> extends Parachain<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
1968
1986
|
constructor();
|
|
1969
1987
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
1988
|
+
isReceivingTempDisabled(scenario: TScenario): boolean;
|
|
1970
1989
|
transferLocalNonNativeAsset(options: TTransferLocalOptions<TApi, TRes>): TRes;
|
|
1971
1990
|
}
|
|
1972
1991
|
|
|
@@ -1981,6 +2000,8 @@ declare class Shiden<TApi, TRes> extends Parachain<TApi, TRes> implements IPolka
|
|
|
1981
2000
|
declare class Subsocial<TApi, TRes> extends Parachain<TApi, TRes> implements IPolkadotXCMTransfer {
|
|
1982
2001
|
constructor();
|
|
1983
2002
|
transferPolkadotXCM<TApi, TRes>(input: TPolkadotXCMTransferOptions<TApi, TRes>): Promise<TRes>;
|
|
2003
|
+
isSendingTempDisabled(_options: TSendInternalOptions<TApi, TRes>): boolean;
|
|
2004
|
+
isReceivingTempDisabled(_scenario: TScenario): boolean;
|
|
1984
2005
|
}
|
|
1985
2006
|
|
|
1986
2007
|
declare class Unique<TApi, TRes> extends Parachain<TApi, TRes> implements IXTokensTransfer {
|
|
@@ -2000,6 +2021,7 @@ declare class Zeitgeist<TApi, TRes> extends Parachain<TApi, TRes> implements IXT
|
|
|
2000
2021
|
constructor(chain?: TParachain, info?: string, ecosystem?: TRelaychain, version?: Version);
|
|
2001
2022
|
private getCurrencySelection;
|
|
2002
2023
|
transferXTokens<TApi, TRes>(input: TXTokensTransferOptions<TApi, TRes>): TRes;
|
|
2024
|
+
canReceiveFrom(origin: TChain): boolean;
|
|
2003
2025
|
transferLocalNonNativeAsset(options: TTransferLocalOptions<TApi, TRes>): TRes;
|
|
2004
2026
|
}
|
|
2005
2027
|
|
|
@@ -2095,11 +2117,13 @@ type TSetBalanceRes = {
|
|
|
2095
2117
|
assetStatusTx?: TSerializedApiCall;
|
|
2096
2118
|
balanceTx: TSerializedApiCall;
|
|
2097
2119
|
};
|
|
2098
|
-
|
|
2099
|
-
|
|
2120
|
+
declare abstract class BaseAssetsPallet {
|
|
2121
|
+
protected palletName: TPallet;
|
|
2122
|
+
constructor(palletName: TPallet);
|
|
2123
|
+
abstract mint<TApi, TRes>(address: string, assetInfo: WithAmount<TAssetInfo>, balance: bigint, chain: TSubstrateChain, api: IPolkadotApi<TApi, TRes>): Promise<TSetBalanceRes>;
|
|
2100
2124
|
}
|
|
2101
2125
|
|
|
2102
|
-
declare class AssetsPallet
|
|
2126
|
+
declare class AssetsPallet extends BaseAssetsPallet {
|
|
2103
2127
|
mint(address: string, asset: WithAmount<TAssetInfo>, _balance: bigint, chain: TSubstrateChain): Promise<TSetBalanceRes>;
|
|
2104
2128
|
}
|
|
2105
2129
|
|
|
@@ -2128,7 +2152,6 @@ declare const addEthereumBridgeFees: <TApi, TRes, TResult extends {
|
|
|
2128
2152
|
fee?: bigint;
|
|
2129
2153
|
}>(api: IPolkadotApi<TApi, TRes>, bridgeHubResult: TResult | undefined, destination: TChain, assetHubChain: TSubstrateChain) => Promise<TResult | undefined>;
|
|
2130
2154
|
|
|
2131
|
-
declare const getCurrencySelection: (asset: TAssetInfo) => TCurrencyCore;
|
|
2132
2155
|
declare const calcPreviewMintAmount: (balance: bigint, desired: bigint) => bigint | null;
|
|
2133
2156
|
declare const wrapTxBypass: <TApi, TRes>(dryRunOptions: TDryRunBypassOptions<TApi, TRes>, options?: TBypassOptions) => Promise<TRes>;
|
|
2134
2157
|
|
|
@@ -2173,7 +2196,14 @@ declare const transferRelayToPara: <TApi, TRes>(options: TRelayToParaOptions<TAp
|
|
|
2173
2196
|
/**
|
|
2174
2197
|
* Creates a type and then call for transferring assets using XCM. Works only for DOT and snowbridge assets so far.
|
|
2175
2198
|
*/
|
|
2176
|
-
declare const createTypeAndThenCall: <TApi, TRes>(chain: TSubstrateChain, options: TPolkadotXCMTransferOptions<TApi, TRes
|
|
2199
|
+
declare const createTypeAndThenCall: <TApi, TRes>(chain: TSubstrateChain, options: TPolkadotXCMTransferOptions<TApi, TRes>, overrideReserve?: TSubstrateChain) => Promise<TSerializedApiCall>;
|
|
2200
|
+
|
|
2201
|
+
/**
|
|
2202
|
+
* Creates a type-and-then call but auto-selects the asset reserve between AssetHub and the Relay chain
|
|
2203
|
+
* by dry-running both variants and preferring the one that succeeds. If both fail, returns the
|
|
2204
|
+
* AssetHub variant. Supports only relaychain assets.
|
|
2205
|
+
*/
|
|
2206
|
+
declare const createTypeThenAutoReserve: <TApi, TRes>(chain: TSubstrateChain, options: TPolkadotXCMTransferOptions<TApi, TRes>) => Promise<TSerializedApiCall>;
|
|
2177
2207
|
|
|
2178
2208
|
declare const verifyEdOnDestination: <TApi, TRes>(options: TVerifyEdOnDestinationOptions<TApi, TRes>) => Promise<boolean>;
|
|
2179
2209
|
|
|
@@ -2189,6 +2219,8 @@ declare const assertIsForeign: (asset: TAssetInfo) => asserts asset is TForeignA
|
|
|
2189
2219
|
declare const createAsset: (version: Version, amount: bigint, location: TLocation) => TAsset;
|
|
2190
2220
|
declare const createVersionedAssets: (version: Version, amount: bigint, location: TLocation) => OneKey<Version, TAsset[]>;
|
|
2191
2221
|
|
|
2222
|
+
declare const getCurrencySelection: (asset: TAssetInfo) => TCurrencyCore;
|
|
2223
|
+
|
|
2192
2224
|
declare const maybeOverrideAssets: (version: Version, amount: bigint, assets: TAsset[], overriddenCurrency?: TLocation | TAsset[]) => TAsset[];
|
|
2193
2225
|
declare const maybeOverrideAsset: (version: Version, amount: bigint, asset: TAsset, overriddenCurrency?: TLocation | TAsset[]) => TAsset;
|
|
2194
2226
|
|
|
@@ -2285,5 +2317,5 @@ declare const handleToAhTeleport: <TApi, TRes>(origin: TParachain, input: TPolka
|
|
|
2285
2317
|
|
|
2286
2318
|
declare const validateAddress: (address: TAddress, chain: TChain, isDestination?: boolean) => void;
|
|
2287
2319
|
|
|
2288
|
-
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, createTx, 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 };
|
|
2320
|
+
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, createTx, createTypeAndThenCall, createTypeThenAutoReserve, 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 };
|
|
2289
2321
|
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, TTxFactory, 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 };
|