# ===================================================== # Naomi — Ethereum Token Launch Analyzer # Copy this file to .env and fill in your own values. # Never commit .env to git. # ===================================================== # --- Ethereum RPC --- # Use a paid provider (Alchemy, QuickNode, Infura). Free RPC will rate-limit # and may not stream events reliably. ETH_RPC_URL= # Optional WebSocket endpoint, required for the mempool source. ETH_WS_URL= # --- Etherscan --- # Free API key works for verified-source, holders need pro tier. # Without this key, contract and holder enrichment degrade gracefully. ETHERSCAN_API_KEY= # --- Anthropic / Claude (AI scoring) --- # Optional. If unset, Naomi runs heuristic-only filtering. ANTHROPIC_API_KEY= ANTHROPIC_MODEL=claude-haiku-4-5-20251001 # --- Logging --- LOG_LEVEL=info