Skip to content

Commit

Permalink
Updated StarkNet protocol for correct unlock schedule
Browse files Browse the repository at this point in the history
  • Loading branch information
realdealshaman committed Jun 21, 2024
1 parent 5e59079 commit 95e13d9
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions protocols/starknet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ const starknet: Protocol = {
manualStep(
monthlyReleaseStart,
periodToSeconds.month,
31,
remainingEachAfterCliffs / 31,
80,
remainingEachAfterCliffs / 80,
), // Distribute the remaining allocation
],
Investors: [
Expand All @@ -78,8 +78,8 @@ const starknet: Protocol = {
manualStep(
monthlyReleaseStart,
periodToSeconds.month,
31,
remainingEachAfterCliffs / 31,
80,
remainingEachAfterCliffs / 80,
), // Distribute the remaining allocation
],
meta: {
Expand Down Expand Up @@ -107,3 +107,5 @@ const starknet: Protocol = {
};

export default starknet;


0 comments on commit 95e13d9

Please sign in to comment.