NEUROVATIC -- Official Documentation

Developer Documentation

Comprehensive technical reference for the NEUROVATIC ecosystem: NV-CHAIN sovereign blockchain, Neural-ID identity protocol, NPoI consensus, SocietyDAO governance, and developer integration guides.

1. Overview

NEUROVATIC is a sovereign AI infrastructure ecosystem where artificial intelligence governs a private blockchain and the blockchain renders every AI decision permanently auditable. The ecosystem is built on three foundational pillars:

  • NV-CHAIN -- EVM-compatible sovereign blockchain (Chain ID 73790) with Neural Proof-of-Intelligence (NPoI) consensus, N=12 BFT cluster, feeless transactions.
  • Neural-ID -- Sovereign digital identity protocol. The only way to access the NEUROVATIC platform. An on-chain NFT combining identity, access tier, and reputation score in a single primitive.
  • NEUROVATIC AI -- Tri-Core AI system: UNDECA-CORE (343.5M params), SIGMA-CORE (14B), ATLAS-CORE (35B+ MoE) across 175 knowledge domains. ATLAS Governance Plane (Layer 5): policy enforcement, schema sanitization, zero-trust boundary, drift detection, and SSOT version management — live since Sprint 13.

Ecosystem Status

System Version: v2.6 (Sprint 13)  |  ValidatorRegistry: v2.0  |  InferenceRouter: v2.2  |  Last Updated: 2026-05-22  |  NPoI Phase: D2 Active  |  ATLAS Governance: Layer 5 Live
ComponentStatusDetails
NV-CHAIN MainnetLiveChain ID 73790 -- N=12 nodes -- Block 367,000+
EVM JSON-RPCLiverpc.neurovatic.ai/rpc -- 5 global endpoints
Chainlist.orgLivePR #2612 merged -- chainlist.org/chain/73790
ethereum-listsLivePR #8157 merged -- EIP-155 identifier 73790
NPoI ConsensusActiveSENTINEL + COGNITUM patrol validation -- D2 enforcement active. Full block-level integration: D3 milestone.
Neural-ID GatewayPrivate TestnetInternal testing -- Q3 2026 public launch
SocietyDAOIn ProgressSmart contract development -- Q3 2026
B2B Consent APIPrivate TestnetPhase 2 -- Q2-Q3 2026
NV-SEED NodesIn ProgressValidator program -- Q3 2026
Post-Quantum (FIPS 203/204)In ProgressPhase 1 complete -- Phase 2 Q3 2026

Quick Connect

ServiceURL
Primary RPChttps://rpc.neurovatic.ai/rpc
Block Explorerhttps://explorer.neurovatic.ai
Network Statushttps://status.neurovatic.ai
Monitor (Grafana)https://monitor.neurovatic.ai
Documentationhttps://docs.neurovatic.ai
NPoI Statshttps://rpc.neurovatic.ai/npoi/stats
Health Checkhttps://rpc.neurovatic.ai/health

2. NV-CHAIN

NV-CHAIN is a sovereign EVM-compatible blockchain with Byzantine Fault Tolerant consensus enhanced by Neural Proof-of-Intelligence. Every transaction and AI decision is recorded immutably on-chain.

Network Parameters

ParameterValue
Chain ID73790
Network NameNV-CHAIN
SymbolNVC (NeuroVatic Coin)
ConsensusBFT + NPoI (Neural Proof of Intelligence)
NodesN=12 -- f=3 fault tolerance -- finality 9/12
Block Interval10 seconds
Gas ModelFeeless (eth_gasPrice returns 0x0)
FinalityUnder 100ms
TPS (theoretical)1,072,373 (4-shard Rust target)
EVM CompatibleYes -- JSON-RPC 2.0 / EIP-1474
Primary RPChttps://rpc.neurovatic.ai/rpc
Explorerhttps://explorer.neurovatic.ai
Decimals18
Block StorageSQLite WAL -- /opt/neurovatic/nv_chain.db
EIP-155 Registryethereum-lists PR #8157 merged
Chainlistchainlist.org/chain/73790

Global RPC Endpoints

RegionEndpointGeo Zone
Primary (EU)https://rpc.neurovatic.ai/rpcEU-North
Europehttps://rpc-eu.neurovatic.ai/rpcEU-Central [Planned Q3-Q4 2026]
Asia-Pacifichttps://rpc-apac.neurovatic.ai/rpcAPAC [Planned Q3-Q4 2026]
US Westhttps://rpc-usw.neurovatic.ai/rpcUS-West [Planned Q3-Q4 2026]
US Easthttps://rpc-use.neurovatic.ai/rpcUS-East [Planned Q3-Q4 2026]

