-
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
492e4fd
commit 1545073
Showing
1 changed file
with
59 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,59 @@ | ||
import { manualCliff, manualLinear, manualStep } from "../adapters/manual"; | ||
import { Protocol } from "../types/adapters"; | ||
import { periodToSeconds } from "../utils/time"; | ||
|
||
const chain = "ethereum"; | ||
const address = "0xb0ffa8000886e57f86dd5264b9582b2ad87b2b91"; | ||
const start = 1680480000; | ||
const total = 1e10; | ||
|
||
const altlayer: Protocol = { | ||
"Guardian Nodes": manualStep( | ||
start, | ||
periodToSeconds.year, | ||
4, | ||
(total * 0.051) / 4, | ||
), | ||
"Community & Launch": [ | ||
manualCliff(start, total * 0.11), | ||
manualCliff(start + periodToSeconds.months(4), total * 0.06), | ||
], | ||
"Ecosystem & Incubation": [ | ||
manualCliff(start, total * 0.05), | ||
manualStep(start, periodToSeconds.year, 4, (total * 0.26) / 4), | ||
], | ||
"Core Contributors": [ | ||
manualCliff(start + periodToSeconds.year, total * 0.06), | ||
manualCliff(start + periodToSeconds.years(2), total * 0.03), | ||
manualCliff(start + periodToSeconds.years(3), total * 0.03), | ||
], | ||
"Strategic Network Participants": manualStep( | ||
start, | ||
periodToSeconds.year, | ||
4, | ||
(total * 0.116) / 4, | ||
), | ||
"Foundation Treasury": [ | ||
manualCliff(start, total * 0.02), | ||
manualLinear(start, start + periodToSeconds.months(50), total * 0.213), | ||
], | ||
meta: { | ||
sources: ["https://wormhole.com/blog/wormhole-w-tokenomics"], | ||
token: `${chain}:${address}`, | ||
notes: [ | ||
`Data has been inferred from the graph shown in the source material.`, | ||
], | ||
protocolIds: ["1541"], | ||
}, | ||
categories: { | ||
insiders: [ | ||
"Guardian Nodes", | ||
"Ecosystem & Incubation", | ||
"Core Contributors", | ||
"Strategic Network Participants", | ||
], | ||
airdrop: ["Community & Launch"], | ||
noncirculating: ["Foundation Treasury"], | ||
}, | ||
}; | ||
export default altlayer; |