From 3122c156aee6a543d15a0524bd334846cde0016a Mon Sep 17 00:00:00 2001 From: 0xVeto <111819883+0xVeto@users.noreply.github.com> Date: Tue, 30 Jan 2024 13:29:52 +0000 Subject: [PATCH] Fix airdrop dates. Setting first step at 18.01.2023 --- protocols/ipor.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/protocols/ipor.ts b/protocols/ipor.ts index f34d08e..e99e39c 100644 --- a/protocols/ipor.ts +++ b/protocols/ipor.ts @@ -12,8 +12,8 @@ const ipor: Protocol = { "Core Team": manualLinear(TGE + periodToSeconds.day, TGE + periodToSeconds.day + periodToSeconds.year * 3, 20e6), "Investors": manualLinear(TGE + periodToSeconds.day, TGE + periodToSeconds.day + periodToSeconds.year * 3, 11.85e6), "airdrop": [ - manualStep(TGE + periodToSeconds.year + 17 * periodToSeconds.day, periodToSeconds.day, 1, 85200), - manualLinear(TGE + periodToSeconds.year + 17 * periodToSeconds.day, TGE + periodToSeconds.year + 17 * periodToSeconds.day + periodToSeconds.month * 6, 305000), + manualStep(TGE + periodToSeconds.month + 17 * periodToSeconds.day, periodToSeconds.day, 0, 85200), + manualLinear(TGE + periodToSeconds.month + 17 * periodToSeconds.day, TGE + periodToSeconds.month + 17 * periodToSeconds.day + periodToSeconds.month * 6, 305000), ], meta: { notes: [ @@ -32,4 +32,4 @@ const ipor: Protocol = { }, }; -export default ipor; \ No newline at end of file +export default ipor;