From ad6bcfa961d6f0bd9cd5d589656b8f78daf7be7a Mon Sep 17 00:00:00 2001 From: Daniel Salvadori Date: Mon, 25 Mar 2024 19:11:28 -0300 Subject: [PATCH] Fix Ondo unlock schedule --- protocols/ondo.ts | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/protocols/ondo.ts b/protocols/ondo.ts index 730ec8b..eb8f0e6 100644 --- a/protocols/ondo.ts +++ b/protocols/ondo.ts @@ -15,12 +15,10 @@ const ondo: Protocol = { manualStep(publicLaunchDate, periodToSeconds.month * 12, 5, totalSupply * 0.5210869545 * 0.76 / 5) ], "Protocol Development": [ - - manualStep(publicLaunchDate + periodToSeconds.month * 12, periodToSeconds.month * 12, 4, totalSupply * 0.33 * 0.25) + manualStep(publicLaunchDate, periodToSeconds.month * 12, 4, totalSupply * 0.33 * 0.25) ], "Private Sales": [ - - manualStep(publicLaunchDate + periodToSeconds.month * 12, periodToSeconds.month * 12, 4, totalSupply * 0.1290246044 * 0.25) + manualStep(publicLaunchDate, periodToSeconds.month * 12, 4, totalSupply * 0.1290246044 * 0.25) ], @@ -36,4 +34,4 @@ const ondo: Protocol = { }, }; -export default ondo; \ No newline at end of file +export default ondo;