Skip to content

Commit

Permalink
saga
Browse files Browse the repository at this point in the history
  • Loading branch information
waynebruce0x committed May 20, 2024
1 parent c63701a commit bd63216
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions protocols/saga.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
import { manualCliff, manualLinear } from "../adapters/manual";
import { Protocol } from "../types/adapters";
import { periodToSeconds } from "../utils/time";

const start = 0;
const total = 1e8;

const saga: Protocol = {
"Core Contributors": [
manualCliff(start + periodToSeconds.year, total * 0.05),
manualLinear(
start + periodToSeconds.year,
start + periodToSeconds.years(3),
total * 0.15,
),
],
Fundraising: [
manualCliff(start + periodToSeconds.year, total * 0.05),
manualLinear(
start + periodToSeconds.year,
start + periodToSeconds.years(3),
total * 0.15,
),
],
"Ecosystem & Development": [],
"Foundation & Reserve": [],
Airdrops: [
manualCliff(start, total * 0.06),
// manualCliff(0, total * 0.04), // 2-6
// manualCliff(0, total * 0.1), // 6
],
meta: {
token: `coingecko:saga-2`,
sources: [
"https://medium.com/sagaxyz/saga-mainnet-technical-launch-plan-c084b1426acc",
],
notes: [
`14% of total supply is allocated to future airdrops with no available information. Therefore this has been excluded from our analysis.`,
],
protocolIds: ["4639"],
},
categories: {
airdrop: ["Airdrops"],
insiders: ["Core Contributors", "Fundraising", "Ecosystem & Development"],
noncirculating: ["Foundation & Reserve"],
},
};

export default saga;

0 comments on commit bd63216

Please sign in to comment.