Tamper detect
O(1)
One call verifies the entire hash chain.
One job: append events to a write-once chain and verify the whole thing in one call — any altered, inserted, or missing entry is detected immediately.
With an API key this calls the live GET /v1/ledger/:tenant/verify-chain endpoint and returns the sealed response. Without one it shows a representative sealed payload so you can see the shape.
from epochcore_app_primitives import Client with Client(api_key="...") as c: v = c.ledger.verify_chain("acme-corp", limit=100) assert v["chain_valid"] and v["broken_links"] == 0 t = c.ledger.transparency(limit=50)