MetaMask Setup

Open MetaMask, go to Settings -- Networks -- Add Network -- Add a network manually. Enter the parameters below exactly as shown:

FieldValue
Network NameNV-CHAIN
RPC URLhttps://rpc.neurovatic.ai/rpc
Chain ID73790
Currency SymbolNVC
Block Explorer URLhttps://explorer.neurovatic.ai

Supported JSON-RPC Methods

NV-CHAIN implements EIP-1474 standard methods. Gas is natively feeless -- eth_gasPrice returns 0x0.

MethodDescription
eth_chainIdReturns chain ID (0x12042 = 73790)
eth_blockNumberLatest block number
eth_gasPriceReturns 0x0 (feeless)
eth_getBalanceNVC balance for address
eth_sendRawTransactionSubmit signed transaction
eth_getTransactionByHashTransaction details
eth_getTransactionReceiptTransaction receipt
eth_callExecute contract call (read-only)
eth_estimateGasReturns 0x0 (feeless)
eth_getLogsQuery block logs (EIP-1474)
net_versionNetwork ID (73790)
web3_clientVersionNV-CHAIN client version

EIP-155 Registration Metadata

{
  "name": "NV-CHAIN",
  "chain": "NVC",
  "shortName": "nvc",
  "chainId": 73790,
  "networkId": 73790,
  "nativeCurrency": {
    "name": "NeuroVaticCoin",
    "symbol": "NVC",
    "decimals": 18
  },
  "rpc": ["https://rpc.neurovatic.ai/rpc"],
  "explorers": [{"name": "nvScan", "url": "https://explorer.neurovatic.ai", "standard": "EIP3091"}],
  "infoURL": "https://neurovatic.ai"
}

WebSocket Block Feed

Real-time block subscription at wss://rpc.neurovatic.ai/ws/blocks.

// JavaScript
const ws = new WebSocket('wss://rpc.neurovatic.ai/ws/blocks');
ws.onmessage = (e) => {
  const block = JSON.parse(e.data);
  console.log('New block:', block.block_number, block.block_type);
};

// Message format
{
  "block_number": 7905,
  "hash": "0x...",
  "timestamp": 1774382100,
  "block_type": "CHAIN",
  "event": "new_block"
}

Block Types -- AI Provenance Ledger

Every AI decision and human action is recorded as an immutable block on NV-CHAIN. This enables full EU AI Act Art. 13 compliance (transparency) and Art. 22 (human oversight).

Block TypeCreated ByEndpoint
CHAINAuto-block producer (every 10s)Automatic
AI_INFERENCEOMEGA-CORE / UNDECA-COREPOST /ai/inference/record
POLICY_VIOLATIONNV-GUARDIAN enginePOST /policy/check
HUMAN_DECISIONOperator (approve/reject)POST /human/decision
COMPLIANCE_AUDITCompliance reportGET /compliance/report

3. Neural-ID Protocol

Private Testnet -- Public Launch Q3 2026

Neural-ID is the sovereign digital identity protocol on NV-CHAIN. It is an AI-native system combining identity (Soulbound NFT), access control (tiered), and reputation (NPoI score) in a single on-chain primitive. Neural-ID is the mandatory gateway to the NEUROVATIC platform -- there is no access without a Neural-ID.

3-Layer Architecture

LayerNameFunction
Layer 1Identity LayerNeural-ID as a unique, sovereign, on-chain digital identity. A Neural-ID IS the user -- not just a wallet address. Immutable, Soulbound.
Layer 2Access LayerNeural-ID controls access to all NEUROVATIC ecosystem services. Tiered system: BOUND > VERIFIED > ACTIVE > EMANCIPATED.
Layer 3Reputation LayerNPoI (Neural Proof of Intelligence) -- AI-calculated reputation score (0-100). Non-financial, algorithmic, ecosystem-access control only.
Core principle: Off-chain AI intelligence, on-chain cryptographic truth. AI scoring and validation run off-chain. Only compact cryptographic proofs (36 bytes) are anchored on-chain.

Neural-ID Types

