UNPKG

@cygnus-wealth/wallet-integration-system

Version:

Multi-chain wallet integration system for CygnusWealth

13 lines (12 loc) 529 B
// Main exports export { WalletManager } from './services/WalletManager'; // Chain-specific integrations export { EVMWalletIntegration } from './chains/evm/EVMWalletIntegration'; export { SolanaWalletIntegration } from './chains/solana/SolanaWalletIntegration'; export { SuiWalletIntegration } from './chains/sui/SuiWalletIntegration'; // Types export * from './types'; // Utils export * from './utils/constants'; // Re-export commonly used data model types export { Chain, IntegrationSource } from '@cygnus-wealth/data-models';