-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #91 from Define101/master
wip eigenlayer
- Loading branch information
Showing
1 changed file
with
50 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,50 @@ | ||
import { manualCliff, manualLinear, manualStep } from "../adapters/manual"; | ||
import { Protocol } from "../types/adapters"; | ||
import { periodToSeconds } from "../utils/time"; | ||
|
||
const start = 1715299260; // 10/05/2024 | ||
const total = 1.67e9; // Total Supply: 1.67 billion tokens | ||
const token = null; | ||
const chain = "ethereum"; | ||
|
||
const eigen: Protocol = { | ||
"Airdrop/Stakedrop": [ | ||
manualCliff(start, total * 0.05), | ||
manualStep(start + periodToSeconds.month * 3, periodToSeconds.month, 6, (total * 0.1) / 6), //assuming 6 | ||
], | ||
"Community Initiatives": manualCliff(start + periodToSeconds.year, total * 0.15), //no idea about durations here, assuming unlock after 1 year | ||
"Ecosystem": manualCliff(start + periodToSeconds.year, total * 0.15), //no idea about durations here, assuming unlock after 1 year | ||
"Investors": [ | ||
manualCliff(start + periodToSeconds.year, total * 0.295 / 4), | ||
manualLinear( | ||
start + periodToSeconds.year, | ||
start + periodToSeconds.years(3), | ||
(total * 0.295 * 3) / 4, | ||
), | ||
], | ||
"Early Contributors": [ | ||
manualCliff(start + periodToSeconds.year, total * 0.255 / 4), | ||
manualLinear( | ||
start + periodToSeconds.year, | ||
start + periodToSeconds.years(3), | ||
(total * 0.255 * 3) / 4, | ||
), | ||
], | ||
meta: { | ||
notes: [ | ||
"Airdrop/Stakedrop: Assuming there will be 6 seassons", | ||
"Community Initiatives: No information, assuming is locked for 1 year", | ||
"Ecosystem: No information, assuming is locked for 1 year", | ||
], | ||
token: `${chain}:${token}`, | ||
sources: ["https://docs.eigenfoundation.org/"], | ||
protocolIds: ["3107"], | ||
}, | ||
categories: { | ||
publicSale: ["Airdrop/Stakedrop"], | ||
insiders: ["Investors", "Early Contributors"], | ||
noncirculating: ["Community Initiatives", "Ecosystem"], | ||
}, | ||
}; | ||
|
||
export default eigen; |