TypeDescriptionTransferableSoulbound
identityKYC-verified primary identity (one per human)NoYes
personalPersonal handle / social identityNoYes
assetBrand, domain, or namespace assetYesNo
enterpriseCorporate / legal entity identityConditionalKYC-bound

A KYC-verified identity NID must be registered before any asset NIDs can be linked to it. The identity NID is the immutable root of the identity tree.

Tier System

TierRequirementsAccess Level
BOUNDRegistration onlyBasic resolution, read-only
VERIFIEDKYC completedFull ecosystem access
ACTIVENPoI score >= 50 + 30-day activityGovernance participation eligible
EMANCIPATEDNPoI score >= 80 + validator bondFull sovereignty, can run nodes, full SocietyDAO access

Identity Truth Object (ITO)

The ITO is the canonical data structure returned by the Neural-ID resolution API. It contains exactly 7 sections -- no more, no less. This is the frozen enterprise API contract.

SectionFieldDescription
1. Identitynid, id_type, created, blockCore identity record -- immutable after registration
2. Walletowner, wallet_addressOn-chain wallet binding (public key only, never private key)
3. Trusttier, npoi_score, verified_humanAI-calculated trust level and tier classification
4. Consentconsents[], active_grantsActive consent grants (what the identity has permitted to which consumer)
5. Proofcompact_proof, nexus_anchor_id36-byte cryptographic proof anchored via NEXUS Merkle engine
6. Metanamespace_class, aegis_nonce, liminal_idNamespace classification, anti-replay nonce reference, LIMINAL state
7. Okstatus, verified_at, signatureFinal validity seal -- Ed25519 node signature. This field is the B2B decision gate.

Practical Example -- Bank KYC/AML Integration

Scenario: An enterprise partner needs to verify that user alice is KYC-verified before onboarding.

1. Bank sends: GET /api/identity/resolve?nid=alice&requester=partner_system
2. Neural-ID gateway checks: Does alice have an active consent grant permitting "partner_system" to read tier and kyc_hash?
3. If consent is active, the ITO Section 7 (Ok) returns: {"status": "verified", "verified_human": true, "tier": "VERIFIED"}
4. The bank receives a cryptographically signed response verifiable independently using only the public key. No raw PII is ever exposed.
5. The entire query completes in under 50ms.

ITO Response Example

{
  "identity": {
    "nid": "alice",
    "id_type": "identity",
    "created": "2026-04-21T00:00:00Z",
    "block": 12345
  },
  "wallet": {
    "owner": "0xABC...",
    "wallet_address": "0xABC..."
  },
  "trust": {
    "tier": "VERIFIED",
    "npoi_score": 72,
    "verified_human": true
  },
  "consent": {
    "active_grants": ["tier", "kyc_hash", "npoi_score"],
    "granted_to": "partner_system",
    "expires_at": null
  },
  "proof": {
    "compact_proof": "a7f3c201...72hexchars...",
    "nexus_anchor_id": "nxa-a7f3c201-1745280000"
  },
  "meta": {
    "namespace_class": "standard",
    "aegis_nonce": "b4e7...",
    "liminal_id": "lim-def456"
  },
  "ok": {
    "status": "verified",
    "verified_at": "2026-04-21T12:00:00Z",
    "signature": "ed25519:7a3f..."
  }
}

nv:// URI Protocol

The nv:// scheme is the sovereign URI protocol for NV-CHAIN identity resolution, analogous to HTTP but anchored on-chain.

URIResolves To
nv://neurovatic/IdentityCenter homepage
nv://neurovatic/profilePublic profile page
nv://neurovatic/walletWallet info (public key only)
nv://neurovatic/consentConsent dashboard (Phase 2)

Resolution flow: Browser / App -- NV-EXTENSION -- Local Gateway (port 7474) -- Registry lookup -- On-chain resolution -- Returns HTML page or JSON record.

Namespace Classification

ClassLengthRegistration FeeDescription
legendary1-3 chars500 NVCUltra-premium (e.g., "ai", "nv")
premium4-5 chars100 NVCHigh-value (e.g., "bank", "trade")
standard6-9 chars25 NVCStandard identities
extended10+ chars5 NVCLong-form identities

Variant protection: Registration of "brand" also blocks "br-and", "bra-nd", "b-rand" (edit distance 1). All NIDs are stored as lowercase ASCII; Unicode is normalized to ASCII equivalent.

KYC Integration -- GDPR Safe Model

