Skip to content

Commit

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

const start = 1691971200;
const total = 1e10;

const sei: Protocol = {
"Private Sale": manualLinear(
start + periodToSeconds.year,
start + periodToSeconds.years(4),
total * 0.2,
),
"Binance Launchpool": manualCliff(start, total * 0.03),
Team: manualLinear(
start + periodToSeconds.year,
start + periodToSeconds.years(6),
total * 0.2,
),
Foundation: [
manualCliff(start, total * 0.02),
manualLinear(start, start + periodToSeconds.years(2), total * 0.07),
],
"Ecosystem Reserve": [
manualCliff(start, total * 0.13),
manualLog(
start,
start + periodToSeconds.years(7),
total * 0.4237,
periodToSeconds.month,
5,
false,
3,
),
],
meta: {
token: `coingecko:sei-network`,
notes: [
`Ecosystem Reserve schedule has been estimated based on the chart in the source material.`,
`Remaining Ecosystem Reserve tokens will continue to vest.`,
],
sources: [`https://www.binance.com/en/research/projects/sei`],
protocolIds: ["4664"],
},
categories: {
insiders: ["Private Sale", "Team", "Foundation"],
noncirculating: ["Ecosystem Reserve"],
publicSale: ["Binance Launchpool"],
},
};
export default sei;

0 comments on commit 433e637

Please sign in to comment.