-
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
c7d4ce7
commit e75d229
Showing
2 changed files
with
59 additions
and
14 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 { Protocol } from "../types/adapters"; | ||
import { manualCliff, manualStep } from "../adapters/manual"; | ||
import { periodToSeconds } from "../utils/time"; | ||
|
||
const qty = 1e9; | ||
const start = 1604016000; | ||
|
||
const stella: Protocol = { | ||
"Binance Launchpad": manualCliff(start, qty * 0.1), | ||
"Binance Launchpool": manualCliff(start, qty * 0.05), | ||
"Private Sale": manualStep( | ||
start, | ||
periodToSeconds.month * 3, | ||
4, | ||
(qty * 0.1333) / 4, | ||
), | ||
"Liquidity Mining": manualStep( | ||
start, | ||
periodToSeconds.month * 3, | ||
4, | ||
qty * 0.05, | ||
), | ||
"Team & Advisors": manualStep( | ||
start + periodToSeconds.year, | ||
periodToSeconds.month * 3, | ||
10, | ||
qty * 0.015, | ||
), | ||
Ecosystem: manualStep( | ||
start, | ||
periodToSeconds.month * 3, | ||
24, | ||
(qty * 0.3667) / 24, | ||
), | ||
meta: { | ||
sources: [ | ||
"https://docs.stellaxyz.io/stella-doc/tokenomics/token-distribution", | ||
], | ||
token: "ethereum:0xa1faa113cbE53436Df28FF0aEe54275c13B40975", | ||
protocolIds: ["3148"], | ||
}, | ||
categories: { | ||
insiders: ["Private Sale", "Team & Insiders"], | ||
publicSale: ["Binance Launchpad", "Binance Launchpool"], | ||
farming: ["Liquidity Mining"], | ||
noncirculating: ["Ecosystem"], | ||
}, | ||
}; | ||
|
||
export default stella; |
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