Skip to content

Commit

Permalink
patch token
Browse files Browse the repository at this point in the history
  • Loading branch information
waynebruce0x committed Dec 4, 2024
1 parent e3444f7 commit 1a877f5
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions protocols/celestia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand All @@ -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,
Expand All @@ -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;
export default celestia;

0 comments on commit 1a877f5

Please sign in to comment.