15 lines
408 B
Python
15 lines
408 B
Python
"""TradeCipher MVP package
|
|
|
|
A lightweight reference implementation for LocalTrade / SharedSignals / PlanDelta
|
|
contracts, a tamper-evident in-memory attestation ledger, and a placeholder
|
|
Zero-Knowledge proof generator. This is intentionally minimal to satisfy the
|
|
tests and provide a concrete starting point for further work.
|
|
"""
|
|
|
|
__all__ = [
|
|
"contracts",
|
|
"ledger",
|
|
"zk_proofs",
|
|
"adapters",
|
|
]
|