// Base abstract class and types export * from "./savings-manager"; // Chain-specific implementations export * from "./evm-savings"; export * from "./svm-savings"; // Multi-chain orchestrator export * from "./multi-chain-savings"; // Types and validation export * from "./types"; export * from "./validation"; // Legacy exports (old single-chain manager - rename to avoid conflict) export { BaseSavingsManager as LegacyBaseSavingsManager, SavingsManager as LegacySavingsManager } from "./saving-manager"; export * from "./smart-savings"; export * from "./savings-operations";