info_tfgrid/collections/projectinca/tokens1/tokens1.md

49 lines
1.2 KiB
Markdown
Raw Permalink Normal View History

2024-07-08 04:19:57 +00:00
# INCA Tokens Distribution
> Not ready yet, we are defining how to do this best.
2024-05-02 15:54:26 +00:00
The INCA token is the result of our 4 generations of product releases.
- INCA will be on many DEXes
- The INCA will be bridged to other major blockchains and we aim to have INCA available on Exchanges.
We are a community driven project and that shows in our tokenomics, over the both generations:
2024-05-23 08:09:37 +00:00
- +70% of all tokens over both generation net's is for the community (farming, grants, liquidity providing ...)
2024-05-02 15:54:26 +00:00
- 11.5% was for the original technology acquisition
- 17.5% is for the team and contributors
```echarts
option = {
title: {
text: 'INCA Token',
subtext: 'Distribution',
left: 'center'
},
tooltip: {
trigger: 'item'
},
series: [
{
name: 'Distribution',
type: 'pie',
radius: '70%',
data: [
{ value: 2710, name: 'Community Rewards: Farming + grants' },
{ value: 130, name: 'Liquidity' },
{ value: 460, name: 'Original Technology Acquisition' },
{ value: 700, name: 'Team' },
],
emphasis: {
itemStyle: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)'
}
}
}
]
};
```