File size: 753 Bytes
6993919 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | """
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",
]
|