Skip to content

Commit 1db609f

Browse files
theekrystalleegitbook-bot
authored andcommitted
add release highlights for v0.61 #29
1 parent 8b68c27 commit 1db609f

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed
Loading

networks/release-notes/services.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,36 @@ Visit the [Hedera status page](https://status.hedera.com/) for the latest versio
146146
**MAINNET UPDATE SCHEDULED: MAY 21, 2025**
147147
{% endhint %}
148148

149-
{% hint style="info" %}
149+
{% hint style="success" %}
150150
**TESTNET UPDATE SCHEDULED: MAY 14, 2025**
151151
{% endhint %}
152152

153+
### Release Highlights
154+
155+
This release focuses on enhancing network incentivization and improving overall system robustness and developer experience.
156+
157+
#### Hiero Improvement Proposals (HIPs)
158+
159+
* [HIP-1064](https://github.com/hiero-ledger/hiero-improvement-proposals/issues/1064): Full implementation of a daily reward mechanism for active consensus nodes, including an option for node operators to decline these rewards. This enhances network health by incentivizing consistent node uptime and participation, while providing operators flexibility in managing their rewards and improving network decentralization.
160+
161+
#### New Features
162+
163+
* Node Reward Opt-Out (HIP-1064): Node operators can now decline daily node rewards using a new decline\_reward boolean flag in NodeCreateTransactionBody and NodeUpdateTransactionBody. This offers greater control and flexibility for node operators based on their specific requirements.
164+
* ```
165+
// Example: Opting out of node rewards during node creation
166+
NodeCreateTransactionBody createBody = NodeCreateTransactionBody.newBuilder()
167+
// ... other fields like accountID, description, etc.
168+
.setDeclineReward(true) // Set to true to decline node rewards
169+
.build();
170+
```
171+
172+
#### Notable Bug Fixes
173+
174+
* [#17478](https://github.com/hiero-ledger/hiero-consensus-node/issues/17478): Corrected Cancun SELFDESTRUCT Semantics: 
175+
* Fixed incorrect SELFDESTRUCT behavior per EIP-6780 post-Cancun, where a contract specifying itself as the beneficiary in a non-creation transaction erroneously triggered a SELF\_DESTRUCT\_TO\_SELF error. The fix ensures compliance with EIP-6780, allowing the operation to proceed without deleting the contract or transferring its balance, including native tokens. 
176+
* Additionally, refactored CustomSelfDestructOperation.execute to streamline validation checks before state changes. 
177+
* Impact: Enhances EVM compatibility and reliability on Hedera for contracts using SELFDESTRUCT, ensuring correct execution under post-Cancun rules.
178+
153179
### [Build 0.61.6](https://github.com/hiero-ledger/hiero-consensus-node/releases/tag/v0.61.6)
154180
155181
<details>

0 commit comments

Comments
 (0)