{% extends "base.html" %} {% block content %}
{% if refresh %} Autorefresh is ON ({{ refresh }} s) {% else %} Autorefresh is OFF {% endif %}

P2Pool statistics

P2Pool Height P2Pool Hashrate Monero Height Monero Hashrate
{{ pool.sidechain.height }} {{ diff_hashrate(pool.sidechain.difficulty, pool.sidechain.block_time)|si_units(2) }}H/s {{ pool.mainchain.height }} {{ diff_hashrate(pool.mainchain.difficulty, pool.mainchain.block_time)|si_units(2) }}H/s
 
P2Pool Difficulty P2Pool Monero % Monero Difficulty Blocks Found
{{ diff_uint(pool.sidechain.difficulty)|si_units(2) }} {{ ((diff_hashrate(pool.sidechain.difficulty, pool.sidechain.block_time) / diff_hashrate(pool.mainchain.difficulty, pool.mainchain.block_time))*100)|round(2) }}% {{ diff_uint(pool.mainchain.difficulty)|si_units(2) }} {{ pool.sidechain.found }}
 
Miners Known Average Effort Block Found Frequency Last Found Block
{{ pool.sidechain.miners }} {{ pool.sidechain.effort.average|round(2) }}% {{ time_duration_long(diff_uint(pool.mainchain.difficulty) / diff_hashrate(pool.sidechain.difficulty, pool.sidechain.block_time)) }} {{ time_elapsed_short(blocks_found[0].timestamp) }}
 
Window Miners Current Effort Window Blocks Last Share
{{ pool.sidechain.window.miners }} {{ pool.sidechain.effort.current|round(2) }}% {{ pool.sidechain.window.blocks }} blocks (+{{ pool.sidechain.window.uncles }} uncles) {{ time_elapsed_short(pool.sidechain.timestamp) }}

Lookup miner statistics


[Average share time calculator]

[Current Window Miners]

[Weekly Miners]


Recent Monero blocks found by P2Pool miners

{% for b in blocks_found %} {% if b.parent.height is defined %} {% else %} {% endif %} {% if attribute(pool.sidechain.effort.last, b.main.id) is defined %} {% else %} {% endif %} {% if b.miner_alias != "" %} {% else %} {% endif %} {% endfor %}
Monero Height P2Pool Height Age [h:m:s] Effort Found by Total Reward Outputs Coinbase Transaction Coinbase Tx Private Key
{{ b.main.height }} {{ b.height }}* {{ b.height }} {{ date_diff_short(b.timestamp) }} {{ attribute(pool.sidechain.effort.last, b.main.id)|round(2) }}% unknown{{ 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 }}
[show more found blocks]

Blocks found during last day

{{ blocks_found_position }}

Recent P2Pool shares found

{% for s in shares %} {% if s.miner_alias != "" %} {% else %} {% endif %} {% endfor %}
P2Pool Height P2Pool Id Monero Height Age [h:m:s] Found by Valuation
{{ s.height }} {{ s.id|shorten(10) }} {{ s.main.height }} {{ date_diff_short(s.timestamp) }}{{ s.miner_alias|shorten(10) }}{{ s.miner|shorten(10) }} {% if s.parent is defined %} {{ 100 - pool.sidechain.uncle_penalty }}% (uncle) {% else %} 100% {% if (s.uncles is defined) and s.uncles|length > 0 %} + {{ pool.sidechain.uncle_penalty }}% of {{ s.uncles|length }} uncle(s) {% endif %} {% endif %}
{% endblock %}