{% extends "base.html" %} {% import "macro/template_and_block.html" as block %} {% import "macro/opengraph.html" as opengraph %} {% block opengraph %} {{ opengraph::og( title="DEBUG - Unknown Pools", description="Shows blocks where the mining pool couldn't be identified ", url="/debug/unknown", image_url="/og_image/index.png" ) }} {% endblock opengraph %} {% block content %}

Unknown Pools

Blocks where the mining pool couldn't be identified

This is a debug page. The mining pools for the listed blocks could not be identified. The mining pool identifiers are listed in github.com/0xB10C/known-mining-pools. Identifiers for unknown pools can be added there. The miningpool-observer uses the Rust crate bitcoin_pool_identification (crates.io, docs.rs, GitHub).

{% for block in unknown_pool_blocks %} {% endfor %}
Height Hash Explorers
{{ block.height }} {{ block.hash }} {{ block::explorers(hash=block.hash) }}
{% endblock content %}