Quick Start
At a high level, using TruthTable involves three steps:
- Commit to a dataset, producing a short commitment the verifier trusts.
- Prove — run a SQL query against the committed data to get a result plus a proof.
- Verify — check the proof against the commitment and the claimed result.
# Illustrative — subject to change.tt commit ./data # -> dataset commitmenttt prove ./query.sql # -> result + prooftt verify ./proof # -> accept / rejectOnce the CLI stabilizes, this guide will walk through a complete end-to-end TPC-H example.
