From 1a877f51cff91af112474f1b5619b59b2d6f1782 Mon Sep 17 00:00:00 2001 From: waynebruce0x Date: Wed, 4 Dec 2024 12:38:11 +0000 Subject: [PATCH] patch token --- protocols/celestia.ts | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/protocols/celestia.ts b/protocols/celestia.ts index f1048dc..eb16524 100644 --- a/protocols/celestia.ts +++ b/protocols/celestia.ts @@ -4,15 +4,15 @@ import { periodToSeconds } from "../utils/time"; const start = 1698760800; // Date and time (GMT): Tuesday, 31 October 2023 14:00:00 const qty = 1000000000; //1b -const qtyEcosystem = 268000000 -const qtyCORE = 176000000 -const qtySEED = 159000000 -const qtyAB = 197000000 +const qtyEcosystem = 268000000; +const qtyCORE = 176000000; +const qtySEED = 159000000; +const qtyAB = 197000000; const celestia: Protocol = { "Public Allocation": manualCliff(start, qty * 0.2), "R&D & Ecosystem": [ - manualCliff(start, qtyEcosystem * 0.25), // 25% + manualCliff(start, qtyEcosystem * 0.25), // 25% manualStep( start + periodToSeconds.year, periodToSeconds.day, @@ -27,10 +27,10 @@ const celestia: Protocol = { periodToSeconds.day, 1095, (qtyCORE * 0.67) / 1095, - ), // + ), // ], "Early Backers Seed": [ - manualCliff(start + periodToSeconds.year, qtySEED * 0.33), // 33% + manualCliff(start + periodToSeconds.year, qtySEED * 0.33), // 33% manualStep( start + periodToSeconds.year, periodToSeconds.day, @@ -39,7 +39,7 @@ const celestia: Protocol = { ), // ], "Early Backers Series A&B": [ - manualCliff(start + periodToSeconds.year, qtyAB * 0.33), // 25% + manualCliff(start + periodToSeconds.year, qtyAB * 0.33), // 25% manualStep( start + periodToSeconds.year, periodToSeconds.day, @@ -51,15 +51,19 @@ const celestia: Protocol = { notes: [ `Celestia’s 1 billion TIA supply at genesis will be subject to several different unlock schedules. All tokens, locked or unlocked, may be staked, but staking rewards are unlocked upon receipt.`, ], - token: "ethereum:-", + token: "coingecko:celestia", sources: ["https://docs.celestia.org/learn/staking-governance-supply/"], - protocolIds: ["3562"], + protocolIds: ["3562"], }, categories: { - insiders: ["Initial Core Contributors", "Early Backers Seed", "Early Backers Series A&B"], + insiders: [ + "Initial Core Contributors", + "Early Backers Seed", + "Early Backers Series A&B", + ], publicSale: [], airdrop: ["Public Allocation"], - farming: ["R&D & Ecosystem"] + farming: ["R&D & Ecosystem"], }, }; -export default celestia; \ No newline at end of file +export default celestia;