-
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
fc6878b
commit ff2c06a
Showing
1 changed file
with
39 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,39 @@ | ||
import { Protocol } from "../types/adapters"; | ||
import { manualLinear, manualCliff, manualStep } from "../adapters/manual"; | ||
import { periodToSeconds } from "../utils/time"; | ||
|
||
const totalSupply = 10_000_000_000; | ||
const publicLaunchDate = 1705536000; // UNIX timestamp for jan 18, 2024 | ||
|
||
const ondo: Protocol = { | ||
"Community Access Sale": [ | ||
manualCliff(publicLaunchDate, totalSupply * 0.019884411 * 0.90), | ||
manualLinear(publicLaunchDate, publicLaunchDate + periodToSeconds.month * 12, totalSupply * 0.019884411 * 0.10) | ||
], | ||
"Ecosystem Growth": [ | ||
manualCliff(publicLaunchDate, totalSupply * 0.5210869545 * 0.24), | ||
manualStep(publicLaunchDate, periodToSeconds.month * 12, 5, totalSupply * 0.5210869545 * 0.76 / 5) | ||
], | ||
"Protocol Development": [ | ||
manualCliff(publicLaunchDate + periodToSeconds.month * 12, totalSupply * 0.33 * 0.25), | ||
manualStep(publicLaunchDate + periodToSeconds.month * 12, periodToSeconds.month * 12, 5, totalSupply * 0.33 * 0.25) | ||
], | ||
"Private Sales": [ | ||
manualCliff(publicLaunchDate + periodToSeconds.month * 12, totalSupply * 0.1290246044 * 0.25), | ||
manualStep(publicLaunchDate + periodToSeconds.month * 12, periodToSeconds.month * 12, 5, totalSupply * 0.1290246044 * 0.25) | ||
], | ||
|
||
|
||
meta: { | ||
sources: ["https://blog.ondo.foundation/unlocking-ondo-a-proposal-from-the-ondo-foundation/"], | ||
token: "ethereum:0xfaba6f8e4a5e8ab82f62fe7c39859fa577269be3", | ||
protocolIds: ["2542"], | ||
}, | ||
categories: { | ||
publicSale: ["Community Access Sale"], | ||
noncirculating: ["Ecosystem Growth"], | ||
insiders: ["Private Sales","Protocol Development"] | ||
}, | ||
}; | ||
|
||
export default ondo; |