{% 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_solo = (diff_uint(pool.MainChain.Difficulty) / (hashrate * magnitude)) %} {% for e in efforts %} {% endfor %}
P2Pool Difficulty
{{ diff_uint(pool.SideChain.Difficulty)|si_units(2) }}
P2Pool Hashrate
{{ diff_hashrate(pool.SideChain.Difficulty, pool.SideChain.BlockTime)|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.BlockTime)|si_units(2) }}H/s
P2Pool Block Mean
{{ time_duration_long(diff_uint(pool.MainChain.Difficulty) / diff_hashrate(pool.SideChain.Difficulty, pool.SideChain.BlockTime)) }}
Your Solo Block Mean
{{ time_duration_long(between_solo) }}
 
Your Estimated Daily Reward
{{ monero_to_xmr(estimated_reward_per_day) }} XMR
 
Found Effort Found Chance P2Pool Estimate Solo Estimate
{{ e.Effort|round(2) }}% {{ e.Probability|round(5) }}% {{ time_duration_long(e.Between) }} {{ time_duration_long(e.BetweenSolo) }}
{% endif %} {% endblock %}