Referral Earnings
When you refer a customer and that customer pays the founder, the system mints tokens to you based on the revenue share parameter α, the size of the revenue event, and the current token price P. Formula:
How it works, step by step:
- You refer a customer to the founder’s software product.
- The customer pays the founder — a revenue event of
dRdollars is recorded. - The system calculates your tokens:
floor(α × dR ÷ P). - That many tokens are minted and credited to your account.
- α = 0.20, dR = 1.00
- tokens = floor(0.20 × 250 ÷ 1.00) = floor(50.00) = 50 tokens
- α = 0.20, dR = 3.00
- tokens = floor(0.20 × 250 ÷ 3.00) = floor(16.67) = 16 tokens
Treasury Grants
Before revenue exists, a founder can grant tokens from their pre-mint treasury to contributors who are helping build the foundation — before there’s anything to refer.- You receive tokens directly, with no revenue event required.
- Your tokens immediately participate in all future distributions once revenue begins.
- Treasury grants are entirely at the founder’s discretion.
Why Tokens Can’t Be Purchased
Vibe Tokens are intentionally not for sale. This is not a feature that might change — it is a legal design decision. Selling tokens for money would constitute a securities offering, which requires regulatory registration, disclosures, and compliance infrastructure that most small software businesses cannot support. Earning tokens through referrals and contributions is compensation for labor — the same legal category as a commission, a bonus, or a contractor fee. That distinction protects both the founder and the contributors. If someone offers to sell you Vibe Tokens directly, that is outside the system design and carries legal risk for the seller.Tokens are whole integers. The
floor() in the formula means any fractional result is discarded — not rounded, discarded. A calculation that yields 16.99 produces 16 tokens, not 17. At very high prices or very small revenue events, the calculation may produce 0 tokens. If α × dR is less than P, you earn nothing from that event.