NeuroWealth 💰
AI-Powered DeFi Yield Platform on Stellar
NeuroWealth is an autonomous AI investment agent that automatically manages and grows your crypto assets on the Stellar blockchain. Deposit once, let the AI find the best yield opportunities across Stellar's DeFi ecosystem — and withdraw anytime with no lock-ups.
Overview Traditional savings accounts offer near-zero interest. Traditional DeFi is too complex for most users. NeuroWealth bridges the gap a simple chat interface web powered by an AI agent that autonomously deploys your funds into the highest-yielding, safest opportunities on Stellar.
Why Stellar?
Transaction fees of fractions of a penny — perfect for frequent AI-driven rebalancing 3–5 second finality — the AI can act on market changes instantly Native DEX + Soroban smart contracts — composable, programmable yield strategies Native USDC + XLM — borderless capital movement with no friction Growing DeFi ecosystem — Blend (lending), Templar (borrowing), RWA protocols
Features FeatureDescription🤖 AI AgentAutonomous 24/7 yield optimization across Stellar DeFi💬 Natural LanguageChat to deposit, withdraw, and check balances📈 Auto-RebalancingAgent shifts funds to best opportunities automatically🔐 Non-CustodialYour funds live in audited Soroban smart contracts⚡ Instant WithdrawalsNo lock-ups, no penalties, withdraw anytime📱 WhatsApp ReadyFull functionality through WhatsApp chat interface🌍 Global AccessNo geographic restrictions, no bank account required🛡️ Security FirstSoroban contracts with ReentrancyGuard and access controls
How It Works
- User deposits USDC via web app ↓
- Soroban vault contract receives and records the deposit ↓
- Contract emits a deposit event ↓
- AI agent detects the event and deploys funds to best protocol (e.g. Blend) ↓
- Yield accumulates 24/7 — agent rebalances hourly if better opportunities exist ↓
- User requests withdrawal anytime → agent pulls funds → sends back in seconds Three Investment Strategies
Conservative — Stablecoin lending on Blend. Low risk, steady 3–6% APY. Balanced — Mix of lending + DEX liquidity provision. Medium risk, 6–10% APY. Growth — Aggressive multi-protocol deployment. Higher risk, 10–15% APY.
Tech Stack Smart Contracts
Language: Rust (Soroban SDK 21.0.0) Standard: ERC-4626 inspired vault architecture Network: Stellar Mainnet / Testnet Security: OpenZeppelin-equivalent patterns (ReentrancyGuard, Pausable, Access Control)
Backend / AI Agent
Runtime: Node.js or Python Stellar SDK: @stellar/stellar-sdk AI: Claude API / OpenAI for natural language intent parsing Database: PostgreSQL / Supabase for user position tracking Queue: Bull / Redis for reliable transaction processing
Frontend
Framework: Next.js 15 Blockchain: Stellar SDK + Freighter wallet integration Styling: Tailwind CSS Charts: Recharts for portfolio analytics
Integrations
Yield Protocols: Blend Protocol (lending), Stellar DEX (liquidity) Price Feeds: Stellar anchor price feeds
Project Structure neurowealth/ ├── contracts/ # Soroban smart contracts (Rust) │ └── vault/ │ ├── Cargo.toml │ └── src/ │ └── lib.rs # Core vault contract ├── agent/ # AI agent backend │ ├── index.ts # Agent entry point │ ├── stellar.ts # Stellar transaction helpers │ ├── strategies/ # Yield strategy logic │ │ ├── conservative.ts │ │ ├── balanced.ts │ │ └── growth.ts │ ├── protocols/ # DeFi protocol integrations │ │ └── blend.ts │ └── nlp/ # Natural language intent parsing │ └── parser.ts ├── frontend/ # Next.js web app │ ├── app/ │ ├── components/ │ └── lib/ ├── whatsapp/ # WhatsApp bot handler │ ├── webhook.ts │ └── responses.ts ├── scripts/ # Deployment and utility scripts │ ├── deploy.sh │ └── initialize.sh └── README.md
WhatsApp Integration NeuroWealth is designed to be fully operable through WhatsApp, making it accessible to anyone with a smartphone — no wallet app or browser extension needed. User Flow
- User sends "hi" to NeuroWealth WhatsApp number
- Bot introduces itself and asks for phone number verification (OTP)
- OTP verified → agent creates a Stellar keypair for this user (custodial)
- User can now deposit, withdraw, and check balance entirely through chat
- Funds are secured in the Soroban vault contract under their wallet address Setting Up the Webhook bash# Your webhook endpoint receives WhatsApp messages POST /api/whatsapp/webhook
Example Conversation User: deposit 100 USDC Agent: Got it! Depositing 100 USDC into your Balanced strategy. This should take about 5 seconds on Stellar... ✅ Done! You're now earning ~8.4% APY. I'll optimize automatically.
User: what's my balance? Agent: 💰 Your NeuroWealth Portfolio Balance: 100.23 USDC Earnings today: +$0.23 Current APY: 8.4% Strategy: Balanced
User: withdraw everything Agent: Withdrawing 100.23 USDC... ✅ Done! Funds sent to your wallet. Arrived in 4 seconds.
# Meta WhatsApp Cloud API
WHATSAPP_APP_SECRET=your_meta_app_secret_here
WHATSAPP_VERIFY_TOKEN=your_custom_verify_token_here
WHATSAPP_ACCESS_TOKEN=EAA...your_token_here
WHATSAPP_PHONE_NUMBER_ID=1015554021640186
WHATSAPP_WABA_ID=871074939257642
# Server
PORT=3000
NODE_ENV=development
LOG_LEVEL=info
# PostgreSQL Database
DB_HOST=localhost
DB_PORT=5432
DB_NAME=neurowealth
DB_USER=postgres
DB_PASSWORD=your_database_password_here
# Stellar Network
STELLAR_NETWORK=testnet # or 'mainnet'
STELLAR_HORIZON_URL=https://horizon-testnet.stellar.org
# Wallet Encryption
# Generate with: node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"
WALLET_ENCRYPTION_KEY=your_64_character_hex_string_here- Install PostgreSQL (version 12 or higher)
- Create the database:
createdb neurowealth
- Run migrations:
psql -d neurowealth -f backend/migrations/001_create_users_table.sql psql -d neurowealth -f backend/migrations/002_create_deposits_table.sql
- Testnet: Use
https://horizon-testnet.stellar.orgfor development - Mainnet: Use
https://horizon.stellar.orgfor production
The deposit monitor will automatically connect to the configured Horizon endpoint and stream payment events for all registered user wallet addresses.
The deposit detection system monitors user Stellar wallet addresses for incoming USDC deposits in real-time using the Horizon streaming API.
- Monitoring: When a user completes onboarding and receives a wallet address, the deposit monitor establishes a streaming connection to Horizon API
- Detection: USDC deposits are detected within 10 seconds of Stellar confirmation
- Recording: Deposits are recorded in PostgreSQL with idempotency (duplicate transactions are ignored)
- Notification: Users receive WhatsApp confirmation messages at two stages:
- "Deposit Received" - immediately after detection
- "Funds Deployed" - after AI agent deploys funds to yield strategy
- Deployment: The system emits deployment events for external AI agent handlers
- Real-time streaming with automatic reconnection
- Exponential backoff for connection failures (1s to 60s max)
- Transaction hash-based idempotency
- Atomic database transactions for portfolio updates
- Graceful error handling with user notifications
- Deposit Monitor: Streams payment events from Stellar Horizon
- Deposit Recorder: Records deposits in database with idempotency
- Deployment Coordinator: Emits deployment events and handles confirmations
- Deposit Messaging: Sends WhatsApp notifications for deposit lifecycle events