Network Information
The edeXa Network is a hybrid blockchain ecosystem tailored for enterprise-grade applications, developers, and partners who demand performance, reliability, and real-world utility.
With our recent X-Boost upgrade, we’ve supercharged the core of the network — delivering faster block finality, resilient architecture, and a smoother developer experience. Whether you're deploying enterprise dApps or exploring the next innovation in Web3, edeXa gives you the tools and foundation to build with confidence.
🔗 Quick Access to Our Networks
Mainnet Explorer – Dive into live data, blocks, and contracts: https://explorer.edexa.network/
Private B2B Networks (Hybrid) – Enterprise-grade permissioned environments for business-critical apps: https://hybrid.edexa.network/
Testnet (Developer Playground) – your lab for experimentation and testing under real-world conditions: https://explorer.testnet.edexa.network/
⚙️ edeXa Network Overview
The edeXa blockchain infrastructure has been fine-tuned to meet the demands of developers, validators, and businesses alike. With our multi-layered approach, we support public, private, and hybrid use cases — each environment fine-tuned to support reliability, speed, and compliance.
🧠 Consensus Mechanism: QBFT at Its Core
edeXa leverages Quorum Byzantine Fault Tolerance (QBFT), a battle-tested consensus protocol from Hyperledger Besu, optimized for permissioned environments and business logic.
✅ Instant Finality – Blocks are final once committed. No waiting, no forks.
🔐 Byzantine Fault Resilience – Tolerates malicious nodes and ensures network trust.
🌱 Energy-Efficient – A green alternative, without compromising on speed or integrity.
🏢 Enterprise-Ready – Designed for use in B2B scenarios, compliant and configurable.
🚀 What’s New with X-Boost?
The X-Boost upgrade is our latest network enhancement, bringing:
⚡ Increased Transaction Throughput
🔄 Optimized Validator Rotation
🧩 Smarter Node Configuration
🛡️ Better Fault Detection and Recovery
All environments — from testnet to mainnet — now operate under these new performance standards, ensuring a consistent and reliable experience for anyone building or integrating with edeXa.
Why Developers Choose edeXa
🔄 Seamless Cross-chain Compatibility Connect effortlessly across networks using our native edeXa Bridge, powered by secure and efficient cross-chain protocols.
🧰 Out-of-the-box Web3 Tools & APIs Speed up development with ready-to-integrate APIs, SDKs, and intuitive tools designed to support real-world business workflows.
🧱 Smart Contract Support (Solidity/EVM-based) Write and deploy smart contracts using the industry-standard EVM and Solidity, making it easy to integrate and migrate from existing Ethereum tools.
🚧 Faucet for Testnet EDX Tokens Start building and testing today. Get free EDX testnet tokens here: https://faucet.edexa.com/
🛠️ GitHub Repos & Contract Templates Jumpstart your project with reusable smart contract templates and reference implementations from our official repo: https://github.com/devEdexa/
Hybrid Model

Background: Private Networks
In edeXa PrivateNETchannels act like private sub-networks where organizations can transact and interact via chaincodes (smart contracts) in isolation. Each channel maintains its own independent blockchain, which means multiple channels can co-exist without interfering with each other.
While this model promotes privacy and scalability, it comes with a potential risk:
If someone gains control over multiple organizations in a channel, they might manipulate past data unnoticed.
🔐 The Role of the Master Channel
To solve this, edeXa introduces the Master Channel, a meta-layer that strengthens the auditability and tamper-resistance of all channels.
🧩 How It Works:
A trusted system scans each Fabric channel at fixed intervals.
For every channel, it retrieves:
jsonCopyEdit{ "channelName": "", "currentBlockHash": "", "currentBlockNumber": "" }
This data is bundled and stored in the Master Channel—a dedicated smart contract running on the edeXa public blockchain.
The public nature of this contract ensures:
Transparency
Immutability
Cross-verification with the original permissioned channels
This structure guarantees that even private Fabric data now has a public integrity layer, verifiable by external auditors or internal compliance tools.
🧱 Contract Basics
Name:
MasterChannelLedger
Inherits:
Ownable
(only the contract owner can push updates)
📦 Data Model
solidityCopyEditstruct MasterChannelRecord {
string data;
uint256 timestamp;
}
data
: Aggregated string (channel name, hash, block number)timestamp
: Time of the record entry
🗃️ State Variables
ledger[]
: Stores all records sequentiallyMasterChannelDataToRecord
: Maps data strings to their timestamps for quick lookup
⚙️ Key Functions
addMasterChannelRecord(data)
Only callable by the owner (edeXa)
Adds a new record if it doesn’t already exist
Updates both the ledger and the mapping
getAllData()
Returns an array of all stored data entries and timestamps
Useful for auditors or syncing systems
getTimestampForData(data)
Returns the timestamp for a specific data entry
Reverts if the data isn't found
📌 Summary
The Master Channel duo ledger is a smart innovation that links private blockchain activity to a public audit trail—without exposing sensitive internal data. It’s a core part of how edeXa ensures long-term transparency, accountability, and trustworthiness in its B2B blockchain ecosystem.
For devs integrating or querying the Master Channel, you now have a secure, verifiable, and easy-to-use contract to work with.
Last updated