49 lines
1.3 KiB
Markdown
49 lines
1.3 KiB
Markdown
# Tokens Distribution
|
|
|
|
The INCA token is the result of our 4 generations of product releases.
|
|
|
|
- v 1,2,3 goes under the name of TFT and was minted on Stellar (max 2 Billion)
|
|
- INCA supercedes and integrates TFT, and is our v4 Token on Solana
|
|
- 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:
|
|
|
|
- +70% of all tokens over both generation net's is for the community (farming, grants, liquidity providing ...)
|
|
- 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)'
|
|
}
|
|
}
|
|
}
|
|
]
|
|
};
|
|
```
|
|
|