-
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
1c492d6
commit 47135cf
Showing
1 changed file
with
65 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,65 @@ | ||
import { manualCliff, manualLinear, manualStep } from "../adapters/manual"; | ||
import { Protocol } from "../types/adapters"; | ||
import { periodToSeconds } from "../utils/time"; | ||
|
||
const start = 1713312000; | ||
const total = 1e8; | ||
|
||
const saga: Protocol = { | ||
Airdrop: manualCliff(start, total * 0.03), | ||
Liquidity: manualCliff(start, total * 0.0627), | ||
"Ecosystem Development": manualLinear( | ||
start, | ||
start + periodToSeconds.years(4), | ||
total * 0.295, | ||
), | ||
"Community Growth": manualLinear( | ||
start, | ||
start + periodToSeconds.years(4), | ||
total * 0.1267, | ||
), | ||
"Core Contributors": [ | ||
manualCliff(start + periodToSeconds.year, total * 0.2525 * 0.25), | ||
manualStep( | ||
start + periodToSeconds.year, | ||
periodToSeconds.months(6), | ||
4, | ||
(total * 0.2525 * 0.75) / 4, | ||
), | ||
], | ||
Investors: [ | ||
manualCliff(start + periodToSeconds.year, (total * 0.2006) / 3), | ||
manualStep( | ||
start + periodToSeconds.year, | ||
periodToSeconds.months(6), | ||
4, | ||
(total * 0.2006 * 2) / 12, | ||
), | ||
], | ||
Advisors: [ | ||
manualCliff(start, 625000), | ||
manualCliff(start + periodToSeconds.year, 875000), | ||
manualStep( | ||
start + periodToSeconds.year, | ||
periodToSeconds.months(6), | ||
4, | ||
437500, | ||
), | ||
], | ||
meta: { | ||
token: `coingecko:omni-network`, | ||
sources: ["https://docs.omni.network/learn/omni/token/"], | ||
notes: [ | ||
`The source material uses a 4 year linear unlock for Ecosystem Development and Community Growth allocations, in this analysis we have used the same.`, | ||
], | ||
protocolIds: ["4609"], | ||
}, | ||
categories: { | ||
insiders: ["Core Contributors", "Investors", "Advisors"], | ||
airdrop: ["Airdrop"], | ||
publicSale: ["Liquidity"], | ||
noncirculating: ["Ecosystem Development", "Community Growth"], | ||
}, | ||
}; | ||
|
||
export default saga; |