From 95e13d9fd56e994019e821865ebd000596062afb Mon Sep 17 00:00:00 2001 From: realdealshaman Date: Fri, 21 Jun 2024 04:12:35 +0100 Subject: [PATCH] Updated StarkNet protocol for correct unlock schedule --- protocols/starknet.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/protocols/starknet.ts b/protocols/starknet.ts index 44a5e22..82f6eb2 100644 --- a/protocols/starknet.ts +++ b/protocols/starknet.ts @@ -68,8 +68,8 @@ const starknet: Protocol = { manualStep( monthlyReleaseStart, periodToSeconds.month, - 31, - remainingEachAfterCliffs / 31, + 80, + remainingEachAfterCliffs / 80, ), // Distribute the remaining allocation ], Investors: [ @@ -78,8 +78,8 @@ const starknet: Protocol = { manualStep( monthlyReleaseStart, periodToSeconds.month, - 31, - remainingEachAfterCliffs / 31, + 80, + remainingEachAfterCliffs / 80, ), // Distribute the remaining allocation ], meta: { @@ -107,3 +107,5 @@ const starknet: Protocol = { }; export default starknet; + +