Skip to main content

Founder Participation

Founder participation grants a time-limited right to participate in protocol fee distributions.

Purpose: bootstrapping infrastructure, audits, and early network operations. This does not provide ownership or control.

  • Pool cap: 500,000 OLYMP
  • Price: 10 USDT per 1 OLYMP
  • Per-wallet: 1,000 to 50,000 OLYMP
  • Duration: 5 years from start

Distributions are variable and depend on fee inflows. This is not an investment product and does not grant governance control.

Claims

Claims are pull-based and can be made in supported stablecoins or OLYMP if reserves exist.

Participation schedule (linear)

minX = 1,000
maxX = 50,000
minBP = 1 // 0.01%
maxBP = 50 // 0.5%
rateBP(x) = minBP + floor((x - minX) * (maxBP - minBP) / (maxX - minX))
shares = rateBP(x) * x

Clamp: if x < = minX => 1, if x >= maxX => 50.

Accounting model

  • ACC_SCALE = 1e24
  • accPerShare[token] += (amount * ACC_SCALE) / totalShares
  • pending(user, token) = shares[user] * accPerShare[token] / ACC_SCALE - rewardDebt[user][token]
  • Rounding dust remains in the contract.
  • If totalShares == 0, incoming fees are stored and applied once shares exist.

Time cutoff

Fee notifications revert after 5 years. Claims remain available for already accrued amounts.

Disclaimers

  • Founder Participation in Protocol Fees for Network Bootstrapping is optional.
  • Distributions are variable and may be zero.
  • No guaranteed returns and no governance/control rights.
  • This is not investment advice.