Releases: orthonode/nexus-core
Releases · orthonode/nexus-core
v1.3.2 - Hotfix: Pagination & Dashboard Stability
🩹 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_fieldwarnings. - Path Routing: Hardened
api_service.dartandmain.pyto correctly serve static assets for the Flutter Web build. - Cleanup: Removed legacy
test_clientartifacts 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
🔎 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
- Architecture Deep Dive: Sentry-gated gateway design
- Economic Model: Deterministic 60-30-10 invariant
- Grant Proposal: IoTeX Halo integration roadmap
🚦 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