
- 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>
8 lines
353 B
Python
8 lines
353 B
Python
# Import all the models, so that Base has them before being
|
|
# imported by Alembic
|
|
from app.db.base_class import Base # noqa
|
|
from app.models.block import Block # noqa
|
|
from app.models.transaction import Transaction # noqa
|
|
from app.models.arbitrage import Arbitrage # noqa
|
|
from app.models.pool import Pool # noqa
|
|
from app.models.dex import Dex # noqa |