{{ extends "global/Page.html" }} {{ block title }} Examples {{ endblock }} {{ block content }}
The following examples illustrate how payoffs are calculated.
Leader Payoffs
Example:
The Leader receives half of the total contributions to the Group Account. This payment does not come out of the Group Account.
If total contributions = 20 tokens, the Leader receives 20 / 2 = 10 tokens.
Group Member Payoffs
{% for ex in examples %}Example {{ ex.num }}:
You allocate {{ ex.your_contribution }} tokens and the other participants allocate {{ ex.others.0 }}, {{ ex.others.1 }}, and {{ ex.others.2 }} tokens.
Total contribution: {{ ex.your_contribution }} + {{ ex.others.0 }} + {{ ex.others.1 }} + {{ ex.others.2 }} = {{ ex.total }} tokens
{{ ex.total }} × 1.8 = {{ ex.multiplied }} tokens, so each member receives {{ ex.multiplied }} / 4 = {{ ex.share }} tokens
You keep {{ ex.kept }} tokens, so your total payoff is: {{ ex.kept }} + {{ ex.share }} = {{ ex.payoff }} tokens
{% endfor %}