From a766914f7ea60c9f4db8eb89fa734ed5edad25e3 Mon Sep 17 00:00:00 2001 From: waynebruce0x Date: Wed, 4 Oct 2023 13:11:37 +0100 Subject: [PATCH] fix start times --- protocols/kwenta.ts | 2 +- protocols/tangible.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/protocols/kwenta.ts b/protocols/kwenta.ts index cb5d247..0597c59 100644 --- a/protocols/kwenta.ts +++ b/protocols/kwenta.ts @@ -2,7 +2,7 @@ import { manualCliff } from "../adapters/manual"; import { CliffAdapterResult, Protocol } from "../types/adapters"; import { periodToSeconds } from "../utils/time"; -const start = 0; +const start = 1668038400; const qty = 313373; const inflation = (portion: number) => { diff --git a/protocols/tangible.ts b/protocols/tangible.ts index b8d659a..da1b9c3 100644 --- a/protocols/tangible.ts +++ b/protocols/tangible.ts @@ -1,9 +1,9 @@ import { Protocol } from "../types/adapters"; -import { manualCliff, manualLinear, manualStep } from "../adapters/manual"; +import { manualCliff, manualLinear } from "../adapters/manual"; import { periodToSeconds } from "../utils/time"; const qty = 33333333; -const start = 0; +const start = 1651705200; const tangible: Protocol = { "Instant Liquidity Engine": manualCliff(start, qty * 0.0038),