Skip to content

Commit

Permalink
add ondo
Browse files Browse the repository at this point in the history
  • Loading branch information
realdealshaman committed Jan 19, 2024
1 parent fc6878b commit ff2c06a
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions protocols/ondo.ts
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;

0 comments on commit ff2c06a

Please sign in to comment.