{% extends "base.html" %} {% block title %} - Current Window Miners{% endblock %} {% block content %}
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.
# | Miner | Software | Pool share % | Estimated Hashrate | Shares found | Shares position | |
---|---|---|---|---|---|---|---|
{{ i+1 }} | {% if m.Value.alias != "" %}{{ m.Value.alias|shorten(10) }} | {% else %}{{ m.Key|shorten(10) }} | {% endif %}{{ 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() }}
|