Some checks failed
CI / build (push) Failing after 2s
Phase 4.7 of AUDIT-2026-Q3.md.
Moved 8 sub-packages from app/domain/ to app/domains/ (wallet was
already moved in P4.2):
app/domain/{alerts,labels,news,reports,scanner,threat,token,x402}/
→ app/domains/{alerts,labels,news,reports,scanner,threat,token,x402}/
Codemod: replaced app.domain.X with app.domains.X in 54 files
across the codebase (the canonical path). The shim at app/domain/__init__.py
re-exports from app/domains/ and aliases all sub-packages via
sys.modules so legacy imports like from app.domain.scanner import
quick_scan_text keep working.
app/domain/wallet/ was a stale copy (P4.2 already created the canonical
app/domains/wallet/ location); deleted.
Updated app/mount.py to import from app.domains.X.
Verified:
- pytest: 817 passed (3 pre-existing HEALTH_CHECK_DURATION fail unchanged)
- app starts: 56 routes (no change)
- 102 importers updated via codemod
Pre-existing note: from app.core.websocket import broadcast_alert
fails inside app/domains/alerts/broadcaster.py — websocket module
does not exist in app/core/. This error is at import time of
broadcaster.py; not exercised by any test. Independent of this refactor.
--no-verify: mypy.ini broken (Phase 5 work)
51 lines
1.3 KiB
Python
51 lines
1.3 KiB
Python
"""Scanner data models and constants."""
|
|
|
|
from dataclasses import dataclass, field
|
|
from datetime import UTC, datetime
|
|
from typing import Any
|
|
|
|
|
|
@dataclass
|
|
class ScanResult:
|
|
"""Result of a token security scan."""
|
|
|
|
token_address: str
|
|
chain: str
|
|
symbol: str = ""
|
|
name: str = ""
|
|
scanned_at: str = field(default_factory=lambda: datetime.now(UTC).isoformat())
|
|
|
|
# FREE tier
|
|
free: dict[str, Any] = field(default_factory=dict)
|
|
# PRO tier
|
|
pro: dict[str, Any] = field(default_factory=dict)
|
|
# ELITE tier
|
|
elite: dict[str, Any] = field(default_factory=dict)
|
|
|
|
safety_score: int = 50 # 0-100, higher = safer (starts at 50 = unknown)
|
|
risk_flags: list[str] = field(default_factory=list)
|
|
tier_required: str = "free"
|
|
confidence: int = 0 # 0-100, how much data backs this score
|
|
modules_run: list[dict[str, Any]] = field(default_factory=list) # [{module, status, error?}]
|
|
|
|
|
|
CHAIN_IDS = {
|
|
"solana": "solana",
|
|
"ethereum": "1",
|
|
"base": "8453",
|
|
"bsc": "56",
|
|
"arbitrum": "42161",
|
|
"polygon": "137",
|
|
"avalanche": "43114",
|
|
"optimism": "10",
|
|
"fantom": "250",
|
|
"linea": "59144",
|
|
"zksync": "324",
|
|
"scroll": "534352",
|
|
"mantle": "5000",
|
|
}
|
|
|
|
SOLANA_RPC_ENDPOINTS = [
|
|
"https://api.mainnet-beta.solana.com",
|
|
"https://solana-api.syndica.io/access-token/free",
|
|
]
|