added mermaid support and mermaid graph in tokenomics

This commit is contained in:
mik-tf 2024-08-26 22:50:40 -04:00
parent 14cda29b8a
commit 9f73daefdc
5 changed files with 719 additions and 9 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 62 KiB

View File

@ -18,7 +18,17 @@ The ThreeFold INCA tokenomics for the ThreeFold Grid 4.0 has been designed to pr
Our proof-of-utilization rewards system distributes 80% of rewards to farmers who contribute their resources to the grid, ensuring that they're fairly compensated for their participation. Additionally, 10% of rewards are allocated to the ThreeFold Cooperative and 10% to validator commercial partners, promoting a collaborative and mutually beneficial ecosystem. 100% of the proof-of-capacity rewards go to the farmers hosting nodes on the grid.
![Alt text](./img/tokenomics.png)
```mermaid
flowchart TD
A[Cloud User] -->|CHF/EUR/...| B(CLOUD MARKET PLACE<br>Discount based on position<br>in TF Liquidity Pool.)
A[Cloud User] -->|CHF/EUR/...| B2((ThreeFold<br>Liquidity Pool))
B2 -->|TFT or INCA| B
B -->|TFT or INCA| C{Proof Of Utilization}
G[FARMING GRANTS<br>40m Tokens / Month]--> I{Proof Of Capacity<br>uptime, location, ...} --> D
C -->|80%| D[ThreeFold Farmers]
C -->|10%| E[ThreeFold Cooperative]
C -->|10%| F[Validators<br>Commercial Partners]
```
## Distribution

View File

@ -59,6 +59,11 @@ const config: Config = {
],
],
markdown: {
mermaid: true,
},
themes: ['@docusaurus/theme-mermaid'],
themeConfig: {
colorMode: {
defaultMode: 'light',

View File

@ -17,6 +17,7 @@
"dependencies": {
"@docusaurus/core": "3.5.2",
"@docusaurus/preset-classic": "3.5.2",
"@docusaurus/theme-mermaid": "^3.5.2",
"@mdx-js/react": "^3.0.0",
"clsx": "^2.0.0",
"prism-react-renderer": "^2.3.0",

File diff suppressed because it is too large Load Diff