From 6ca04b911ca696dc18dc590db4ba3fc8cb65c091 Mon Sep 17 00:00:00 2001 From: Austin Chen Date: Fri, 1 Apr 2022 08:59:17 -0700 Subject: [PATCH] Change launch time to 9am --- web/components/manaboard.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/components/manaboard.tsx b/web/components/manaboard.tsx index f17a712b..a5cc1540 100644 --- a/web/components/manaboard.tsx +++ b/web/components/manaboard.tsx @@ -255,8 +255,8 @@ function taxTransaction(options: { }): Transaction { const { holder, slot, value, createdTime } = options - const APRIL_FOOLS_PT = 1648796400000 - const elapsedMs = Date.now() - (createdTime || APRIL_FOOLS_PT) + const APRIL_FOOLS_9AM_PT = 1648828800000 + const elapsedMs = Date.now() - (createdTime || APRIL_FOOLS_9AM_PT) const elapsedHours = elapsedMs / 1000 / 60 / 60 const tax = elapsedHours * value * 0.25