-
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
ec1a167
commit d2d29f5
Showing
1 changed file
with
52 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,52 @@ | ||
import { manualCliff, manualStep } from "../adapters/manual"; | ||
import { Protocol } from "../types/adapters"; | ||
import { periodToSeconds } from "../utils/time"; | ||
|
||
const start = 1674172800; | ||
const total = 1e9; | ||
|
||
const fasttoken: Protocol = { | ||
Marketing: manualCliff(start, total * 0.1), | ||
Blockchain: manualCliff(start, total * 0.12), | ||
Partners: manualCliff(start, total * 0.06), | ||
Ecosystem: manualCliff(start, total * 0.24), | ||
Presale: manualCliff(start + periodToSeconds.months(9), total * 0.06), | ||
"Private Sale": manualStep( | ||
start + periodToSeconds.year, | ||
periodToSeconds.month, | ||
10, | ||
(total * 0.18) / 10, | ||
), | ||
"Public Sale": manualCliff(start, total * 0.01), | ||
Founders: manualStep( | ||
start + periodToSeconds.years(2), | ||
periodToSeconds.month, | ||
10, | ||
(total * 0.2) / 10, | ||
), | ||
Advisors: manualStep( | ||
start + periodToSeconds.year, | ||
periodToSeconds.month, | ||
10, | ||
(total * 0.03) / 10, | ||
), | ||
meta: { | ||
token: "coingecko:fasttoken", | ||
sources: [`https://fasttoken.com/`], | ||
protocolIds: ["4923"], | ||
}, | ||
categories: { | ||
insiders: [ | ||
"Advisors", | ||
"Founders", | ||
"Private Sale", | ||
"Presale", | ||
"Marketing", | ||
"Partners", | ||
], | ||
publicSale: ["Public Sale", "Blockchain"], | ||
noncirculating: ["Ecosystem"], | ||
}, | ||
}; | ||
|
||
export default fasttoken; |