-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9aefa34
commit 9231ed4
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |