@lifi/data-types 2.3.0-alpha.1 → 2.3.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.
@@ -1,2 +1,5 @@
1
+ export { supportedEVMChains } from './supportedChains.evm';
2
+ export { supportedSolanaChains } from './supportedChains.svm';
3
+ export { supportedUXTOChains } from './supportedChains.utxo';
1
4
  export * from './supportedChains';
2
5
  export * from './utils';
@@ -1,2 +1,5 @@
1
+ export { supportedEVMChains } from './supportedChains.evm';
2
+ export { supportedSolanaChains } from './supportedChains.svm';
3
+ export { supportedUXTOChains } from './supportedChains.utxo';
1
4
  export * from './supportedChains';
2
5
  export * from './utils';
@@ -1,7 +1,4 @@
1
- import { Chain, ChainKey, EVMChain, SolanaChain, UTXOChain } from '@lifi/types';
2
- export declare const supportedEVMChains: EVMChain[];
3
- export declare const supportedSolanaChains: SolanaChain[];
4
- export declare const supportedUXTOChains: UTXOChain[];
5
- export declare const supportedChains: UTXOChain[];
1
+ import { Chain, ChainKey } from '@lifi/types';
2
+ export declare const supportedChains: import("@lifi/types").UTXOChain[];
6
3
  export declare const getChainByKey: (chainKey: ChainKey) => Chain;
7
4
  export declare const getChainById: (chainId: number) => Chain;
@@ -0,0 +1,2 @@
1
+ import { EVMChain } from '@lifi/types';
2
+ export declare const supportedEVMChains: EVMChain[];