Skip to content

Commit

Permalink
aethir
Browse files Browse the repository at this point in the history
  • Loading branch information
waynebruce0x committed Jan 6, 2025
1 parent 1a877f5 commit 3819f37
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions protocols/aethir.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
import { manualCliff, manualLinear } from "../adapters/manual";
import { Protocol } from "../types/adapters";
import { periodToSeconds } from "../utils/time";

const start = 1718150400;
const total = 42e9;

const aethir: Protocol = {
Team: manualLinear(
start + periodToSeconds.months(18),
start + periodToSeconds.months(54),
total * 0.125,
),
Airdrop: [
manualCliff(start, total * 0.015),
manualCliff(start + periodToSeconds.months(8), total * 0.015),
manualCliff(start + periodToSeconds.months(16), total * 0.03),
],
Investors: manualLinear(
start + periodToSeconds.year,
start + periodToSeconds.years(3),
total * 0.115,
),
Advisors: manualLinear(
start + periodToSeconds.year,
start + periodToSeconds.years(3),
total * 0.05,
),
"Checkers & Compute Providers": manualLinear(
start,
start + periodToSeconds.years(4),
total * 0.5,
),
Ecosystem: [
manualCliff(start, total * 0.075),
manualLinear(start, start + periodToSeconds.years(2), total * 0.075),
],
meta: {
notes: [
`No Advisors unlock schedule is given, here we have assumed it is the same as the Investors unlock schedule.`,
`An unknown proportion of Checkers & Compute Providers allocation is released according to Reward Schedules. Here we have used the same 4 year linear unlock as the rest of this allocation.`,
],
token: "coingecko:aethir",
sources: ["https://docs.aethir.com/aethir-tokenomics/token-overview"],
protocolIds: ["5580"],
},
categories: {
insiders: ["Team", "Investors", "Advisors"],
airdrop: ["Airdrop"],
noncirculating: ["Ecosystem"],
farming: ["Checkers & Compute Providers"],
},
};

export default aethir;

0 comments on commit 3819f37

Please sign in to comment.