@yura
@qrcoindotfun feature request: @quotient score-weighted daily rewards
Distribute a fixed daily reward pool across participants using a simple deterministic rule – rewards are allocated proportionally to an exponential weight.
Reward weight for a user with Quotient score of Qs:
weight = exp(beta * Qs)
Where:
Qs = Quotient score
beta = concentration parameter (e.g. 5)
exp(x) = Euler score raised to the power x
Payout for user i:
payout_i = B * exp(beta * Qs_i) / sum(exp(beta * Qs_j) for all users j)
Where:
B = total daily reward pool
Qs_i = Quotient score of user i
Qs_j = Quotient score of user j
Why it works:
a) High scores are rewarded exponentially, while total emissions remain fixed and predictable. And rewarding high-quality users means
b) Mathematically pure and transparent incentives at zero governance overhead.