Skip to content

Commit

Permalink
Corrected the Public Sale and Community tranches according to the lat…
Browse files Browse the repository at this point in the history
…est figures.
  • Loading branch information
jplodge-pro committed Nov 4, 2024
1 parent a894882 commit f2135b1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions protocols/cbl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,17 @@ const cbl: Protocol = {
// 26% of Total Allocation
// 6 month cliff, followed by a 24-month daily linear vesting
"Private Sale": manualStep(TGE + periodToSeconds.month * 7, periodToSeconds.month, 24, (TOTAL_SUPPLY * 0.26) / 24),
// 3.0% of Total Allocation
// 1.5% of Total Allocation
// 30% on TGE, followed by a 6-month daily linear vesting
"Public Sale": [
manualCliff(TGE, TOTAL_SUPPLY * 0.03 * 0.3),
manualStep(TGE + periodToSeconds.month, periodToSeconds.month, 6, (TOTAL_SUPPLY * 0.03 * 0.7) / 6),
manualCliff(TGE, TOTAL_SUPPLY * 0.015 * 0.3),
manualStep(TGE + periodToSeconds.month, periodToSeconds.month, 6, (TOTAL_SUPPLY * 0.015 * 0.7) / 6),
],
// 30% of Total Allocation
// 31.5% of Total Allocation
// 15% on TGE, followed by a 60-month daily linear vesting
"Community Growth & Rewards": [
manualCliff(TGE, TOTAL_SUPPLY * 0.3 * 0.15),
manualStep(TGE + periodToSeconds.month, periodToSeconds.month, 60, (TOTAL_SUPPLY * 0.3 * 0.85) / 60),
manualCliff(TGE, TOTAL_SUPPLY * 0.315 * 0.15),
manualStep(TGE + periodToSeconds.month, periodToSeconds.month, 60, (TOTAL_SUPPLY * 0.315 * 0.85) / 60),
],
// 20% of Total Allocation
// 10% on TGE, followed by a 60-month daily linear vesting
Expand Down

0 comments on commit f2135b1

Please sign in to comment.