{% extends "base.html" %} {% block title %}Entry {{ entry.entry_id[:12] }}...{% endblock %} {% block content %}

Entry Information

Entry ID
{{ entry.entry_id }}
Trail ID
{{ entry.trail_id[:24] }}...
Agent
{% if cert %} {{ agent_name }} {% else %} {{ agent_name }} {% endif %}
Certificate ID
{% if cert %} {{ entry.cert_id[:24] }}... {% else %} {{ entry.cert_id[:24] }}... {% endif %}
Agent ID
{{ entry.agent_id[:24] }}...
Sequence
{{ entry.sequence }}
Timestamp
{{ format_ts(entry.timestamp) }}
Action Type
{{ action_label(entry.action_type) }}
Summary
{{ entry.action_summary }}
Signature
{{ entry.agent_signature[:24] }}...
{% if entry.previous_entry_id %}
Previous Entry
{{ entry.previous_entry_id[:24] }}...
{% endif %}
{% if entry.action_detail and entry.action_detail != {} %}
{% endif %}

Verification

Loading verification...

{% if proof %}

Merkle Proof

Batch
{{ batch.batch_id[:24] }}...
Leaf Index
{{ proof.leaf_index }} of {{ batch.item_count }}
Merkle Root
{{ proof.root[:24] }}...
Root: {{ proof.root[:32] }}...
{% for i in range(proof.siblings | length - 1, -1, -1) %}
{% if proof.directions[i] == 'right' %} ├─ [L] current hash
└─ [R] {{ proof.siblings[i][:24] }}... (sibling) {% else %} ├─ [L] {{ proof.siblings[i][:24] }}... (sibling)
└─ [R] current hash {% endif %}
{% endfor %}
Leaf [{{ proof.leaf_index }}]: {{ proof.leaf_hash[:24] }}...
{% endif %} {% if anchor %}

Bitcoin Anchor

Transaction ID
{{ anchor.txid }}
Network
{{ anchor.network }}
{% if anchor.op_return_hex %}
OP_RETURN
{{ anchor.op_return_hex }}
{% endif %}
View on Blockchain →
{% endif %} {% endblock %}