{% extends "base.html" %} {% block title %} - Current Window Miners{% endblock %} {% block content %}
{% if refresh %} Autorefresh is ON ({{ refresh }} s) {% else %} Autorefresh is OFF {% endif %}

Current Window Miners

This is a list of the miners that have shares in the current window, and would be rewarded when a Monero block is found within the window.

Entries are sorted by current window "weight". There are more total miners currently active, but without a share to show at the moment.

Pool share % is relative to whole pool hashrate. Miners can join or leave anytime and there is no ceiling limit.

{% for i, m in miners %} {% if m.Value.alias != "" %} {% else %} {% endif %} {% endfor %}
# Miner Software Pool share % Estimated Hashrate Shares found Shares position
{{ i+1 }}{{ m.Value.alias|shorten(10) }}{{ m.Key|shorten(10) }}{{ software_info(m.Value.software_id, m.Value.software_version) }} {{ ((m.Value.weight|diff_int / window_weight|diff_int)*100)|round(3) }}% {{ ((m.Value.weight|diff_int / window_weight|diff_int) * (pool.SideChain.Difficulty|diff_int / pool.SideChain.BlockTime))|si_units(3) }}H/s {{ m.Value.shares.Total() }} block(s) +{{ m.Value.uncles.Total() }} uncle(s) {{ m.Value.shares.String() }}
{{ m.Value.uncles.String() }}
{% endblock %}