Skip to content

Releases: orthonode/nexus-core

v1.3.2 - Hotfix: Pagination & Dashboard Stability

23 Jan 06:44

Choose a tag to compare

🩹 Hotfix Release

This patch resolves UI stability issues identified immediately following the v1.3.1 hardening.

🔧 Fixes

  • Infinite Scroll: Implemented proper cursor-based pagination in the Dashboard, resolving unused_field warnings.
  • Path Routing: Hardened api_service.dart and main.py to correctly serve static assets for the Flutter Web build.
  • Cleanup: Removed legacy test_client artifacts to ensure a clean production build environment.

Recommended: All node operators should upgrade to v1.3.2 for stable dashboard performance.

v1.3.1 - The Sovereign Hardening Update

18 Jan 21:07

Choose a tag to compare

Pre-release

🔎 Phase 1.3.1: Hardened Sovereign Node

Current Milestone: v1.3.1-staged | Focus: Multichain Perimeter Security & DePIN Readiness

This release freezes the Nexus Protocol v1.3.1 architecture, establishing a strict Verify-then-Execute perimeter for sovereign edge nodes. It introduces the Sentry Guard, a fail-closed verification module that ensures only cryptographically legitimate intents can trigger local execution.

Perimeter enforcement is active for TON (HMAC-SHA256) and interface-staged for IoTeX (execution explicitly disabled until Phase 2.0).

🏛️ Milestone Highlights

  • 🛡️ Sentry Guard (backend/sentry.py): Active perimeter module enforcing HMAC-SHA256 signature validation.
  • 🔒 Fail-Closed Security: Unauthorized requests are rejected at the edge (HTTP 403) before reaching the Brain.
  • 🧬 Deterministic Economics: Enforcement of the 60-30-10 execution invariant for local resource allocation.
  • 🧠 Sovereign Architecture: Trust perimeter fully relocated from cloud infrastructure to user-owned hardware.

📖 Documentation Suite

🚦 Quick Start (Linux / Ubuntu)

git clone [https://github.com/arhantbarmate/nexus-core.git](https://github.com/arhantbarmate/nexus-core.git)
cd nexus-core/backend
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt

# Verify fail-closed perimeter
pytest tests/test_gateway.py