@paraspell/pallets 11.0.1 → 11.1.1

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.d.ts CHANGED
@@ -13,6 +13,8 @@ type TPalletDetails = {
13
13
  interface TPalletMap {
14
14
  defaultPallet: TPallet;
15
15
  supportedPallets: TPalletDetails[];
16
+ nativeAssets: TPallet;
17
+ otherAssets: TPallet[];
16
18
  }
17
19
  type TPalletJsonMap = Record<TSubstrateChain, TPalletMap>;
18
20
 
@@ -32,6 +34,8 @@ declare const getDefaultPallet: (chain: TSubstrateChain) => TPallet;
32
34
  declare const getSupportedPallets: (chain: TSubstrateChain) => TPallet[];
33
35
  declare const getSupportedPalletsDetails: (chain: TSubstrateChain) => TPalletDetails[];
34
36
  declare const getPalletIndex: (chain: TSubstrateChain, pallet: TPallet) => number | undefined;
37
+ declare const getNativeAssetsPallet: (chain: TSubstrateChain) => TPallet;
38
+ declare const getOtherAssetsPallets: (chain: TSubstrateChain) => TPallet[];
35
39
 
36
- export { SUPPORTED_PALLETS, getDefaultPallet, getPalletIndex, getSupportedPallets, getSupportedPalletsDetails };
40
+ export { SUPPORTED_PALLETS, getDefaultPallet, getNativeAssetsPallet, getOtherAssetsPallets, getPalletIndex, getSupportedPallets, getSupportedPalletsDetails };
37
41
  export type { TPallet, TPalletDetails, TPalletJsonMap, TPalletMap };