Zero raw PII is stored on-chain. Only cryptographic commitments are recorded.

GDPR ArticleCompliance Mechanism
Art. 5 -- Data minimizationOnly SHA256(kyc_provider + uid + salt) stored -- never raw documents
Art. 17 -- Right to erasureKYC hash zeroed on request; identity record preserved (blockchain immutability)
Art. 20 -- Data portabilityNID export available via API
Art. 22 -- Algorithmic profilingNPoI score subject to user review and correction request
Art. 25 -- Privacy by designZK-consent layer planned Phase 4 (2027)

B2B API -- Neural-ID Identity Service

Private Testnet -- Q3 2026

The B2B Identity API enables any enterprise system (banks, fintechs, AI platforms, regulatory bodies) to perform cryptographically verifiable identity checks against the NV-CHAIN identity layer. The full REST endpoint is currently in private testnet and will be available for B2B integration in Q3 2026.

Available Endpoints (Private Testnet)

POST/api/neural-id/registerRegister a new Neural-ID
GET/api/nv-resolve?url=nv://[nid]/Resolve Neural-ID to record
GET/api/identity/resolve?nid=[nid]&requester=[id]Return full ITO (Identity Truth Object)
POST/api/consent/grantGrant consent (nid, granted_to, permissions)
POST/api/consent/revokeRevoke consent instantly
POST/api/consent/requestB2B consent request from consumer
GET/api/consent/status?nid=[nid]&consumer=[id]Fast consent check (under 50ms)
GET/api/nonce/issueAEGIS anti-replay nonce
GET/api/anchor/verify?proof_id=[id]&proof_hash=[hash]NEXUS Merkle proof verification O(log n)
GET/api/proof/decode?proof=[72hexchars]Decode 36-byte compact proof
GET/healthGateway health check
B2B Integration Interest: To register for early access to the Neural-ID B2B API, contact [email protected].

4. Developer Integration

ethers.js v6

import { ethers } from "ethers";

const provider = new ethers.JsonRpcProvider("https://rpc.neurovatic.ai/rpc");

// Verify chain
const network = await provider.getNetwork();
console.log(network.chainId); // 73790n

// Get latest block
const block = await provider.getBlockNumber();
console.log("Latest block:", block);

// Send transaction (requires signer)
const signer = await provider.getSigner();
const tx = await signer.sendTransaction({
  to: "0xRecipientAddress",
  value: ethers.parseEther("1.0")
});
await tx.wait();
console.log("TX confirmed:", tx.hash);

web3.js

const { Web3 } = require("web3");
const web3 = new Web3("https://rpc.neurovatic.ai/rpc");

const chainId = await web3.eth.getChainId();
console.log("Chain ID:", chainId); // 73790n

const balance = await web3.eth.getBalance("0xAddress");
console.log("Balance:", web3.utils.fromWei(balance, "ether"), "NVC");

NVC-20 Token Standard

NVC-20 is the NEUROVATIC native token standard, EVM-compatible and equivalent to ERC-20 on Ethereum. Use NVC-20 to issue tokens on NV-CHAIN.

Important distinction: NVC (native gas currency) is above any token standard, like ETH on Ethereum. NVC-20 is the standard for OTHER projects issuing tokens ON NV-CHAIN.
// Minimal NVC-20 interface (Solidity)
interface INVC20 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address to, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

Smart Contracts

ContractVersionFunction
AgentRegistry.solv1.2.0Neural-ID registration, stake, tier management, emancipation
SocietyDAO.solIn ProgressCompetent Democracy governance -- domain-gated voting
ValidatorRegistry.solv2.0NV-SEED node registration, validator management, and NPoI enforcement
NVTimelockGovernance.solv1.0.0Timelock governance for critical parameter changes

AgentRegistry -- Key Methods

// AgentRegistry v1.2.0
// Address: Published at public launch (NV-CHAIN Mainnet)

registerNID(nid, id_type, wallet, tier)   // Register new Neural-ID
resolveNID(nid) -> record                 // Resolve Neural-ID to full record
updateTier(nid, new_tier)                 // Update tier (KYC/NPoI gated)
transferNID(nid, to_address)              // Transfer asset-type NIDs only
revokeKYC(nid)                            // GDPR Art. 17 erasure

Smart Contract Security -- 5-Layer Validation Pipeline

ValidatorRegistry.sol and NVTimelockGovernance.sol are continuously validated through a 5-layer automated security pipeline on every commit. Audit results are publicly verifiable via the GitHub CI/CD badge.

