Revolutionary DeFi trading intelligence powered by Hyperion's Alith AI
๐ Live Demo | ๐ Dashboard | ๐ง AI Signals | ๐ API Docs
HyperMind AI showcases the full potential of Hyperion's Alith co-agent in revolutionizing DeFi trading through:
/docs endpointFrontend: https://hypermind-ai.vercel.app/
API Endpoint:
http://localhost:8000(when running locally)
# Clone the repository
git clone https://github.com/JinyueXie/hypermind-ai.git
cd hypermind-ai
# Backend Setup (AI Trading Engine)
cd backend/agent
python3 -m venv fresh_venv
source fresh_venv/bin/activate # On Windows: fresh_venv\Scripts\activate
pip install -r requirements.txt
# Start the AI API Server
python api_server.py
# Frontend Setup (in another terminal)
cd hypermind-ai
python3 -m http.server 8000
# Open http://localhost:8000 in your browser
# Single signal generation
curl -X POST http://localhost:8000/signal \
-H "Content-Type: application/json" \
-d '{"pair": "ETH/USDC"}' | jq
# Batch analysis
curl -X POST http://localhost:8000/batch \
-H "Content-Type: application/json" \
-d '{"pairs": ["ETH/USDC", "BTC/USDT"]}' | jq
# Competition mode (exports signals to JSON)
python run_agent.py compete
hypermind-ai/
โโโ index.html # Landing page
โโโ pages/
โ โโโ dashboard.html # Main trading dashboard
โ โโโ signals.html # AI signal monitoring
โ โโโ portfolio.html # Portfolio management
โ โโโ settings.html # Configuration
โโโ assets/
โ โโโ css/styles.css # Styling and animations
โ โโโ js/
โ โโโ api.js # Frontend API integration
โ โโโ dashboard.js # Dashboard functionality
โโโ components/
โ โโโ web3-config.js # Smart contract configuration
โโโ backend/
โ โโโ agent/
โ โโโ hypermind_ai.py # Core AI trading engine
โ โโโ api_server.py # FastAPI server
โ โโโ run_agent.py # CLI interface
โ โโโ config/
โ โโโ alith_config.json # Alith SDK configuration
โโโ contracts/
โ โโโ HyperMindSignals.sol # Signal storage smart contract
โ โโโ AlithSignalMarket.sol # Advanced signal marketplace
โโโ deployment_info.md # Deployment details
โโโ README.md
| Endpoint | Method | Description |
|---|---|---|
/ | GET | API status and endpoints |
/health | GET | Service health check |
/signal | POST | Generate single trading signal |
/batch | POST | Analyze multiple pairs |
/pairs | GET | Supported trading pairs |
/docs | GET | Interactive API documentation |
{
"success": true,
"pair": "ETH/USDC",
"signal": {
"pair": "ETH/USDC",
"signal": "BUY",
"confidence": 0.8,
"analysis_summary": "Technical indicators show bullish momentum...",
"technical_indicators": {
"rsi": 65.2,
"trend": "BULLISH",
"patterns": ["BULLISH_TREND"],
"support_level": 2100.50,
"resistance_level": 2250.75
}
}
}
0x4bF9Ff46CD70D7A28169bC028A822Df95bF4A049function submitSignal(
string memory pair,
uint8 signal,
uint256 confidence,
bytes32 proofHash
) external;
function executeSignal(uint256 signalId) external;
function getSignalHistory(address user) external view returns (Signal[] memory);
http://localhost:8000/docs (when running locally)Built by @JinyueXie for HyperHack 2025.
Powered by Hyperion Alith AI โข Built with โค๏ธ for HyperHack 2025
MIT License - see LICENSE file for details.
38 commits
Python
95.6%
Cython
2.5%
Revolutionary DeFi trading intelligence powered by Hyperion's Alith AI
๐ Live Demo | ๐ Dashboard | ๐ง AI Signals | ๐ API Docs
HyperMind AI showcases the full potential of Hyperion's Alith co-agent in revolutionizing DeFi trading through:
/docs endpointFrontend: https://hypermind-ai.vercel.app/
API Endpoint:
http://localhost:8000(when running locally)
# Clone the repository
git clone https://github.com/JinyueXie/hypermind-ai.git
cd hypermind-ai
# Backend Setup (AI Trading Engine)
cd backend/agent
python3 -m venv fresh_venv
source fresh_venv/bin/activate # On Windows: fresh_venv\Scripts\activate
pip install -r requirements.txt
# Start the AI API Server
python api_server.py
# Frontend Setup (in another terminal)
cd hypermind-ai
python3 -m http.server 8000
# Open http://localhost:8000 in your browser
# Single signal generation
curl -X POST http://localhost:8000/signal \
-H "Content-Type: application/json" \
-d '{"pair": "ETH/USDC"}' | jq
# Batch analysis
curl -X POST http://localhost:8000/batch \
-H "Content-Type: application/json" \
-d '{"pairs": ["ETH/USDC", "BTC/USDT"]}' | jq
# Competition mode (exports signals to JSON)
python run_agent.py compete
hypermind-ai/
โโโ index.html # Landing page
โโโ pages/
โ โโโ dashboard.html # Main trading dashboard
โ โโโ signals.html # AI signal monitoring
โ โโโ portfolio.html # Portfolio management
โ โโโ settings.html # Configuration
โโโ assets/
โ โโโ css/styles.css # Styling and animations
โ โโโ js/
โ โโโ api.js # Frontend API integration
โ โโโ dashboard.js # Dashboard functionality
โโโ components/
โ โโโ web3-config.js # Smart contract configuration
โโโ backend/
โ โโโ agent/
โ โโโ hypermind_ai.py # Core AI trading engine
โ โโโ api_server.py # FastAPI server
โ โโโ run_agent.py # CLI interface
โ โโโ config/
โ โโโ alith_config.json # Alith SDK configuration
โโโ contracts/
โ โโโ HyperMindSignals.sol # Signal storage smart contract
โ โโโ AlithSignalMarket.sol # Advanced signal marketplace
โโโ deployment_info.md # Deployment details
โโโ README.md
| Endpoint | Method | Description |
|---|---|---|
/ | GET | API status and endpoints |
/health | GET | Service health check |
/signal | POST | Generate single trading signal |
/batch | POST | Analyze multiple pairs |
/pairs | GET | Supported trading pairs |
/docs | GET | Interactive API documentation |
{
"success": true,
"pair": "ETH/USDC",
"signal": {
"pair": "ETH/USDC",
"signal": "BUY",
"confidence": 0.8,
"analysis_summary": "Technical indicators show bullish momentum...",
"technical_indicators": {
"rsi": 65.2,
"trend": "BULLISH",
"patterns": ["BULLISH_TREND"],
"support_level": 2100.50,
"resistance_level": 2250.75
}
}
}
0x4bF9Ff46CD70D7A28169bC028A822Df95bF4A049function submitSignal(
string memory pair,
uint8 signal,
uint256 confidence,
bytes32 proofHash
) external;
function executeSignal(uint256 signalId) external;
function getSignalHistory(address user) external view returns (Signal[] memory);
http://localhost:8000/docs (when running locally)Built by @JinyueXie for HyperHack 2025.
Powered by Hyperion Alith AI โข Built with โค๏ธ for HyperHack 2025
MIT License - see LICENSE file for details.
38 commits
Python
95.6%
Cython
2.5%