Skip to content

Commit

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

const start = 0;
const total = 1e10;

const oasys: Protocol = {
"Ecosystem & Community": manualLinear(
start,
start + periodToSeconds.months(70),
total * 0.38,
),
"Staking Rewards": manualLinear(
start,
start + periodToSeconds.months(72),
total * 0.21,
),
Development: manualLinear(
start + periodToSeconds.months(6),
start + periodToSeconds.months(30),
total * 0.15,
),
"Early Backers": manualLinear(
start + periodToSeconds.months(12),
start + periodToSeconds.months(36),
total * 0.14,
),
Foundation: manualLinear(
start + periodToSeconds.months(12),
start + periodToSeconds.months(36),
total * 0.12,
),
meta: {
sources: ["https://docs.oasys.games/docs/whitepaper/tokenomics"],
token: "coingecko:oasys",
notes: [
`In this analysis we have inferred from the chart that Staking Rewards and Ecosystem & Community sections will use a linear unlock schedule.`,
],
protocolIds: ["4649"],
},
categories: {
farming: ["Ecosystem & Community", "Staking Rewards"],
insiders: ["Development", "Early Backers"],
noncirculating: ["Foundation"],
},
};
export default oasys;

0 comments on commit 9231ed4

Please sign in to comment.