Whitepaper · Version 2026.1
edeXa: The Enterprise Hybrid Layer 1 Protocol
Technical Architecture & Ecosystem Whitepaper
- Origin
- edeXa AG, Vaduz, Liechtenstein
- Registration
- FL-0002.593.297-0
- Version
- 2026.1
Section 1
Protocol Overview & The Hybrid Imperative
Modern enterprise Web3 applications require two competing structural properties from data infrastructure: absolute data privacy for proprietary business logic, and trustless immutability for cross-company verification. Purely public networks expose sensitive corporate assets, expose enterprises to volatile transaction costs, and present compliance barriers. Conversely, isolated private networks lack decentralized trust mechanics and remain vulnerable to internal data corruption.
edeXa resolves this trade-off through a dual-layer hybrid paradigm built on an enterprise-ready Ethereum Virtual Machine (EVM) architecture. By decoupling high-performance private transaction runtimes from a globally auditable, public consensus layer, edeXa delivers a secure infrastructure where public trust matches private control.
┌────────────────────────────────────────────────────────┐
│ edeXa Public L1 Mainnet │
│ (Settlement Layer · Public Auditable Proofs) │
└───────────────────────────▲────────────────────────────┘
│
[ HybridX Cryptographic Anchor Layer ]
(Merkle State Root Commits & Gas Utility)
│
┌───────────────────────────▼────────────────────────────┐
│ edeXa Enterprise Sidechains │
│ (High-Performance, Private BaaS Layers) │
└────────────────────────────────────────────────────────┘Section 2
The L1 Mainnet: Public Trust & Settlement Layer
The edeXa L1 Mainnet is an open, enterprise-optimized, highly decentralized public network. It serves as a globally accessible settlement engine, validating cryptographic state root commitments submitted by private enterprise layers.
Core Protocol Engineering Specifications
| Parameter | Specification | Objective |
|---|---|---|
| Client Engine | Hyperledger Besu | Enterprise-grade, production-hardened EVM client |
| Consensus Core | QBFT (Istanbul Variant) | Instant finality, deterministic state transitions |
| Validator Profile | Proof of Authority (PoA) | Identity-verified, KYC'd institutional nodes |
| Block Finality | 1-5 s | Deterministic finality; variable between 1 and 5 seconds depending on network load; zero fork risk |
| Network Throughput | 10,000+ TPS (theoretical) | High-concurrency enterprise transaction handling |
| Sustainability | Carbon-Light / ISO-Aligned | Low energy consumption optimized for ESG compliance |
QBFT Consensus Architecture
The public layer relies on a QBFT (Quorum Byzantine Fault Tolerance) variant. This consensus mechanism completely eliminates the possibility of state forks. Transactions are validated by known, identity-verified institutional validator nodes, ensuring high security and legal accountability. Once a block is committed to the mainnet, it achieves absolute, non-reversible finality under sub-second thresholds - satisfying strict enterprise operational and regulatory audit requirements.
Section 3
Private Sidechains: Blockchain-as-a-Service (BaaS)
For core day-to-day operations, enterprises deploy independent, permissioned Private Layers. These sidechains offer fully encrypted states, fine-grained access control lists, and isolated execution queues, guaranteeing complete data isolation.
Enterprise Deployment & Runtime Topology
Enterprises spin up automated runtime environments through the edeXa BaaS Intelligence Engine, which deploys a pre-configured Besu client paired with the HybridX extension library. The runtime is infrastructure-agnostic - it runs on any major cloud provider, private cloud, or on-premise bare-metal hardware, giving each organization full control over where its data lives.
[ edeXa BaaS Intelligence Engine ]
(Pre-Configured Besu Client + HybridX Extension Library)
│
│ • Rapid Node Setup Templates
│ • HybridX Proof Generation Components
│ • Infrastructure-Agnostic Deployment
▼
[ Customer-Owned Runtime Infrastructure ]
Any Cloud (AWS · Azure · GCP · Private) · On-Prem · Bare-Metal
│
│ (Secure Transport: HTTPS / 443)
▼
[ edeXa HybridX Layer ]
│
│ • EVM Smart Contract Runtime Execution
│ • Local Transaction Signing
│ • Off-chain ↔ On-chain Data Bridging
│ • Automated EDX Anchor Settlement
▼
[ edeXa L1 Mainnet ]Formal Runtime Model
Each enterprise deployment is modeled as a tuple defining its node set, execution environment, and anchoring cadence:
- N = { n₁, n₂, ..., nₖ } - validator node set (k ≥ 4 for BFT safety).
- E - execution environment (any cloud, on-prem, or bare-metal host).
- C - Besu client + HybridX extension configuration vector.
- τ - anchor interval (seconds) between Merkle commits to the L1.
- Φ - HybridX proof generator producing succinct state attestations.
Byzantine Fault Tolerance Bound
The QBFT consensus engine running inside each sidechain tolerates up to f faulty validators out of k, where:
Anchor Cadence & Settlement Cost
Given an average sidechain throughput of λ transactions per second and an anchor interval τ, each L1 commit attests to a batch of size B = λ · τ. The amortized on-chain cost per private transaction collapses to:
where G_anchor is the fixed gas cost of one HybridX anchor call and P_gas the prevailing EDX gas price. As τ or λ grow, the marginal settlement cost approaches zero, while the security guarantee per transaction remains anchored to the public L1.
Deployment Algorithm (Pseudocode)
algorithm DeploySidechain(tenant T, infra E, params π):
1. C ← BaaS.RenderConfig(T, π) // besu + HybridX manifests
2. N ← Provision(E, C, k = π.validators)
3. Genesis ← QBFT.InitGenesis(N, C)
4. for each nᵢ ∈ N:
nᵢ.start(Genesis, peers = N \ {nᵢ})
5. await QBFT.Quorum(N) ≥ ⌈2k/3⌉ // liveness handshake
6. HybridX.Bind(N, anchorInterval = π.τ)
7. loop every τ seconds:
Sᵢ ← Sidechain.CurrentState()
Rᵢ ← MerkleRoot(Sᵢ)
πᵢ ← Φ.Prove(Sᵢ, Sᵢ₋₁)
tx ← BuildAnchorTx(Rᵢ, πᵢ)
L1.Submit(tx) // settled in EDX
8. return Endpoint(T) = { rpc, ws, relay }Security Invariant
For every sidechain block i, the system maintains the invariant that an external observer can verify integrity without access to private state:
Any divergence between a replayed Merkle root and the anchored value on L1 immediately invalidates the sidechain state, giving auditors a mathematically conclusive integrity proof without exposing the underlying records.
Section 4
Cryptographic Anchoring & Interoperability
The core technical breakthrough of the edeXa framework is its ability to prevent state corruption on private sidechains without exposing sensitive enterprise data to the public mainnet.
HybridX Trust Anchor Mechanics
Let Si represent the state of a private enterprise sidechain at block i. The state transition is determined by the processing of a transaction set Δ:
The private layer condenses its entire updated database state into a single cryptographic commitment via a Merkle-Patricia Trie root hash Ri:
The HybridX Integration Layer automatically packages this root hash Ri into an automated, public transaction. This payload is transmitted via secure channels to the edeXa Mainnet, where an on-chain smart contract updates the master cryptographic anchor record:
Once written to the Mainnet, the historical records of the private sidechain are mathematically locked. External auditors can verify the exact integrity of internal private data registries by re-hashing the private data and matching it to the public Mainnet root hash commit. Because only non-personalized, non-invertible cryptographic hashes are recorded on the public ledger, the architecture maintains full compliance with global data protection mandates (e.g., EU-DSGVO / GDPR right-to-erasure rules).
XChainBridge Core
The native XChainBridge acts as a cross-chain transport mechanism between distinct enterprise sidechains and the public Mainnet.
- Supports atomic asset mapping, secure token locks, and metadata message passing.
- Since both private and public layers share a native EVM architecture, developers can write, test, and deploy code using standard tooling (Metamask, Hardhat, Remix, Foundry).
Section 5
The Vertical Web3 Stack: Enterprise Service Modules
Unlike legacy protocols that provide only an empty base layer, edeXa deploys a pre-compiled ecosystem of developer-ready tools. These modules operate directly within the enterprise runtime environment, allowing businesses to activate advanced on-chain features via standardized API wrappers.
Trust & Security
- · eID
- · eStamp
- · eSign
- · eNotary
Assets & Logistics
- · eAssets
- · eIOT
- · eTwin
- · eDatabase
Governance & Workflows
- · eVote
- · eGovern
- · eDocs
- · eArchive
Native Core Modules Matrix
| Module | Mechanism | Application |
|---|---|---|
| eID | Self-Sovereign Identity (SSI) | W3C-compliant decentralized identity profiles for workers and network actors. |
| eStamp | Cryptographic Notarization | Tamper-proof, immutable timestamping of arbitrary document payloads. |
| eSign | Legally-Binding Cryptography | On-chain digital signature confirmation meeting global compliance policies. |
| eNotary | Programmable On-Chain Trust | Automated, smart-contract-driven multi-party document verification. |
| eAssets | Tokenization Framework | ERC-20, ERC-721, and ERC-1155 token standard minting and fractionalization. |
| eIOT | Connected Device Validator | Cryptographic authentication of data streams generated by IoT hardware devices. |
| eTwin | State-Rooted Digital Twins | Real-time virtual state replication mapping physical assets on-chain. |
| eDatabase | Verifiable Query Engine | Sub-second, cryptographically provable read/write enterprise database. |
| eVote | Anonymous Governance | Secure, pseudonymous ballot submission and zero-knowledge vote tracking. |
| eGovern | On-Chain Operations | Programmable workflow logic gates for corporate and institutional approvals. |
| eDocs | Authenticated Records | Encrypted metadata handling for fast document integrity checking. |
| eArchive | Long-Term Audit Storage | Permanent, verifiable tracking system for historical archival databases. |
Section 6
Network Access Paradigms: Dual-Path Execution Model
The edeXa architecture provides two distinct onboarding primitives to access the core L1 Mainnet. Both paths settle on the same ledger state but offer customized execution environments depending on the developer or enterprise integration profile.
1. Developer Path
Native EVM Execution (Gas-Driven)
Designed for standard Web3 native projects, dApps, and smart contract developers.
- Interface: Standard JSON-RPC (Hardhat, Foundry, Remix).
- Mechanics: Deploy immutable Solidity smart contracts directly.
- Settlement: Gas paid natively in EDX per block execution.
2. Enterprise Path
Abstracted Relay Execution (Gasless)
Engineered for legacy corporations and Web2 stacks requiring frictionless integration without cryptocurrency overhead.
- Interface: edeXa Relay and EDX Connector SDK endpoints.
- Mechanics: End-users interact with zero wallets or gas.
- Settlement: Enterprise relayer batches and settles gas on the L1.
Section 7
Tokenomics & Network Utility
The edeXa Token (Ticker: EDX) is the fundamental utility asset that drives the hybrid processing framework of the network.
Name
edeXa
Ticker
EDX
Type
Utility Token
Hard Cap
10,000,000,000 EDX
Core Token Utilities
- Hybrid Execution Security: Interacting with the hybrid anchoring module requires EDX to cover state-root validation costs.
- Anchor Settlement Processing: Every cryptographic commitment processed from private BaaS setups onto the public L1 consumes EDX to execute anchor-tracking smart contracts.
- Validator Incentivization: Institutional Masternodes maintaining the public QBFT network receive transaction processing fees in EDX, stabilizing the economic security loop.
Cross-Chain Smart Contract Deployments
To provide enterprise flexibility across multi-chain systems, the native EDX token is cross-chain compatible. The smart contract address is uniformly deployed across dominant EVM mainnets:
0xC114678C6e4654d041B2006C90f0478b444c4E20xC114678C6e4654d041B2006C90f08478b444c4E20xC114678C6e4654d041B2006C90f0478b444c4E2Section 8
Strategic Technology Roadmap
edeXa focuses systematically on scaling its hybrid engine to ensure operational reliability, developer adoption, and streamlined integration parameters for traditional tech infrastructures.
Phase 1: Infrastructure Stabilization & Core Tooling
- Transition internal enterprise sidechain engines from legacy architectures to Hyperledger Besu base clients.
- Initialize the public-facing developer sandbox hub, exposing open API endpoints for the complete Enterprise Service Module stack (eID, eStamp, eSign).
- Activate the primary on-premise and cloud validator setup scripts for identity-verified institutional nodes.
Phase 2: Hybrid Scaling & Ecosystem Expansion
- Public production launch of the automated edeXa Blockchain-as-a-Service (BaaS) cloud platform with integrated billing mechanisms.
- Mainnet rollout of the TrustX Bridge system to automate the packaging and anchoring of private sidechain Merkle roots onto the L1 public network.
- Deployment of the edeXa Smart Directory (v1), serving as a globally accessible registries map for verified enterprise identities on-chain.
- Broaden cross-chain communications frameworks via institutional bridge handlers to facilitate collateralized enterprise asset settlement.
Section 9
Technical Protocol Disclaimer
This whitepaper is presented solely for technical and informational architecture review. The specifications, network parameters, throughput capacities, and module functionalities described herein represent the current state of the edeXa network design. As an evolving decentralized infrastructure project open to continuous software updates, the underlying protocol code, smart contract configurations, and consensus mechanisms may be updated, optimized, or altered over time.
Nothing in this technical document constitutes investment, financial, legal, tax, or regulatory compliance advice. The native network asset (EDX) functions strictly as a functional execution utility token to process computational state transitions, manage relay mechanisms, and reward validation node operators within the hybrid ecosystem.