-
Notifications
You must be signed in to change notification settings - Fork 237
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 notes v2024.14-crunch & config score updates (
#5222) * initialise tokenomics graph * generate reward version config graph * update tokenomics * edit typo * initialise release crunch release notes * operators update * add points to changelog * update version graph and selection * update iptables configuration * add features to changelog * comment redundant * address review comments * PR finish
- Loading branch information
Showing
14 changed files
with
450 additions
and
31 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
.../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 |
---|---|---|
@@ -1 +1 @@ | ||
803_103_234 | ||
804_560_131 |
2 changes: 1 addition & 1 deletion
2
...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 |
---|---|---|
@@ -1 +1 @@ | ||
1_016_987 | ||
1_020_023 |
2 changes: 1 addition & 1 deletion
2
...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 |
---|---|---|
@@ -1 +1 @@ | ||
401_551_617 | ||
402_280_065 |
6 changes: 3 additions & 3 deletions
6
...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 |
---|---|---|
@@ -1,7 +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 | | ||
| Mixmining Reserve | Tokens releasing for operators rewards | 195_439_368 | | ||
| 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 | | ||
| Circulating Supply | Amount of unlocked tokens | 804_560_131 | | ||
| Stake Saturation | Optimal size of node self-bond + delegation | 1_020_023 | |
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 @@ | ||
Monday, November 25th 2024, 13:24:04 UTC | ||
Friday, December 6th 2024, 10:16:06 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
2 changes: 1 addition & 1 deletion
2
documentation/docs/pages/operators/nodes/nym-node/configuration/_meta.json
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,3 +1,3 @@ | ||
{ | ||
"proxy-configuration": "WSS & Reverese Proxy" | ||
"proxy-configuration": "WSS & Reverse Proxy" | ||
} |
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
Binary file added
BIN
+102 KB
documentation/docs/public/images/operators/tokenomics/reward_version_graph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,67 @@ | ||
import matplotlib.pyplot as plt | ||
import matplotlib.axes as ax | ||
import matplotlib.pylab as pylab | ||
from matplotlib.pyplot import figure | ||
import numpy as np | ||
|
||
plt.style.use('dark_background') | ||
|
||
a = 0.995 | ||
b = 1.65 | ||
|
||
# make data | ||
x1 = [0,1,2,3,4,5] | ||
x2 = x1 | ||
x3 = x1 | ||
x4 = x1 | ||
|
||
y1 = [a**((v*1)**b) for v in x1] | ||
y2 = [a**((v*10)**b) for v in x1] | ||
y3 = [a**((v*100)**b) for v in x1] | ||
# y4 = [a**((11)**b) for v in x1] | ||
|
||
f = plt.figure() | ||
f.set_figwidth(12) | ||
f.set_figheight(9) | ||
|
||
# plot | ||
#fig, ax = plt.subplots() | ||
plt.plot(x1,y1, label=f'Patches behind: config_score_multiplier = {a} ^ ((1 * versions_behind) ^ {b})') | ||
plt.plot(x2,y2, label=f'Minor versions behind: config_score_multiplier = {a} ^ ((10 * versions_behind) ^ {b})') | ||
plt.plot(x3,y3, label=f'Major versions behind: config_score_multiplier = {a} ^ ((100 * versions_behind) ^ {b})') | ||
#ax.plot(x, y, linewidth=2.0) | ||
|
||
|
||
# naming the x axis | ||
plt.xlabel('Nym Node versions behind the current one', fontsize=20) | ||
|
||
|
||
# naming the y axis | ||
plt.ylabel('Config score multiplier', fontsize=20) | ||
|
||
# giving a title to my graph | ||
plt.title('Nym node version config score multiplier', fontsize=28) | ||
|
||
|
||
#ax.Axes.set_xticks([x]) | ||
#ax.Axes.set_yticks([y]) | ||
|
||
plt.legend(fontsize=12) | ||
|
||
#params = {'legend.fontsize': 20, | ||
# 'axes.labelsize': 24, | ||
# 'axes.titlesize':'x-large', | ||
# 'xtick.labelsize':20, | ||
# 'ytick.labelsize':20} | ||
# | ||
#pylab.rcParams.update(params) | ||
|
||
# set the limits | ||
plt.xlim([0, 5]) | ||
plt.ylim([0,1]) | ||
|
||
|
||
|
||
#plt.show() | ||
|
||
plt.savefig('../docs/public/images/operators/tokenomics/reward_version_graph.png') |