- Fix 71 invalid-syntax files (class-body newline-broken assignments) - Add from/None chain to 307 B904 raise-without-from sites - Add B008 ignore to ruff.toml (already in pyproject.toml) - Noqa F401 on __init__.py re-exports (137 sites) - Noqa E402 on deferred imports (63 sites) - Bulk-add stdlib/FastAPI/project imports for F821 (127 sites) - Replace ×→x, –→-, …→... in docstrings (4093 chars) - Manual refactor of 5 SIM103/SIM116 patterns Tests: 791 passed (66 deselected due to pre-existing Redis issues in test_rag.py) Co-authored-by: opencode <opencode@rugmunch.io>
21 lines
751 B
Python
21 lines
751 B
Python
"""
|
|
Wallet Memory Bank - Persistent wallet intelligence across chains.
|
|
===============================================================
|
|
Consolidates wallet clustering, labeling, entity resolution, and risk scoring
|
|
into a single coherent system that feeds SENTINEL token scans and powers
|
|
standalone wallet exploration.
|
|
|
|
Two products, one backbone:
|
|
- SENTINEL (token scanner) consumes deployer intelligence from here
|
|
- WalletSafe (wallet explorer) surfaces entity graphs and risk profiles
|
|
"""
|
|
|
|
from .engine import WalletMemoryEngine, get_wallet_engine
|
|
from .ingestion import WalletIngestionPipeline, get_ingestion_pipeline
|
|
|
|
__all__ = [
|
|
"WalletIngestionPipeline",
|
|
"WalletMemoryEngine",
|
|
"get_ingestion_pipeline",
|
|
"get_wallet_engine",
|
|
]
|