[DOCs/operators]: Release notes for tola release (#6645)

* changelog for tola release

* Add new updates to changelog

* add docs rework to operatos news

* add ansible fix

* bump stats

---------

Co-authored-by: merve <e@E-MacBook-Air.local>
Co-authored-by: serinko <97586125+serinko@users.noreply.github.com>
This commit is contained in:
Merve
2026-04-09 16:06:52 +03:00
committed by GitHub
parent 60426b8c45
commit f208855bc8
13 changed files with 94 additions and 22 deletions
@@ -5,7 +5,7 @@
},
"mixmining_reserve": {
"denom": "unym",
"amount": "170550581010206"
"amount": "168575020719057"
},
"vesting_tokens": {
"denom": "unym",
@@ -13,6 +13,6 @@
},
"circulating_supply": {
"denom": "unym",
"amount": "829449418989794"
"amount": "831424979280943"
}
}
@@ -1 +1 @@
829_449_418
831_424_979
@@ -1 +1 @@
60_905_575
61_050_638
@@ -1 +1 @@
60_905_574
61_050_637
@@ -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 | 170_550_581 |
| Mixmining Reserve | Tokens releasing for operators rewards | 168_575_020 |
| Vesting Tokens | Tokens locked outside of circulation for future claim | 0 |
| Circulating Supply | Amount of unlocked tokens | 829_449_418 |
| Stake Saturation | Optimal size of node self-bond + delegation | 253_773 |
| Circulating Supply | Amount of unlocked tokens | 831_424_979 |
| Stake Saturation | Optimal size of node self-bond + delegation | 254_377 |
@@ -1,10 +1,10 @@
{
"interval": {
"reward_pool": "170550581010206.362081368363611499",
"staking_supply": "60905574069554.404272283888050139",
"reward_pool": "168575020719057.456153922699547282",
"staking_supply": "61050637328128.353993717821521057",
"staking_supply_scale_factor": "0.07342892",
"epoch_reward_budget": "4737516139.172398946704676766",
"stake_saturation_point": "253773225289.810017801182866875",
"epoch_reward_budget": "4682639464.418262670942297209",
"stake_saturation_point": "254377655533.868141640490923004",
"sybil_resistance": "0.3",
"active_set_work_factor": "10",
"interval_pool_emission": "0.02"
@@ -1 +1 @@
Thursday, March 26th 2026, 11:17:59 UTC
Thursday, April 9th 2026, 12:56:49 UTC
@@ -57,6 +57,79 @@ This page displays a full list of all the changes during our release cycle from
<VarInfo />
## `v2026.7-tola`
- [Release Binaries](https://github.com/nymtech/nym/releases/tag/nym-binaries-v2026.7-tola)
- [`nym-node`](nodes/nym-node.mdx) version `1.29.0`
```sh
Binary Name: nym-node
Build Timestamp: 2026-04-08T10:31:49.141185557Z
Build Version: 1.29.0
Commit SHA: 97068b2aace6626e3dff6864a26e7b1ff35f5725
Commit Date: 2026-04-07T15:51:44.000000000+02:00
Commit Branch: HEAD
rustc Version: 1.91.1
rustc Channel: stable
cargo Profile: release
```
### Operators Updates & Tools
<Callout type="warning" emoji="⚠️">
The outcome of [NIP-10: Nym Exit Policy Update Opening Ports for Dash, SIP, Voice, TeamSpeak, & Litecoin Services](https://governator.nym.com/proposal/prop-d67c07c1-8d81-4d04-bc66-a0b28c24ffbd) has been incorporated into the [Network Tunnel Manager (NTM)](https://github.com/nymtech/nym/blob/develop/scripts/nym-node-setup/network-tunnel-manager.sh). Operators are required to rerun the tool on their servers to apply the changes. Follow [these simple steps](#update-nym-exit-policy) to apply the exit policy.
</Callout>
- [New documentation logic to `network/`, `developers/` and `apis/`](https://github.com/nymtech/nym/pull/6494) according to the [diataxis.fr](https://diataxis.fr/) framework, making basis for adding Lewes Protocol documentation. Additionally developer docs now include tutorials for the [Rust SDK modules](/developers/rust), and documentation on the `stream` [Mixnet module](/developers/rust/mixnet). See the pages at:
- [Network docs](/network)
- [Developer docs](/developers/integrations)
- [APIs docs](/apis/introduction)
#### Update Nym exit policy
**Follow these steps to update the exit policy using NTM.**
<Steps>
###### 1. Download the new NTM
- Download the latest NTM and make it executable:
```sh
curl -L https://raw.githubusercontent.com/nymtech/nym/refs/heads/develop/scripts/nym-node-setup/network-tunnel-manager.sh -o ./network-tunnel-manager.sh && \
chmod +x network-tunnel-manager.sh
```
###### 2. Update the exit policy
- To ensure your routing is clean, run:
```sh
./network-tunnel-manager.sh complete_networking_configuration
```
</ Steps>
### Features
- [Multiple deposit prices](https://github.com/nymtech/nym/pull/6608): Introduces tiered deposit pricing for the ecash contract. Whitelisted addresses can deposit at reduced rates, and gateway redemption flow is simplified by removing the multisig proposal path. Important for operators to manage deposit and token flow efficiently.
- [Nym Node spam logging](https://github.com/nymtech/nym/pull/6621): Prevents spam logs when downstream nodes are slow, improving node stability and log clarity.
- [Update Fallback IP for Nym API](https://github.com/nymtech/nym/pull/6622): Updates fallback IPs for Nym API, ensuring nodes maintain stable connectivity.
### Bugfix
- [Ensure client keys are generated before requesting credentials](https://github.com/nymtech/nym/pull/6579): Fixes authentication order, crucial for nodes to securely request credentials.
- [Fix SOCKS5 gateway probe](https://github.com/nymtech/nym/pull/6576): Resolves regressions in Socks5 gateway probes, maintaining gateway functionality and reliability.
- [Nym node Ansible - download clean NTM on each run](https://github.com/nymtech/nym/pull/6654)
### Refactors & Maintenance
- [Move format_debug_bytes in common crate](https://github.com/nymtech/nym/pull/6580): Refactors debug logging code, improving node log readability and maintainability.
- [Migration for tiered deposit pricing](https://github.com/nymtech/nym/pull/6608): Seeds whitelist and backfills statistics for multiple deposit tiers, ensuring nodes handle deposits correctly after migration.
- [Max/docs-diataxis-ify](https://github.com/nymtech/nym/pull/6494): Rewrites network/, developers/, and apis/ according to the Diataxis framework. Adds Rust SDK tutorials and stream Mixnet module documentation, as well as LLM-friendly doc files (llms.txt and llms-full.txt).
## `v2026.6-stilton`
- [Release Binaries](https://github.com/nymtech/nym/releases/tag/nym-binaries-v2026.6-stilton)
@@ -19,12 +19,11 @@ This documentation page provides a guide on how to set up and run a [NYM NODE](.
## Current version
```sh
nym-node
Binary Name: nym-node
Build Timestamp: 2026-03-25T13:41:43.299729408Z
Build Version: 1.28.0
Commit SHA: 034346917901bd373dee0ca170b26a9359dbd26d
Commit Date: 2026-03-25T07:47:04.000000000+01:00
Build Timestamp: 2026-04-08T10:31:49.141185557Z
Build Version: 1.29.0
Commit SHA: 97068b2aace6626e3dff6864a26e7b1ff35f5725
Commit Date: 2026-04-07T15:51:44.000000000+02:00
Commit Branch: HEAD
rustc Version: 1.91.1
rustc Channel: stable