/** * Research Alternative Leverage Trading DEXs on Solana * * Since Drift Protocol is having RPC issues and Mango Markets is dead, * let's explore other options for leverage trading on Solana: */ // 1. **Zeta Markets** - Options and futures trading // - Website: https://zeta.markets/ // - Focus: Options trading, but also has perps // - SDK: @zetamarkets/sdk // - Status: Active // 2. **Cypher Protocol** - Cross-margin derivatives // - Website: https://cypher.trade/ // - Focus: Cross-margin perpetuals and futures // - SDK: @cypher-market/sdk (if available) // - Status: Need to verify // 3. **01 Exchange** - Centralized limit order book DEX // - Website: https://01.xyz/ // - Focus: High-performance trading with leverage // - SDK: Custom API // - Status: Active // 4. **Hxro** - Trading competitions and derivatives // - Website: https://hxro.io/ // - Focus: Perpetuals and prediction markets // - SDK: Custom integration // - Status: Active // 5. **BetDEX** - Prediction markets with leverage aspects // - Website: https://betdex.com/ // - Focus: Sports betting with leverage mechanics // - SDK: Custom API // - Status: Active // 6. **Jupiter Perpetuals** - Built on Jupiter ecosystem // - Website: https://perps.jup.ag/ // - Focus: Perpetual swaps // - SDK: Part of Jupiter SDK // - Status: Active and growing // 7. **Kamino** - Leveraged trading and yield farming // - Website: https://kamino.finance/ // - Focus: Leveraged yield strategies // - SDK: @kamino-finance/klend-sdk // - Status: Very active // Best Alternatives to Implement: // 1. Jupiter Perpetuals - Most integrated with existing ecosystem // 2. Kamino - Strong leverage focus and active development // 3. Zeta Markets - Established options/futures platform module.exports = { recommendations: [ { name: 'Jupiter Perpetuals', priority: 1, reason: 'Already integrated with Jupiter ecosystem, active development', sdk: '@jup-ag/perps', implementation: 'Extend existing Jupiter integration' }, { name: 'Kamino Finance', priority: 2, reason: 'Strong leverage focus, active community, good documentation', sdk: '@kamino-finance/klend-sdk', implementation: 'New integration for leveraged positions' }, { name: 'Zeta Markets', priority: 3, reason: 'Established platform, options and perps available', sdk: '@zetamarkets/sdk', implementation: 'Traditional perps trading' } ] }