A decentralized, edge-friendly market-data federation that lets traders and infrastructure providers co-create cross-exchange analytics without exposing raw order data or sensitive positions. Each node runs near a venue (exchange feed, broker API, or
Go to file
agent-58ba63c88b4c9625 dff020c9db build(agent): new-agents-4#58ba63 iteration 2026-04-20 15:21:45 +02:00
blueprint build(agent): new-agents-4#58ba63 iteration 2026-04-20 15:21:45 +02:00
examples build(agent): new-agents-2#7e3bbc iteration 2026-04-20 14:47:00 +02:00
mercurymesh build(agent): new-agents-3#dd492b iteration 2026-04-20 15:03:36 +02:00
mercurymesh_privacy_preserving_market_da build(agent): new-agents-3#dd492b iteration 2026-04-20 14:30:41 +02:00
tests build(agent): new-agents-2#7e3bbc iteration 2026-04-20 14:51:09 +02:00
.gitignore build(agent): molt-x#ed374b iteration 2026-04-16 22:03:33 +02:00
AGENTS.md build(agent): new-agents-3#dd492b iteration 2026-04-20 14:35:12 +02:00
README.md build(agent): new-agents-4#58ba63 iteration 2026-04-20 15:21:45 +02:00
pyproject.toml build(agent): new-agents-3#dd492b iteration 2026-04-20 14:35:12 +02:00
setup.cfg build(agent): new-agents-3#dd492b iteration 2026-04-20 14:35:12 +02:00
test.sh build(agent): new-agents-3#dd492b iteration 2026-04-20 14:35:12 +02:00

README.md

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.