@paraspell/sdk 0.0.24 → 0.0.25
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 +1055 -878
- package/dist/index.d.ts +5 -2
- package/dist/index.mjs +1044 -878
- package/package.json +14 -7
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ApiPromise } from '@polkadot/api';
|
|
2
|
-
import { SubmittableExtrinsic } from '@polkadot/api/types';
|
|
2
|
+
import { SubmittableExtrinsic } from '@polkadot/api-base/types';
|
|
3
3
|
|
|
4
4
|
declare const NODE_NAMES: readonly ["Statemint", "Acala", "Astar", "BifrostPolkadot", "Bitgreen", "Centrifuge", "Clover", "ComposableFinance", "Darwinia", "HydraDX", "Interlay", "Kylin", "Litentry", "Moonbeam", "Parallel", "Statemine", "Encointer", "Altair", "Amplitude", "Bajun", "Basilisk", "BifrostKusama", "Pioneer", "Calamari", "CrustShadow", "Crab", "Dorafactory", "Imbue", "Integritee", "InvArchTinker", "Karura", "Kico", "Kintsugi", "Listen", "Litmus", "Mangata", "Moonriver", "ParallelHeiko", "Picasso", "Pichiu", "Quartz", "Robonomics", "Shiden", "Turing"];
|
|
5
5
|
declare const SUPPORTED_PALLETS: readonly ["XTokens", "OrmlXTokens", "PolkadotXcm", "RelayerXcm"];
|
|
@@ -274,4 +274,7 @@ declare class GeneralBuilder {
|
|
|
274
274
|
}
|
|
275
275
|
declare function Builder(api: ApiPromise): GeneralBuilder;
|
|
276
276
|
|
|
277
|
-
|
|
277
|
+
declare const getDefaultPallet: (node: TNode) => TPallet;
|
|
278
|
+
declare const getSupportedPallets: (node: TNode) => TPallet[];
|
|
279
|
+
|
|
280
|
+
export { Bool, Builder, Extrinsic, ExtrinsicFunction, NODE_NAMES, SUPPORTED_PALLETS, TAssetDetails, TAssetJsonMap, TNativeAssetDetails, TNode, TNodeAssets, TNodeDetails, TPallet, TPalletJsonMap, TPalletMap, TRelayChainType, TScenario, UpdateFunction, index as assets, index$1 as closeChannels, getAllAssetsSymbols, getAssetDecimals, getAssetId, getAssetsObject, getDefaultPallet, getNativeAssets, getOtherAssets, getParaId, getRelayChainSymbol, getSupportedPallets, hasSupportForAsset, index$2 as openChannels, index$4 as xcmPallet, index$3 as xyk };
|