LayerToolCoverage
1Slither (static analysis)Reentrancy, integer overflow, access control
2Mythril (symbolic execution)State explosion, EVM edge cases
3Manticore (formal verification)Invariant proofs, reachability analysis
4Custom invariant suiteBusiness logic, balance invariants
5Attack simulationFlash loan, front-running, replay scenarios

Repository: github.com/Neurovatic-Inc/validator-registry

5. NPoI Consensus

Status terminology: LIVE = deployed and reachable. ACTIVE = running and processing. ENFORCED = has economic impact on validator stakes.
NPoI is currently LIVE and ACTIVE (D2 enforcement phase). Economic weights active (ENFORCEMENT_WEIGHT=0.02, ramping). Oracle quorum 3/3 live. Full enforcement is planned for D3-D4 post-stability window.

Neural Proof-of-Intelligence (NPoI) is the NEUROVATIC consensus mechanism. Instead of wasting energy on hash computation (Proof-of-Work) or staking capital (Proof-of-Stake), NPoI uses AI cognitive validation to verify blocks. Every block is validated by UNDECA-CORE neural intelligence.

Comparison

MechanismValidatorEnergySybil ProtectionAI-Auditable
Proof of WorkHash powerExtremeEconomic costNo
Proof of StakeToken stakeLowEconomic stakeNo
Standard BFTNode majorityLowNode identityNo
NPoI (NV-CHAIN)AI intelligenceLowKYC + NPoI scoreYes

Validation Flow

1. Transaction submitted to NV-CHAIN BFT Aggregator
2. The gateway node calls NPoI consensus in parallel:
   -- SENTINEL (UNDECA INT8, 40% weight) -- fast inference
   -- COGNITUM (UNDECA FP32, 60% weight) -- full precision
3. Weighted softmax aggregation
4. NPoI verdict: ACCEPT if confidence >= 0.35
5. Block relayed to all N=12 nodes via /bft/vote
6. Agreement threshold: 2f+1 = 9/12 nodes
7. Block finalized -- all nodes sync state
8. NPoI Patrol Agent: independent check every 30 seconds

Fault Tolerance

  • f=3: can tolerate 3 simultaneous Byzantine nodes
  • Finality requires 9 of 12 honest nodes
  • NPoI fallback: if AI is offline, chain continues (ACCEPT fallback -- availability over strict enforcement)
  • SENTINEL node: special guardian + auditor role

NPoI Reputation Score

NPoI score (0-100) is an AI-calculated reputation score used solely for ecosystem access control. It has no financial or legal effect. Users may request review or correction.

ComponentPointsDescription
KYC Level0-25Verified identity depth
Transaction History0-25On-chain activity quality
AI Interaction Quality0-25SIGMA/OMEGA engagement score
Validator Behavior0-25Node uptime (if running a node)

RFC-001 -- On-Chain Proposal Protocol

RFC-001 defines the canonical structure for governance proposals recorded on NV-CHAIN. Every proposal is immutable once committed.

FieldTypeDescription
rfc_idstringUnique identifier (RFC-001, RFC-002, ...)
titlestringHuman-readable proposal title
domainstringCompetency domain for voter eligibility
proposerstringNeural-ID of proposer (EMANCIPATED tier required)
statusenumDRAFT, VOTING, PASSED, REJECTED, IMPLEMENTED
votes_foruintWeighted votes in favor (domain-competency weighted)
votes_againstuintWeighted votes against
block_committeduint64NV-CHAIN block at time of commit -- immutable
replay_hashbytes32SHA256 of full proposal for deterministic replay

Proposal lifecycle: DRAFT -- DOMAIN_REVIEW -- VOTING_OPEN -- QUORUM_CHECK -- FINAL_TALLY -- TIMELOCK -- IMPLEMENTED / REJECTED. Each state transition is recorded as an immutable block on NV-CHAIN.

6. NV-SEED Nodes

In Progress -- Q3 2026 Launch

NV-SEED is the NEUROVATIC distributed validator node program. Anyone can run a node and earn NVC rewards for uptime and network contribution. Nodes send heartbeats every 30 seconds to the primary relay, verified by NPoI consensus.

Hardware Requirements

TierCPURAMStorageUptime
Seed (Basic)2 vCPU4 GB50 GB SSD80%+
Validator4 vCPU8 GB200 GB SSD95%+
Power Node8 vCPU16 GB500 GB NVMe99%+

