26 lines
625 B
Python
26 lines
625 B
Python
"""ExProve – Open-Source Execution Provenance Engine (Core Primitives)
|
||
|
||
This package provides lightweight, production-oriented data contracts for cross-venue
|
||
execution provenance. It is intentionally minimal but designed to be easily extended
|
||
into a full edge-native solver and validator stack.
|
||
"""
|
||
from __future__ import annotations
|
||
|
||
from .contracts import (
|
||
LocalExecutionTask,
|
||
SharedMarketContext,
|
||
PlanDelta,
|
||
Attestation,
|
||
AuditLog,
|
||
GraphOfContracts,
|
||
)
|
||
|
||
__all__ = [
|
||
"LocalExecutionTask",
|
||
"SharedMarketContext",
|
||
"PlanDelta",
|
||
"Attestation",
|
||
"AuditLog",
|
||
"GraphOfContracts",
|
||
]
|