{% extends "base.html" %} {% block title %} - Average Share Time Calculator{% endblock %} {% block content %}

Average Share Time Calculator

This tool calculates your average expected time between shares on the pool at current difficulty.
Do note this time will vary (can get shares sooner, or later, even way later), depending on your luck, and changing difficulty of the pool due to increase / reductions in hashrate.
For lower hashrate, this average is what statistically will be achieved long term.


{% if hashrate > 0 %}
{% set between = (diff_uint(pool.sidechain.difficulty) / (hashrate * magnitude)) %} {% set between_main = (diff_uint(pool.mainchain.difficulty) / (hashrate * magnitude)) %}
P2Pool Difficulty
{{ diff_uint(pool.sidechain.difficulty)|si_units(2) }}
P2Pool Hashrate
{{ diff_hashrate(pool.sidechain.difficulty, pool.sidechain.block_time)|si_units(2) }}H/s
Your Hashrate
{{ (hashrate * magnitude)|si_units(2) }}H/s
Your Share Mean
{{ time_duration_long(between) }}
 
Monero Difficulty
{{ diff_uint(pool.mainchain.difficulty)|si_units(2) }}
Monero Hashrate
{{ diff_hashrate(pool.mainchain.difficulty, pool.mainchain.block_time)|si_units(2) }}H/s
P2Pool Block Mean
{{ time_duration_long(diff_uint(pool.mainchain.difficulty) / diff_hashrate(pool.sidechain.difficulty, pool.sidechain.block_time)) }}
Your Solo Block Mean
{{ time_duration_long(between_main) }}
{% endif %} {% endblock %}