Skip to content

Commit

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

const total: number = 1e9;
const start: number = 1707264000;

const navi: Protocol = {
Team: manualLinear(
start + periodToSeconds.months(6),
start + periodToSeconds.months(30),
total * 0.2,
),
Treasury: manualLinear(
start,
start + periodToSeconds.months(24),
total * 0.1,
),
"Liquidity Provision": manualCliff(start, total * 0.04),
"Public Sale": manualCliff(start, total * 0.012),
Marketing: manualLinear(
start + periodToSeconds.months(6),
start + periodToSeconds.months(24),
total * 0.03,
),
"Ecosystem & Airdrop": manualLinear(
start,
start + periodToSeconds.months(36),
total * 0.458,
),
"Investors & Advisors": manualLinear(
start + periodToSeconds.months(6),
start + periodToSeconds.months(24),
total * 0.16,
),
meta: {
notes: [],
sources: [
"https://naviprotocol.gitbook.io/navi-protocol-docs/dao-and-token/navx-tokenomics",
],
token: `coingecko:navi`,
protocolIds: ["3323", "5326"],
total,
},
categories: {
publicSale: ["Public Sale", "Liquidity Provision"],
farming: ["Ecosystem & Airdrop"],
insiders: ["Team", "Investors & Advisors", "Marketing"],
noncirculating: ["Treasury"],
},
};
export default navi;

0 comments on commit ed31014

Please sign in to comment.