-
Notifications
You must be signed in to change notification settings - Fork 236
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DOCS/operators]: Release changes v2024.13-magura & Tokenomics pages …
…v1.0 (#5128) * add directory changes to changelog * exit gateway page update * finish general tokenomics page * add new operator toolings * progressing with release notes * add smart contract migration and bonding steps * add new bonding steps * add tokenomics roadmap * added new pages to introduction - ready for review * ready for review * edit callout custom * rm CalloutCustom.tsx * syntax fix * temp build version fix by hardcode * built after review changes * remove redundant point * final commit - let's merge
- Loading branch information
Showing
33 changed files
with
1,219 additions
and
107 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
documentation/docs/components/callout-custom/CalloutCustom.jsx
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,36 @@ | ||
export const Clt = ({ children, backgroundColor = 'white', borderColor = 'black', pointPosition = 'left', pointOffset = '2rem', pointAlignment = 'end', pointTranslate, pointLength = '2rem', cornerRadius = '0.5rem', borderWidth = '0.2rem', pointWidthMultiplier = 0.5, pointLengthMultiplier = 1, style = {} }) => { | ||
|
||
|
||
const center = pointAlignment === 'center' | ||
const offset = center ? '50%' : pointOffset | ||
const translate = center ? (pointPosition === 'left' || pointPosition === 'right') ? 'translateY(-50%)' : 'translateX(-50%)' : pointTranslate | ||
const wMult = Math.min(pointWidthMultiplier, 0.99) | ||
const lMult = Math.max(pointLengthMultiplier, 1) | ||
|
||
const props = { | ||
'--pointLength': pointLength, | ||
'--positionOffset': offset, | ||
'--bkg-color': backgroundColor, | ||
'--bdr-color': borderColor, | ||
'--corner-radius': cornerRadius, | ||
'--border-width': borderWidth, | ||
'--pointWidthMultiplier': wMult, | ||
'--pointLengthMultiplier': lMult, | ||
...style | ||
} | ||
|
||
|
||
|
||
return ( | ||
<div className={`clt ${pointPosition}`} style={props}> | ||
<div className={`clt__bubble ${pointPosition}`}> | ||
<div className="clt__content"> | ||
{children} | ||
</div> | ||
</div> | ||
<div className={`clt__point-wrapper ${pointPosition} ${pointAlignment}`} style={{ ...(translate && { transform: translate }) }}> | ||
<div className={`clt__point ${pointPosition}`} /> | ||
</div> | ||
</div> | ||
) | ||
} |
1 change: 1 addition & 0 deletions
1
.../docs/components/outputs/api-scraping-outputs/nyx-outputs/circulating-supply.md
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 @@ | ||
803_103_234 |
1 change: 1 addition & 0 deletions
1
...n/docs/components/outputs/api-scraping-outputs/nyx-outputs/nyx-percent-stake.md
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 @@ | ||
0.64% |
1 change: 1 addition & 0 deletions
1
...ion/docs/components/outputs/api-scraping-outputs/nyx-outputs/nyx-total-stake.md
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 @@ | ||
44.811 |
1 change: 1 addition & 0 deletions
1
...on/docs/components/outputs/api-scraping-outputs/nyx-outputs/stake-saturation.md
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 @@ | ||
1_016_987 |
1 change: 1 addition & 0 deletions
1
...ocs/components/outputs/api-scraping-outputs/nyx-outputs/staking-scale-factor.md
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.0% |
1 change: 1 addition & 0 deletions
1
...tion/docs/components/outputs/api-scraping-outputs/nyx-outputs/staking-target.md
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 @@ | ||
401_551_617 |
7 changes: 7 additions & 0 deletions
7
...ntation/docs/components/outputs/api-scraping-outputs/nyx-outputs/token-table.md
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,7 @@ | ||
| **Item** | **Description** | **Amount in NYM** | | ||
|:-------------------|:------------------------------------------------------|--------------------:| | ||
| Total Supply | Maximum amount of NYM token in existence | 1_000_000_000 | | ||
| Mixmining Reserve | Tokens releasing for operators rewards | 196_896_265 | | ||
| Vesting Tokens | Tokens locked outside of cicrulation for future claim | 500 | | ||
| Circulating Supply | Amount of unlocked tokens | 803_103_234 | | ||
| Stake Saturation | Optimal size of node self-bond + delegation | 1_016_987 | |
2 changes: 1 addition & 1 deletion
2
documentation/docs/components/outputs/api-scraping-outputs/time-now.md
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 |
---|---|---|
@@ -1 +1 @@ | ||
Tuesday, October 29th 2024, 09:51:52 UTC | ||
Tuesday, November 19th 2024, 11:34:21 UTC |
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
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
1 change: 1 addition & 0 deletions
1
documentation/docs/components/outputs/nyx-outputs/circulating-supply.md
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 @@ | ||
803_103_234 |
7 changes: 7 additions & 0 deletions
7
documentation/docs/components/outputs/nyx-outputs/token-table.md
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,7 @@ | ||
| **Item** | **Description** | **Amount in NYM** | | ||
|:-------------------|:------------------------------------------------------|--------------------:| | ||
| Total Supply | Maximum amount of NYM token in existence | 1_000_000_000 | | ||
| Mixmining Reserve | Tokens releasing for operators rewards | 196_896_265 | | ||
| Vesting Tokens | Tokens locked outside of cicrulation for future claim | 500 | | ||
| Circulating Supply | Amount of unlocked tokens | 803_103_234 | | ||
| Stake Saturation | Optimal size of node self-bond + delegation | 1_016_987 | |
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
Oops, something went wrong.