Skip to content

Commit

Permalink
final celestia
Browse files Browse the repository at this point in the history
  • Loading branch information
Define101 committed Sep 26, 2023
1 parent 0f0d03f commit 79c2dcf
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions protocols/celestia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,36 +15,36 @@ const celestia: Protocol = {
manualCliff(start, qtyEcosystem * 0.25), // 25%
manualStep(
start + periodToSeconds.year,
periodToSeconds.month,
36,
(qtyEcosystem * 0.75) / 36,
), // monthly steps for the next 3 years
periodToSeconds.day,
1095,
(qtyEcosystem * 0.75) / 1095,
), //
],
"Initial Core Contributors": [
manualCliff(start + periodToSeconds.year, qtyCORE * 0.33), // 33%
manualStep(
start + periodToSeconds.year,
periodToSeconds.month,
36,
(qtyCORE * 0.67) / 36,
), // monthly steps for the next 3 years
periodToSeconds.day,
1095,
(qtyCORE * 0.67) / 1095,
), //
],
"Early Backers Seed": [
manualCliff(start + periodToSeconds.year, qtySEED * 0.33), // 33%
manualStep(
start + periodToSeconds.year,
periodToSeconds.month,
24,
(qtySEED * 0.67) / 24,
), // monthly steps for the next 3 years
periodToSeconds.day,
365,
(qtySEED * 0.67) / 365,
), //
],
"Early Backers Series A&B": [
manualCliff(start + periodToSeconds.year, qtyAB * 0.33), // 25%
manualStep(
start + periodToSeconds.year,
periodToSeconds.month,
24,
(qtyAB * 0.67) / 24,
periodToSeconds.day,
365,
(qtyAB * 0.67) / 365,
), // monthly steps for the next 3 years
],
meta: {
Expand Down

0 comments on commit 79c2dcf

Please sign in to comment.