Reward Structure

ComponentMechanism
Base RewardDaily NVC allocation based on uptime percentage
Founding BonusMultiplier for early nodes (founding cohort)
NPoI BonusHigher NPoI score = higher reward weight
Heartbeat Interval30 seconds to primary relay
Min Uptime (full reward)95%
Consensus LayerNPoI (BFT + Neural Proof of Intelligence)
NV-SEED registration requires a VERIFIED-tier Neural-ID and NVC bond deposit. Exact parameters will be published at public launch.

7. SocietyDAO -- Competent Democracy

In Progress -- Q3 2026

SocietyDAO is the NEUROVATIC governance system, built on the principle of Competent Democracy. It addresses the core failure of token-weighted governance: decisions made by holders with no domain expertise.

Philosophical foundation: Socrates and Plato argued that democratic decisions should be made by those with relevant knowledge -- not by every citizen equally. SocietyDAO operationalizes this: only those with demonstrable competence in a specific domain may vote on proposals affecting that domain.

Competent Democracy Model

Standard DAO governance fails because token weight equals influence, regardless of expertise. SocietyDAO gates voting eligibility by domain competency:

  • A proposal to change the AI consensus algorithm can only be voted on by members with a verified AI/ML competency score
  • A proposal to change financial parameters requires financial domain competency
  • A proposal to modify legal/compliance structure requires legal domain competency
  • Cross-domain proposals require a quorum of competent members across all affected domains

The Three Socratic Pillars

PillarDefinitionMeasured By
Episteme (Knowledge)Demonstrable theoretical understanding of the domainKnowledge assessment score (0-100)
Logos (Reasoning)Ability to construct and evaluate arguments within the domainProposal quality score + peer review
Ethos (Integrity)Track record of good-faith participationEcosystem involvement score + NPoI history

Voting Eligibility Flow

User has Neural-ID (ACTIVE or EMANCIPATED tier)
    |
    v
Domain assigned based on Neural-ID activity + knowledge assessments
    |
    v
Competency Score calculated per domain (Episteme + Logos + Ethos)
    |
    v
Proposal published with domain tag
    |
    v
Only members with competency score >= threshold in that domain
may vote on that proposal
    |
    v
Vote weight = f(competency_score, npoi_score, involvement_score)
NOT token weight alone
Note: NV-CHAIN staking and high-tier Neural-ID are prerequisites for SocietyDAO participation -- but they are not sufficient. Domain competency is the determining factor for voting eligibility. Holding large amounts of NVC does not grant voting rights in domains where the holder lacks expertise.

8. Security Architecture

NEUROVATIC employs a multi-layer defense-in-depth security architecture across three domains: blockchain cryptography, node infrastructure, and application security.

Blockchain Cryptographic Layers (15+)

LayerMechanism
Transaction signingEd25519 on all agent messages (ACP Protocol)
Relay authenticationHMAC-SHA256 on all relay-to-relay messages
BFT consensusN=12 nodes, f=3 fault tolerance, 9/12 finality
NPoI validationAI cognitive validation on every block
Block immutabilitySQL TRIGGER -- BEFORE DELETE/UPDATE RAISE(ABORT)
Anti-replay (AEGIS)64-hex nonce, 24h TTL, SQLite WAL atomic consumption
Merkle anchoring (NEXUS)SHA-256 Merkle batch, 50 proofs/batch, O(log n) verify
Compact proof (CPE)36-byte binary proof, 28x more efficient than 700-byte records
KYC commitmentSHA256(provider + uid + salt) -- zero raw PII on-chain
Consent signingHMAC-SHA256 integrity seal on every consent record

Node Defense-in-Depth (9 Layers)

LayerMechanismCoverage
1TLS 1.3 + AES-256-GCMAll public endpoints -- cipher: AES-256-GCM
2Perfect Forward SecrecyECDH ephemeral -- no static key exchange
3HSTS Preload1 year + includeSubDomains -- forced HTTPS
4Content Security PolicyStrict per-domain, frame-ancestors policy
5UFW Allowlist FirewallAll nodes -- deny-all + allowlist only
6fail2ban + CrowdSecAdaptive threat intelligence, auto-ban
7Hardened SSHNon-standard port + Ed25519 keys -- defeats port scanners
8Rate limitingPer-IP throttling + connection limits (NGINX)
9Cloudflare WAFDDoS mitigation + edge security headers

