/** * Entry point for importing all supported chain implementations. * * @packageDocumentation */ import { AptosChain } from './aptos/index.ts'; import { CantonChain } from './canton/index.ts'; import { EVMChain } from './evm/index.ts'; import { SolanaChain } from './solana/index.ts'; import { SuiChain } from './sui/index.ts'; import { TONChain } from './ton/index.ts'; /** * Map of all supported chain families to their implementations. * Importing this includes all chain dependencies in the bundle. */ export declare const allSupportedChains: { EVM: typeof EVMChain; SVM: typeof SolanaChain; APTOS: typeof AptosChain; SUI: typeof SuiChain; TON: typeof TONChain; CANTON: typeof CantonChain; }; export { supportedChains } from './supported-chains.ts'; //# sourceMappingURL=all-chains.d.ts.map