Skip to content

Commit

Permalink
remove unneeded entries
Browse files Browse the repository at this point in the history
  • Loading branch information
realdealshaman committed Mar 15, 2024
1 parent b8c6d1d commit ae1f4c8
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions protocols/ondo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@ 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)
manualCliff(publicLaunchDate, (totalSupply * 0.019884411) * 0.90),
manualLinear(publicLaunchDate, publicLaunchDate + periodToSeconds.month * 12, (totalSupply * 0.019884411) * 0.10020267635788)
],
"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)

manualStep(publicLaunchDate + periodToSeconds.month * 12, periodToSeconds.month * 12, 4, 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)

manualStep(publicLaunchDate + periodToSeconds.month * 12, periodToSeconds.month * 12, 4, totalSupply * 0.1290246044 * 0.25)
],


Expand Down

0 comments on commit ae1f4c8

Please sign in to comment.