-
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
4f7fe79
commit 6308375
Showing
1 changed file
with
60 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,60 @@ | ||
import { balance, latest } from "../adapters/balance"; | ||
import { manualLinear } from "../adapters/manual"; | ||
import { Protocol } from "../types/adapters"; | ||
import { periodToSeconds } from "../utils/time"; | ||
|
||
const start = 1709679600; | ||
const total = 1e9; | ||
const token = "0x57e114b691db790c35207b2e685d4a43181e6061"; | ||
const chain = "ethereum"; | ||
|
||
const etherfi: Protocol = { | ||
"Core Contributors": manualLinear( | ||
start + periodToSeconds.year, | ||
start + periodToSeconds.years(3), | ||
total * 0.2326, | ||
), | ||
Treasury: () => | ||
balance( | ||
["0x6329004E903B7F420245E7aF3f355186f2432466"], | ||
token, | ||
chain, | ||
"etherfi", | ||
0, | ||
), | ||
// "User Airdrops": () => balance(), | ||
// Partnerships: () => balance(), | ||
Investors: manualLinear( | ||
start + periodToSeconds.year, | ||
start + periodToSeconds.years(2), | ||
total * 0.325, | ||
), | ||
meta: { | ||
token: `${chain}:${token}`, | ||
notes: [ | ||
`Details of the User Airdrops and Partnerships sections wallet addresses and schedules couldn't be found so they've been excluded in this analysis.`, | ||
], | ||
sources: [ | ||
`https://etherfi.medium.com/announcing-ethfi-the-ether-fi-governance-token-8cae7327763a`, | ||
], | ||
protocolIds: ["4133"], | ||
// incompleteSections: [ | ||
// { | ||
// allocation: total * 0.15, | ||
// key: "Foundation", | ||
// lastRecord: () => latest("ethena", 0), | ||
// }, | ||
// { | ||
// allocation: total * 0.3, | ||
// key: "Ecosystem Development", | ||
// lastRecord: () => latest("ethena", 0), | ||
// }, | ||
// ], | ||
}, | ||
categories: { | ||
insiders: ["Investors", "Core Contributors"], | ||
noncirculating: ["Foundation", "Ecosystem Development"], | ||
}, | ||
}; | ||
|
||
export default etherfi; |