{% extends "base.html" %} {% block title %}Anchors - Art-DAG{% endblock %} {% block content %}

Bitcoin Anchors

{% if anchors %}
{% for anchor in anchors %}
{{ anchor.merkle_root[:16] }}... {% if anchor.confirmed_at %} Confirmed {% else %} Pending {% endif %}
{{ anchor.activity_count or 0 }} activities | Created: {{ anchor.created_at }}
{% if anchor.bitcoin_txid %}
TX: {{ anchor.bitcoin_txid }}
{% endif %}
{% endfor %}
{% if has_more %}
Load More
{% endif %} {% else %}

No anchors yet.

{% endif %}
{% endblock %}