{% extends "base.html" %} {% block title %}revisions · tau-x402-cage{% endblock %} {% block content %}

How has the policy changed over time?

Append-only proof-token chain. Every admission produces a row; every row is content-addressed so auditors can replay.

Chain ({{ total }} total)

{% if entries %} {% for e in entries %} {% endfor %}
# Hash Backend Strength Mode Issued Diff
{{ total - offset - loop.index0 }} {% set rid = e.get("config_hash") or e.get("revision_id") %} {% if rid %} {{ rid[:16] }}… {% else %}—{% endif %} {{ e.get("backend", "—") }} {{ e.get("proof_strength", "—") }} {{ e.get("prover_mode", "—") }} {{ e.get("issued_at_unix", "—") }} {% set prev = e.get("predecessor_hash") or e.get("predecessor_revision_id") %} {% if prev and rid %} Diff against previous {% else %}—{% endif %}
{% else %}

No revisions admitted yet.

{% endif %}
{% endblock %}