-
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
Showing
1 changed file
with
62 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,62 @@ | ||
import { manualCliff, manualLog } from '../adapters/manual'; | ||
import { Protocol } from '../types/adapters'; | ||
import { periodToSeconds } from '../utils/time'; | ||
|
||
const qty = 1_000_000_000; | ||
const start = 1630886400; | ||
|
||
const osmosis: Protocol = { | ||
'Liquidity Mining Incentives': [ | ||
manualLog( | ||
start, | ||
start + periodToSeconds.years(12), | ||
qty * 0.257, | ||
periodToSeconds.year, | ||
33 | ||
), | ||
], | ||
'Developer Vesting': [ | ||
manualLog( | ||
start, | ||
start + periodToSeconds.years(12), | ||
qty * 0.225, | ||
periodToSeconds.year, | ||
33 | ||
), | ||
], | ||
'Staking Rewards': [ | ||
manualLog( | ||
start, | ||
start + periodToSeconds.years(12), | ||
qty * 0.325, | ||
periodToSeconds.year, | ||
33 | ||
), | ||
], | ||
'Community Pool': [ | ||
manualLog( | ||
start, | ||
start + periodToSeconds.years(12), | ||
qty * 0.093, | ||
periodToSeconds.year, | ||
33 | ||
), | ||
], | ||
'Community Airdrop': [manualCliff('2021-06-19', qty * 0.05)], | ||
'Strategic Reserve': [manualCliff('2021-06-19', qty * 0.05)], | ||
|
||
meta: { | ||
sources: [ | ||
'https://coinmarketcap.com/community/articles/655cef50e96fd653cea5f36d/', | ||
], | ||
token: 'coingecko:osmosis', | ||
protocolIds: ['383'], | ||
}, | ||
categories: { | ||
insiders: ['Developer Vesting'], | ||
airdrop: ['Community Airdrop', 'Liquidity Mining Incentives'], | ||
noncirculating: ['Community Pool', 'Strategic Reserve'], | ||
}, | ||
}; | ||
|
||
export default osmosis; |