These formulas show how we plan to split rewards, but the exact numbers like task weights, scoring rules, the boost cap, and the K parameter aren’t fixed. They’ll be proposed, tested, and ultimately decided by community votes, then adjusted over time as we learn what’s fairest and most effective.
Payout Formula with Examples:
Let epoch revenue be R in SOL or USDC.
Each task i has weight W_i.
Each user u has score S_u,i in task i.
Stake boost for user u is B_u = min(1 + sqrt(staked_ORG_u) / K, 1.25)
Task pool: Pool_i = R * W_i / sum(W)
User share inside task: Payout_u,i = Pool_i * (S_u,i * B_u) / sum(S * B)
Example
R = 2,000 USDC
Two tasks with weights 9 and 3 so pools are 1,500 and 500
In task 1 you have score 80 and boost 1.10
Sum of all scores times boosts in task 1 is 800
Your payout is 1,500 * (80 * 1.10) / 800 = 165 USDC