Automated Action 5bb78bd9be Implement Solana arbitrage analytics backend
- Create project structure with FastAPI
- Add database models for blocks, transactions, arbitrages, pools, and DEXes
- Implement Solana RPC client for fetching blockchain data
- Create arbitrage detection algorithm
- Implement comprehensive API endpoints for analytics
- Set up database migrations with Alembic
- Add detailed project documentation

generated with BackendIM... (backend.im)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-05-12 14:13:06 +00:00

11 lines
610 B
Python

from fastapi import APIRouter
from app.api.v1 import blocks, transactions, arbitrages, dexes, pools, stats
api_router = APIRouter()
api_router.include_router(blocks.router, prefix="/blocks", tags=["blocks"])
api_router.include_router(transactions.router, prefix="/transactions", tags=["transactions"])
api_router.include_router(arbitrages.router, prefix="/arbitrages", tags=["arbitrages"])
api_router.include_router(dexes.router, prefix="/dexes", tags=["dexes"])
api_router.include_router(pools.router, prefix="/pools", tags=["pools"])
api_router.include_router(stats.router, prefix="/stats", tags=["stats"])