{% extends "base.html" %} {% block title %} - Found Monero blocks by {{ miner.address }}{% endblock %} {% block content %}

Recent Monero blocks found by {{ miner.address }}

{% for b in blocks_found %} {% if b.parent.height is defined %} {% else %} {% endif %} {% if b.miner_alias != "" %} {% else %} {% endif %} {% endfor %}
Monero Height P2Pool Height Age [h:m:s] Found by Total Reward Outputs Coinbase Transaction Coinbase Tx Private Key
{{ b.main.height }} {{ b.height }}* {{ b.height }} {{ date_diff_short(b.timestamp) }}{{ b.miner_alias|shorten(10) }}{{ b.miner|shorten(10) }}{{ monero_to_xmr(b.coinbase.reward) }} XMR {{ b.coinbase.payouts|length }} {{ b.coinbase.id|shorten(10) }} {{ b.coinbase.private_key }}
{% endblock %}