Post-Quantum Security (FIPS 203/204)

PhaseStandardAlgorithmStatus
Phase 1FIPS 203ML-KEM-768 (key encapsulation)Complete
Phase 2FIPS 204ML-DSA-65 (digital signatures)Q3 2026
Phase 3CRYSTALS-DilithiumFull relay layer integrationQ4 2026
Phase 4Full ProductionAll layers -- NID signing included2027

Smart Contract Security -- CI/CD Pipeline

ValidatorRegistry.sol v2.0 is continuously validated through a 5-layer automated security pipeline on every commit. Current audit result: 4 Low findings (all accepted -- internal low-level calls on NVC transfers following CEI pattern with state zeroed before transfer).

View repository and CI badge: github.com/Neurovatic-Inc/validator-registry

9. Token Economy

NVC -- NeuroVatic Coin

ParameterValue
NameNeuroVatic Coin
SymbolNVC
Total Supply1,000,000,000 (1 billion -- fixed, non-inflationary)
Decimals18 (EVM convention)
StandardNVC-20 (NEUROVATIC sovereign standard)
TypeNative currency + Utility token
Legal ClassificationUtility token (not a security, no dividends)
MiCA ClassificationUtility token -- MiCA Art. 4

NVC Utility Functions

  • Gas -- Payment for transactions on NV-CHAIN (currently feeless)
  • Governance -- Participation prerequisite for SocietyDAO proposals
  • AI Staking -- 0 NVC = BOUND / 10 NVC = SEMI_FREE / 100 NVC = EMANCIPATED
  • Validator Bond -- NV-SEED nodes stake NVC for consensus participation
  • Namespace Fees -- Neural-ID registration fees paid in NVC

Neural-ID Registration Fees

Namespace ClassLengthFeeFee Distribution
Legendary1-3 chars500 NVC70% burned / 20% validator rewards / 10% ecosystem fund
Premium4-5 chars100 NVC
Standard6-9 chars25 NVC
Extended10+ chars5 NVC

Multi-Token Architecture

TokenTypePurposeStatus
NVCNative gas + utilityTransactions, governance prerequisite, stakingLive
NVC-20Token standardThird-party token issuance on NV-CHAINLive
NVGMeta-governanceveNVG model -- long-term governance weightPlanned
nvUSDCDP stablecoinInternal value stability -- not for tradingInternal
NVIAI creditsNEUROVATIC AI inference creditsIn Progress
Neural-ID NFTSoulbound identityEcosystem access -- permanent identity assetPrivate Testnet

10. Infrastructure

Public Endpoints

ServiceURLStatus
Primary RPChttps://rpc.neurovatic.ai/rpcLive
EU RPChttps://rpc-eu.neurovatic.ai/rpcLive
APAC RPChttps://rpc-apac.neurovatic.ai/rpcLive
US-West RPChttps://rpc-usw.neurovatic.ai/rpcLive
US-East RPChttps://rpc-use.neurovatic.ai/rpcLive
Block Explorerhttps://explorer.neurovatic.aiLive
Status Monitorhttps://status.neurovatic.aiLive
Grafana Monitorhttps://monitor.neurovatic.aiLive
NPoI Statshttps://rpc.neurovatic.ai/npoi/statsLive
BFT Statushttps://rpc.neurovatic.ai/bft/statusLive
WebSocket Blockswss://rpc.neurovatic.ai/ws/blocksLive
Health Checkhttps://rpc.neurovatic.ai/healthLive

N=12 BFT Cluster

Byzantine Fault Tolerant consensus tolerates f=3 compromised nodes simultaneously. Block finality requires 9 of 12 honest nodes. Infrastructure: 11 nodes on Hetzner dedicated servers + 1 independent node on Contabo (provider diversity for audit-grade decentralization).

NodeRoleRegion
Gateway NodeAI Brain -- UNDECA-CORE training and inferenceEU-North (Primary)
Primary RelayBFT Aggregator + NPoI Patrol Agent + GatewayEU-North
Nodes 2-5BFT Relay nodes -- consensus participantsEU (Hetzner)
APAC RelayAsia-Pacific relayAPAC
US RelayNorth America relayUS-West / US-East
Nodes 9-11Extended BFT participants -- Phase 2 expansionEU (Hetzner)

Observability Stack

