File tree Expand file tree Collapse file tree 2 files changed +32
-1
lines changed
Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 22
33This document outlines major changes between releases.
44
5+ ## 0.3.1 "Zonation" (11 Mar 2025)
6+
7+ This patch-release introduces ` NeoXDKG ` fork on Testnet and contains a couple of minor
8+ improvements compatible with v0.3.0 version.
9+
10+ Please, follow the notes to upgrade your node from v0.3.0 to v0.3.1:
11+ 1 . Download new binary and new genesis configuration file from the release page.
12+ 2 . Gracefully stop the node.
13+ 3 . Replace the old binary with the new binary.
14+ 4 . Don't remove DB. Reinitialize DB using new binary and new configuration file for the
15+ corresponding network with the following command:
16+ ```
17+ ./geth init --datadir ./node-datadir ./config/genesis.json
18+ ```
19+ 5 . If you're running a consensus node, ensure that ` --antimev.password ` flag is provided
20+ to the node's runner script and the node has access to its anti-MEV keystore. Also,
21+ ensure that you've registered your node's anti-MEV public key in the KeyManagement
22+ contract.
23+ 6 . Start the node.
24+
25+ Behaviour changes:
26+ * ` NeoXDKG ` fork is enabled at height ` 1990080 ` of Testnet (#434 )
27+
28+ Improvements:
29+ * anti-MEV related documentation upgrade (#430 )
30+ * anti-MEV public key is required to register new candidate via Governance contract (#433 )
31+
32+ Bugs fixed:
33+ * encrypted transaction fee wasn't checked at the consensus/state DB level (#431 )
34+ * Governance contract wasn't allow to register a candidate (#433 )
35+
536## 0.3.0 "Elation" (27 Feb 2025)
637
738This version introduces support for two major features: anti-MEV encrypted transactions
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ import (
2323const (
2424 VersionMajor = 0 // Major version component of the current release
2525 VersionMinor = 3 // Minor version component of the current release
26- VersionPatch = 0 // Patch version component of the current release
26+ VersionPatch = 1 // Patch version component of the current release
2727 VersionMeta = "stable" // Version metadata to append to the version string
2828)
2929
You can’t perform that action at this time.
0 commit comments