22 lines
737 B
Python
22 lines
737 B
Python
"""MercuryMesh Core Primitives
|
|
Public API for lightweight MVP of the privacy-preserving market data federation.
|
|
|
|
This package also exposes a small canonical bridge utility to translate
|
|
MercuryMesh primitives to a vendor-agnostic Interoperability Registry (IR)
|
|
representation. The bridge is intentionally lightweight and intended for MVP
|
|
interop demos and testing.
|
|
"""
|
|
|
|
from .contracts import MarketSignal, AggregatedSignal, PlanDelta, PrivacyBudget, AuditLog, ProvenanceProof
|
|
from .bridge_ir import to_ir_market_signal, to_ir_aggregated_signal
|
|
__all__ = [
|
|
"MarketSignal",
|
|
"AggregatedSignal",
|
|
"PlanDelta",
|
|
"PrivacyBudget",
|
|
"AuditLog",
|
|
"ProvenanceProof",
|
|
"to_ir_market_signal",
|
|
"to_ir_aggregated_signal",
|
|
]
|