mercurymesh-privacy-preserv.../README.md

21 lines
1.3 KiB
Markdown

# MercuryMesh MVP
Privacy-preserving market data federation for cross-exchange analytics.
- Core primitives: MarketSignal, AggregatedSignal, PlanDelta, PrivacyBudget, AuditLog, ProvenanceProof.
- Graph-of-Contracts registry and two starter adapters (venue A & B).
- Lightweight TLS-based wiring and a toy provenance module.
- MVP focused on contract-driven, privacy-preserving signal sharing without raw data exposure.
Getting started
- Run tests and build: bash test.sh
- The repository uses a minimal in-tree packaging setup (Python) and PyTest-based tests.
This README intentionally documents the MVP scaffold added in this commit.
Blueprints and Starter Interoperability
- This repository includes a minimal adapter blueprint and a toy cross-venue analytics pipeline to bootstrap MercuryMesh interoperability across ecosystems.
- blueprint/adapter_blueprint.py: A lean, copy-paste friendly adapter skeleton showing how to connect, extract signals, and emit MarketSignal-like payloads.
- blueprint/toy_cross_venue_pipeline.py: A tiny end-to-end example that simulates two venues and merges signals into an AggregatedSignal with a deterministic, offline-friendly merge strategy.
- You can adapt these templates to fit into your existing adapters and contract graph workflow.