This pool uses the following payout system: {if $GLOBAL.config.payout_system == 'prop'} Proportional (Prop)
The block reward is distributed among miners in proportion to the number of shares they submitted in a round. The expected reward per share depends on the number of shares already submitted in the round. {/if} {if $GLOBAL.config.payout_system == 'pplns'} Pay Per Last N Shares (PPLNS)
Block rewards are distributed among the last shares, disregarding round boundaries. In the accurate implementation, the number of shares is deter- mined so that their total will be a specified quantity of score (where the score of a share is the inverse of the difficulty). Most pools use a naive implementation based on a fixed number of shares or a fixed multiple of the difficulty. The share-variance can be reduced at the cost of increased maturity time, but there is no way to decrease the long-term pool-variance. {/if} {if $GLOBAL.config.payout_system == 'pps'} Pay Per Share (PPS)
Each share receives a fixed reward known in advance. This is the ultimate low- variance, low-maturity simple method, but has the highest risk for the operator, and hence lower expected returns than other methods and risk of collapse if not managed properly. {/if}