{% extends "base.html" %} {% block title %} - Weekly Miners{% endblock %} {% block content %}
This is a list of the miners that have shares in the last 28 full windows, or about seven days.
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(4) }}% | {{ ((m.Value.weight|diff_int / window_weight|diff_int) * (pool.SideChain.Difficulty|diff_int / pool.SideChain.BlockTime))|si_units(2) }}H/s | {{ m.Value.shares.Total() }} block(s) +{{ m.Value.uncles.Total() }} uncle(s) |
{{ m.Value.shares.String() }}
{{ m.Value.uncles.String() }}
|