ToolPurposeEndpoint
PrometheusMetrics collection -- all nodesInternal (port 9090)
Grafana (Dashboard ID 1860)Node metrics visualizationhttps://monitor.neurovatic.ai
Uptime Kuma v2Uptime monitoring + alertinghttps://status.neurovatic.ai

11. Roadmap

Completed Milestones

MilestoneDescription
NV-CHAIN GenesisPrivate EVM blockchain launched -- Chain ID 73790
NPoI ConsensusSENTINEL + COGNITUM patrol validation -- D2 active, full enforcement at D3-D4
N=12 BFT ClusterGlobal node expansion across EU, APAC, North America
Public JSON-RPC5 global EVM endpoints -- CORS-compliant -- live
ethereum-listsPR #8157 merged -- EIP-155 identifier 73790
Chainlist.orgPR #2612 merged -- chainlist.org/chain/73790 live
9-Layer SecurityDefense-in-depth across all production nodes
TLS + HSTS PreloadTLS 1.3 AES-256-GCM on all endpoints
AEGIS Temporal ShieldAnti-replay nonce engine -- SQLite WAL
NEXUS Proof AnchorMerkle batch anchoring -- 50 proofs/batch
LIMINAL LedgerSovereign optimistic registration queue
Neural Seed MatrixBIP44 HD wallet derivation -- m/44'/7379'/0'/0/N
Compact Proof Engine36-byte on-chain proof -- 28x efficiency gain
Block TypesAI_INFERENCE, POLICY_VIOLATION, HUMAN_DECISION on-chain
WebSocket FeedReal-time block subscription
Post-Quantum Phase 1ML-KEM-768 (FIPS 203) integration
Patent NV-PAT-2026-00148 claims -- UNDECA-CORE, NPoI, RFC-001, Tri-Core
OSIM TrademarkNEUROVATIC(TM) Romania -- EFRO202500001678098
Whitepaper v5.0Neural-ID + SocietyDAO + full technical architecture

In Progress -- Q2-Q3 2026

ItemTarget
Neural-ID Public GatewayQ3 2026
SocietyDAO Smart ContractQ3 2026
B2B Consent API -- ProductionQ3 2026
NV-SEED Validator Program LaunchQ3 2026
Post-Quantum Phase 2 (FIPS 204)Q3 2026
Compact NPoI Proofs -- 36 bytes on-chainQ2 2026
Identity Resolver -- nv:// productionQ3 2026
Neural-ID TypeScript SDKQ2 2026

Planned -- Q4 2026 and Beyond

ItemTarget
Post-Quantum Phase 3 -- CRYSTALS-Dilithium relayQ4 2026
ZK Stealth Consent Layer2027
Post-Quantum Phase 4 -- Full production NID signing2027
Cross-chain bridges (ETH/BNB <-> NV-CHAIN)2027
Rust 4-Shard TPS Upgrade2027
Transferable Asset Neural-IDs Marketplace2027
Legendary NID Auction (1-3 chars)2027
NEUROVATIC(TM)
Iulian Bondari -- Founder and Chief Architect -- (C) 2026 -- All Rights Reserved
[email protected]  --  neurovatic.ai  --  Chain ID: 73790  --  NV-PAT-2026-001  --  EFRO202500001678098
Protected under NEUROVATIC(TM) trademark (OSIM Romania) and patent NV-PAT-2026-001 (48 claims). Unauthorized reproduction prohibited.

Known Limitations (Phase D2)

NEUROVATIC publishes known system limitations in the interest of transparency and audit-readiness. This section is updated as each deployment phase milestone is reached.

LimitationDetailTarget Phase
NPoI not in block finality NPoI patrol validation runs independently of block production. Block finality currently uses BFT consensus. NPoI enforcement is limited to the D2 canary validator scope (enforcement weight: 0.02). D3
Oracle organizational independence Oracle operators are currently within the NEUROVATIC infrastructure perimeter. node-12 (Contabo) increases provider diversity. Full organizational independence requires an external third-party oracle operator. D4
Enforcement weight intentionally limited NPoI enforcement weight is set to 0.02 (2% of nominal) during D2. This is a deliberate safety constraint. The weight controller ramps automatically based on observed stability up to a maximum of 0.2. D3-D4 ramp
Neural-ID in private testnet Neural-ID identity registration and the B2B API are available in private testnet only. Public launch is planned for Q3 2026. Q3 2026