Settlement
Transparency
A public, unauthenticated proof-of-reserves covering per-mint outstanding liabilities versus vault balances, plus the engine’s attested identity.
Public solvency snapshot + engine identity + aggregate stats.
Unauthenticated.
TL;DR
GET /transparency is a public solvency snapshot: for every mint it reports
the outstanding note value (the venue’s liability) against the actual SPL balance
held in the vault (the assets). Treat the endpoint as a convenience view and
verify the same OutstandingMint and vault token accounts directly on Solana
when making a trust decision.GET /transparency
Public, with no authentication.Response
Reserves
The solvency check is
vault_balance >= outstanding for every mint. When it
holds, the pool can honor every withdrawal: the tokens are there. If a row is
stale, an on-chain read failed and you should ignore that row’s numbers rather
than read a transient 0 as insolvency.
Engine identity
These fields identify what the server claims to be. They are not an
attestation proof: derive the compose hash from the DCAP-verified quote event log
and compare the quote-bound full signer set with finalized on-chain
VaultConfig.tee_pubkeys. The transparency response exposes only the primary
signer.
Stats
Aggregate operational gauges, useful for a public health dashboard. They reveal
nothing about any individual order; terminal entries age out, so do not sum
deltas or treat the values as historical volume.
How to use it
- Independent solvency monitoring. Poll it and alert if any non-stale mint
shows
vault_balance < outstanding. - Pre-trade trust check. Confirm reserves cover liabilities, then perform the independent quote, measurement, and full signer-set checks described in Transport & Attestation.
- Public dashboards. Because it is unauthenticated and leaks nothing about individuals, it is safe to surface on a status page.
Response
Transparency snapshot.
Public, unauthenticated convenience snapshot. Independently read the
corresponding Solana accounts and verify /attestation before treating
the reserve or engine-identity fields as trusted evidence.
Public solvency snapshot + engine identity + aggregate stats.
Unauthenticated.