-
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
f6574f0
commit 415bc59
Showing
1 changed file
with
38 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,38 @@ | ||
import { Protocol } from "../types/adapters"; | ||
import { manualCliff, manualLinear, manualStep } from "../adapters/manual"; | ||
import { periodToSeconds } from "../utils/time"; | ||
|
||
const qty = 33333333; | ||
const start = 0; | ||
|
||
const tangible: Protocol = { | ||
"Instant Liquidity Engine": manualCliff(start, qty * 0.0038), | ||
"Listings & Liquidity": manualCliff(start, qty * 0.0027), | ||
"Pre Seed & Advisors": manualCliff( | ||
start + periodToSeconds.year * 4, | ||
qty * 0.0481, | ||
), | ||
Team: manualCliff(start + periodToSeconds.year * 4, qty * 0.1187), | ||
IDO: manualCliff(start + periodToSeconds.year * 4, qty * 0.0125), | ||
"Tangible Labs": manualCliff(start + periodToSeconds.year * 4, qty * 0.0958), | ||
Bounty: manualCliff(start + periodToSeconds.year * 4, qty * 0.0021), | ||
DAO: manualCliff(start + periodToSeconds.year * 2, qty * 0.0615), | ||
"GURU Holders": manualLinear( | ||
start + periodToSeconds.year * 2, | ||
start + periodToSeconds.year * 4, | ||
qty * 0.6548, | ||
), | ||
meta: { | ||
sources: [ | ||
"https://docs.tangible.store/tngbl-and-marketplace/tangible-token-tngbl", | ||
], | ||
notes: [ | ||
`"GURU Holders" allocation consists of a mix of 2-4 year staked NFT positions. The mix is unkown so here we have assumed they'll unlock linearly across the 2 year period.`, | ||
], | ||
token: "polygon:0x49e6A20f1BBdfEeC2a8222E052000BbB14EE6007", | ||
protocolIds: ["2231"], | ||
}, | ||
categories: {}, | ||
}; | ||
|
||
export default tangible; |