Vexidus Blockchain Technical Whitepaper
Next-Generation Layer 1 Infrastructure Version: 3.0 Date: March 2026 Status: Beta Testnet Live | Mainnet Target 2026
Executive Summary
Vexidus is a Layer 1 blockchain built from the ground up to solve real problems: quantum vulnerability, cross-chain fragmentation, developer complexity, and bridge security. It runs a live 5-validator testnet (across 4 continents) that has produced over 1.2 million blocks with zero crashes and zero manual restarts.
Vexidus is built on eight pillars that work together as a unified system:
- IntentVM (U.S. Patent App. 19/571,463) -- 1 intent, 1 signature, N operations. Declarative execution.
- HyperSync Consensus + Vexcel -- Leader rotation with weighted selection, adaptive attestation DAG for global latency fairness, jailing, and reputation scoring.
- VexBridge (U.S. Patent App. 63/987,929) -- Vaultless canonical token bridge using burn-and-mint and stateless/limbo resolution.
- VSA v2 -- Smart accounts with Ed25519 + Dilithium3 dual-signature quantum hardening. Includes VNS (
.vexname service) and VIP (Vexidus Intent Programs) as identity and programmability extensions. - VexForge -- Ten token standards (VSC-7, VSC-8, VSC-21, VSC-55, VSC-88, VSC-LAUNCH, VSC-REP, VSC-20, VSC-99, VSC-SAFE) with protocol-level anti-rug protection, on-chain governance, and native DAOs.
- VexiDEX -- Native on-chain AMM with constant-product pools and LP token management.
- ElasticState -- Intelligent 3-tier storage engine (Hot/Warm/Cold) with LtHash homomorphic state root accumulator. State grows without degrading performance.
- Atomence (U.S. Patent App. 63/998,160) -- Cross-chain settlement layer enabling direct exits to origin chains without reverse bridging.
Current Status: Solo founder-built from concept to live testnet in 16 months. 17 Rust crates, 120 operation discriminants, 113+ RPC endpoints, 348 passing tests, 18 deployed frontends. 30+ on-chain upgrades via VexVisor. 1.8M+ blocks produced, 5 validators across 4 continents.
Table of Contents
- The Problem
- The Eight Pillars
- Architecture Overview
- Performance and Benchmarks
- Security Model
- Token Economics
- Ecosystem and Applications
- Roadmap
- Competitive Analysis
- Team and Development
1. The Problem
Scalability vs. Decentralization
Ethereum processes ~15 TPS with 12-minute finality. Bitcoin manages ~7 TPS. "Fast" L1s like Solana achieve 65K TPS but face periodic outages and centralization concerns. No chain has proven it can sustain high throughput while remaining reliable and decentralized.
Quantum Vulnerability
NIST estimates quantum computers could break current blockchain cryptography by 2030-2035. Over $3 trillion in cryptocurrency assets rely on ECDSA or Ed25519 alone. No major L1 has implemented post-quantum cryptography at the protocol level alongside classical signatures.
Bridge Security Crisis
$1.1B+ lost in bridge hacks in 2022 alone (Wormhole $320M, Ronin $625M, Nomad $190M). Every major hack targeted the vault -- the smart contract holding locked tokens. The vault-based bridge model is fundamentally broken.
Developer and User Complexity
Users must understand gas optimization, transaction construction, and chain-specific tooling. "Swap 100 USDC for ETH" requires multiple transactions, multiple signatures, and MEV awareness on most chains.
2. The Eight Pillars
Pillar 1: IntentVM (U.S. Patent App. 19/571,463)
The Problem: Traditional blockchains require users to specify exact execution steps. A simple "swap then stake" requires 2 transactions, 2 signatures, and 2 consensus rounds.
The Solution: IntentVM accepts a single intent -- expressed as structured JSON or natural language -- and decomposes it into the optimal sequence of native operations, executed atomically in one block slot.
User: "swap 100 VXS for USDC and stake the rest"
IntentVM decomposes:
1. Swap (VXS -> USDC via VexiDEX)
2. Stake (remaining VXS to validator)
Result: 1 intent, 1 signature, 2 operations, 1 block slot
Key Advantage -- 1 Intent, 1 Signature, N Operations:
On Solana or Ethereum, "swap then stake" = 2 transactions, 2 signatures, 2 consensus rounds. On Vexidus, it is 1 bundle, 1 signature, 1 round. This gives Vexidus 3-5x effective throughput per user action compared to per-transaction chains.
Multi-Input Atomic Swaps: IntentVM processes multi-input operations atomically. "Swap 10 USDC and 10 USDT for VXS" executes both conversions in one block slot with unified slippage protection -- on other chains this requires 2 separate transactions with slippage risk between them.
Provenance: IntentVM was first built and tested as a Solana on-chain program (Program ID: AcfdgJoduQxLLPwFDVTi3FWrqEERPhmQ9UAwNkrkYfnJ). Real transaction proofs exist from Solana localnet (slot 331,223, 12,099 compute units). It was then rebuilt as a core protocol feature on Vexidus -- not a theoretical design, but a port of working code.
Supported Goals:
- Swap -- Token exchange via VexiDEX pools with auto-routing through intermediate tokens
- Stake -- Delegate VXS to validators
- Provide Liquidity -- Add to AMM pools
- Transfer -- Send tokens to any address or VNS name
- Bridge -- Cross-chain with tier-aware proof verification
- Composite -- Atomic multi-step (bridge + swap + stake in one intent)
- Rebalance -- Portfolio rebalancing to target allocations (e.g. "50% VXS, 30% USDC, 20% ETH")
- DCA / Recurring -- Scheduled repeated execution (e.g. "buy 10 VXS every day for 7 days")
- Conditional / Limit Orders -- Price-triggered execution (e.g. "swap USDC for VXS if price below 0.15")
- Synthetic Assets (VSC-71) -- Tokenized stocks, commodities, and perpetual contracts (licensee interface)
- Custom -- VNS registration, future LLM-parsed intents
Intelligent Routing: When no direct liquidity pool exists between two tokens, IntentVM automatically discovers and executes multi-hop routes through intermediate pools, selecting the path with deepest liquidity. A 25% price impact guard protects users from excessive slippage on large orders.
Natural Language in 7 Languages: Users can express intents in English, Spanish, Portuguese, French, German, Italian, or Japanese. The NL parser normalizes non-English input and extracts inline constraints (slippage, deadline, max fee) from any intent.
RPC Endpoints:
vex_submitIntent-- Submit natural language or structured JSONvex_simulateIntent-- Full dry-run with per-pool quotes, price impact, balance checks, and warningsvex_previewIntent-- Human-readable wallet confirmation (summary, fee, price impact, route)vex_getExecutionPlan-- Preview execution steps and gas estimate before submissionvex_getIntentStatus-- Query result by hashvex_getPrice-- Spot price query with direct and auto-routed pricing, TWAP (time-weighted average price) for oracle-grade reference data
Traditional Flow vs. IntentVM:
| Action | Traditional (Ethereum/Solana) | Vexidus IntentVM |
|---|---|---|
| Swap + Stake | 2 transactions, 2 signatures, 2 blocks, MEV-exposed between steps | 1 intent, 1 signature, 1 block, atomic |
| Bridge + Swap + Provide LP | 3 transactions across 2 chains, minutes of waiting, 3 gas fees | "Bridge 10 SOL and add liquidity to SOL/VXS" -- 1 intent, 1 block |
| Weekly DCA into 3 tokens | 3 recurring approvals, 3 DEX interactions per week, manual rebalancing | "DCA $200 weekly split 50/30/20 into VXS, ETH, USDC" -- 1 intent, automated |
| Buy tokenized stock | Off-chain broker, T+2 settlement, custody risk | "Buy 10 AAPL with USDC" -- 1 intent, instant settlement, self-custodial |
IntentVM Licensing -- Ecosystem Flywheel:
IntentVM is architected as a three-layer system designed for wide adoption: a patented core engine (intent parsing, goal decomposition, constraint enforcement), a ChainAdapter trait (pluggable interface for any blockchain's token registry, DEX routing, and address format), and chain-native execution (atomic operations on the target chain).
This architecture enables a licensing flywheel: wallets, DEXs, and chains can license the patented IntentVM core to offer natural-language intent execution on their own platforms. Each licensee deepens the ecosystem while Vexidus retains the deepest integration and performance moat -- IntentVM on Vexidus executes natively within the consensus layer (zero overhead, atomic guarantees), while licensed deployments operate as an application-layer abstraction. The commercial model: license widely, but the best experience is always on Vexidus native.
The IntentVM SDK is available to licensees with adapter implementations for Solana (SPL tokens), EVM chains (ERC-20), and Vexidus (native VSC tokens). Each adapter maps the same natural language to chain-specific operations, enabling "write once, execute anywhere" intent semantics.
VexFi -- Protocol-Level Financial Infrastructure:
VexFi is the financial infrastructure layer of the Vexidus ecosystem. It unifies payments, trading, staking, custody, and portfolio management into a single interface -- built entirely on Vexidus L1 primitives. VNS-aware payments, VexiDEX spot trading, VSC-88 multi-sig custody vaults, and natural-language intents all surface through the VexFi SDK and REST API.
The intent architecture already supports complex financial operations expressed in plain language:
"Rebalance my portfolio to 60% staking / 40% liquidity, max 0.7% slippage"
→ Decomposes into: portfolio query → swap → stake, executed atomically
"DCA $200 weekly into my target allocation"
→ Recurring intent: scheduled rebalancing, no recurring approvals needed
"Send 100 VXS to alice.vex"
→ VNS resolution + payment, one intent, one signature
vex_getPrice provides the oracle foundation -- TWAP pricing across VexiDEX pools, with external oracle integration planned for real-world asset pricing (stocks, commodities, forex). This is the data layer that makes portfolio intelligence, limit orders, and synthetic asset pricing possible.
VexFi also surfaces VSC-71 synthetic assets -- tokenized equities, indices, and perpetual contracts -- as they become available. Oracle-priced, collateral-backed, self-custodial. Where TradFi requires a brokerage account with custody risk and T+2 settlement, VexFi delivers the same capabilities with instant settlement and zero counterparty risk.
Payments, trading, staking, and custody vaults are live. Synthetics (VSC-71) and advanced margin are in design phase. See vexfi.com.
Pillar 2: HyperSync Consensus + Vexcel
Architecture: Weighted leader rotation with Byzantine fault tolerance, enhanced by the Vexcel (Vexidus Accelerated Consensus Layer) adaptive attestation DAG. Validators take turns proposing blocks based on stake weight and performance score.
How It Works:
- Leader selection uses
blake3(block_height + validator_set_hash)seeded randomness - Weight =
stake * performance_score(0.5-1.0 range) - Leader proposes block containing up to 10,000 transactions
- Block is gossiped to all peers via GossipSub (QUIC transport, TLS 1.3)
- Validators verify proposer signature (Ed25519) and execute transactions
- Block finalized after gossip consensus
Vexcel -- Adaptive Attestation DAG:
When the leader is fast, the chain is purely linear -- zero overhead. When the leader is slow (geographic latency, network congestion), non-leader validators produce lightweight attestation blocks -- signed, zero-transaction blocks that prove liveness and state agreement without entering the canonical chain. The next leader references attestation hashes in its block header, forming a DAG of liveness proofs.
This solves the geographic fairness problem that plagues traditional BFT chains: before Vexcel, the closest validator to the network center produced 68% of blocks. After Vexcel, all 5 validators produce within 16-24% (ideal: 20%) regardless of geographic location.
Attestation blocks replace four separate mechanisms (failover, voting, heartbeat, liveness proof) with one unified concept. No rollbacks, no fork-choice confusion, no special cases.
Block Production:
- Adaptive block time (~2s nominal, 500ms-12s range based on network load)
- Pressure-aware micro-blocks: 2s normal, 1s high load, 500ms extreme
- Up to 10,000 transactions per block
Validator Economics:
- Minimum stake: 1,000 VXS
- Block rewards: Time-weighted (13M VXS/yr Year 1-2). 85% Validator Quality Pool (density-weighted 0.5x-2.0x), 15% Foundation Treasury
- Transaction fees: 80% to block proposer, 20% Foundation Treasury (no burn -- fixed supply)
- Commission: 0-50%, configurable per validator
No Slashing -- Jailing Instead: Vexidus does not slash validator stake. Misbehaving validators are jailed via double-sign detection with escalating penalties (1h → 24h → 7d → 30d). This protects delegators from losing funds while still incentivizing uptime. Reputation scoring (7-factor, 100-point scale) affects leader selection weight and future reward multipliers.
Reputation Factors:
| Factor | Weight | Measures |
|---|---|---|
| Uptime | 25 pts | Block production consistency |
| Commission fairness | 15 pts | Reasonable rates, stability |
| Self-stake | 15 pts | Skin in the game |
| Governance participation | 15 pts | Upgrade voting activity |
| Tenure | 10 pts | Time active on network |
| Delegator trust | 10 pts | Stake attracted from others |
| Reliability | 10 pts | Historical jail count, missed blocks |
Pillar 3: VexBridge -- Vaultless Canonical Token Bridge
The Core Innovation: Tokens are never locked in vaults. They are either burned on the source chain or rendered stateless (provably unspendable). Vexidus then mints a canonical equivalent -- a first-class native token, not a wrapped representation.
Traditional bridges: User -> Vault (holds tokens) -> Mint wrapped token
Risk: Vault hack = total loss
VexBridge: User -> Burn/Limbo (tokens destroyed) -> Mint canonical token
Risk: Nothing to hack (no vault exists)
Two Token Categories:
Burnable tokens (USDC, USDT, DAI, WBTC, etc.) -- tokens with burn functions on their source chain. Flow: burn on source -> ZK proof verifies burn -> Vexidus mints canonical equivalent. Bridge back is possible via burn on Vexidus -> mint on source.
Non-burnable tokens (native SOL, ETH, BTC) -- the "Stateless/Limbo" innovation. User sends tokens to their VSA address on the source chain. Since VSAs exist on Vexidus, NOT on Solana/Ethereum, the destination does not exist on the source chain. The tokens become stateless -- sent but never landed anywhere. They are in limbo: provably not in anyone's possession. ZK proof verifies the transaction happened AND that the destination is a non-existent VSA address.
Bridgeability Classification:
- Full Round-Trip -- Can bridge in and out (burnable tokens, controlled tokens)
- Limbo-Locked -- Can bridge in; out requires liquidity matching (native SOL, ETH, BTC)
- One-Way In -- Can come in, no established path back (unknown tokens)
VexBridge tells users their bridgeability BEFORE they act on the source chain -- honest by design.
Three-Tier Verification:
- Tier 1 (Coordination): Multi-chain native tokens you control. Ed25519 signature. Zero trust.
- Tier 2 (Light Client): Major chains with finality proofs. Merkle proof verification. Trust finality only.
- Tier 3 (Oracle Consensus): Other chains. 7-of-10 oracle threshold with real Ed25519 signature verification.
Per-Chain Fee Model:
| Chain | Fee | Minimum |
|---|---|---|
| Ethereum | 0.3% | 1 unit |
| Solana | 0.1% | 0.1 unit |
| Bitcoin | 0.5% | 5 units |
| Default | 0.25% | 0.5 unit |
Pillar 4: VSA v2 -- Quantum-Hardened Smart Accounts
Dual-Signature Architecture: Every Vexidus account uses Ed25519 (classical, Solana-compatible) alongside Dilithium3 (NIST-approved post-quantum lattice-based signatures). This provides quantum resistance TODAY while maintaining compatibility with existing Ed25519 wallets.
Address Derivation (Same Key, Three Views):
Ed25519 Keypair -> pubkey (32 bytes)
+---> Vx0: base58(0x00 + pubkey) -> "Vx0abc..." (native wallet, 32-byte lossless)
+---> 0x: keccak256(pubkey)[12..32] -> "0x71C7..." (EVM/MetaMask, 20-byte)
+---> base58: raw pubkey -> "7xKXtg..." (Solana/Phantom)
All resolve to the same internal 32-byte account.
Vexidus uses type-prefixed addresses for different account types: Vx0 (wallet), Vx1 (token), Vx2 (NFT), Vx3 (contract), Vx5 (multi-sig), Vx7 (DAO), Vx8 (pool), Vx9 (VNS), VxP (VIP program). Each encodes the full 32-byte public key -- lossless, approximately 54 characters.
Key Management:
- AddKey, RemoveKey, RotateKey -- hot-swap signing keys without changing your address
- Guardian recovery -- 3-of-5 trusted guardians can recover access (7-day delay, cancelable)
- No seed phrase required for recovery (protocol-level, not a service)
Key management operations (disc 6-12) are defined in the protocol and live on testnet. Guardian recovery with timelock is functional end-to-end.
Pubkey Revelation: Accounts created by receiving transfers get a dummy public key. On first send, the wallet includes the real Ed25519 pubkey (sender_pubkey field). The protocol verifies the pubkey matches the address, registers the key, and proceeds -- seamless to the user.
Why Not ML-KEM? Dilithium3 is a signature scheme; ML-KEM is a key encapsulation scheme. Blockchains need signatures. Vexidus uses Ed25519 for speed and compatibility, Dilithium3 for quantum hardening, and a proposer_signature_pq field on blocks for future dual-sig enforcement.
VNS -- Vexidus Name Service (Identity Extension):
VNS provides human-readable .vex names as an extension of the VSA identity system. Each .vex name IS a VSC-21 NFT -- ownership of the NFT IS name resolution. Transfer the NFT, transfer the name. No separate registry update needed.
- Register
chris.vex-> mints NFT in global VNS collection -> stored asvns:chrisin RocksDB - Resolve
chris.vex-> find the NFT -> the owner's address IS the resolved address - Pricing: 3-4 chars = 1,000 VXS, 5-7 chars = 100 VXS, 8+ chars = 10 VXS
- RPC:
vex_registerName,vex_resolveName,vex_reverseResolve,vex_getNameInfo
VNS is a natural complement to VSA -- it adds a human-readable layer to the account system that VSA already manages. What makes Vexidus different is that VNS names compose atomically with IntentVM -- "send 10 VXS to chris.vex and stake the rest" is one intent, one signature.
VIP -- Vexidus Intent Programs (Programmability Extension):
VIP (Vexidus Intent Programs) provides declarative composition templates that replace smart contracts for common patterns. A VIP defines a sequence of native operations with parameters, safety constraints, and governance oversight. No compiler, no bytecode, no VM. VIPs are registered on-chain, scored for safety, and executable via IntentVM.
Pillar 5: VexForge -- Ten Token Standards
VexForge provides protocol-level token creation without smart contracts. All standards are live on testnet.
| Standard | Purpose | Operations |
|---|---|---|
| VSC-7 | Fungible tokens | Create, mint, transfer, burn (disc 1-4) |
| VSC-8 | Regulated stablecoins | 6 security layers, epoch rate limiting, multi-sig, guardian freeze (disc 50-57) |
| VSC-21 | NFTs | Create collection, mint, transfer, burn (disc 19-22) |
| VSC-55 | Multi-token (ERC-1155 equivalent) | Create, mint, batch mint/transfer, burn (disc 23-29) |
| VSC-88 | Protocol governance + multi-sig | Parameter changes, treasury, voting, M-of-N multi-sig (disc 60-67) |
| VSC-LAUNCH | Presale with anti-rug | Create, contribute, finalize, refund (disc 31-36) |
| VSC-REP | Token reputation scoring | Deterministic 7-factor scoring, grade A+ to F |
| VSC-20 | Programmable staking pools | Treasury and mint rewards, lock periods, per-user caps (disc 90-96) |
| VSC-99 | DAO program | Token-weighted governance, council actions, treasury management (disc 97-103) |
| VSC-SAFE | Bridge + NFT safety | Heuristic auto-scoring, governance reclassification, URI sanitization |
Anti-Rug Protection (VSC-LAUNCH): Presale funds are held in protocol-level escrow. If the presale fails to meet its goal, contributors can claim refunds directly -- no trust in the creator required. On finalize, liquidity is automatically locked in VexiDEX.
Token Metadata:
On-chain mutable metadata (name, symbol, image, social links) with a one-way LockTokenMetadata operation (disc 42). Once locked, metadata is permanently immutable -- useful for establishing trust in community tokens.
Pillar 6: VexiDEX -- Native On-Chain AMM
VexiDEX is a constant-product automated market maker built into the protocol (disc 38-41).
- Pools: Any VSC-7 token pair. 0.3% swap fee.
- LP Tokens: Minted on deposit, burned on withdrawal. Track proportional pool share.
- Create Pool -> Add Liquidity -> Swap -> Remove Liquidity -- all native operations.
- RPC:
vex_createPool,vex_addLiquidity,vex_removeLiquidity,vex_swap,vex_quoteSwap,vex_getPool,vex_listPools
VexiDEX integrates with IntentVM -- a user can say "swap 100 VXS for USDC" and IntentVM routes through the optimal pool automatically.
Pillar 7: ElasticState -- Intelligent 3-Tier Storage Engine
The Problem: Every blockchain today treats all state equally. A validator that transacted 5 seconds ago and a wallet that has not moved in 3 years sit in the same data structure, consuming the same resources. As chains grow, state bloat becomes the dominant bottleneck.
The Solution: ElasticState automatically routes account data through three storage tiers based on activity, giving sub-microsecond access to hot data while compressing dormant accounts by up to 90%.
+------------------------------------------------------+
| HOT TIER -- DashMap (in-memory) |
| Active accounts (last 7 days) |
| Access: <1us | Capacity: 100K entries / 8 GB |
+------------------------------------------------------+
| WARM TIER -- RocksDB (LZ4 compression) |
| Recent accounts (7-90 days inactive) |
| Access: ~100us | Fast SSD reads |
+------------------------------------------------------+
| COLD TIER -- RocksDB (ZSTD max compression) |
| Dormant accounts (90+ days inactive) |
| Access: ~1-10ms | 90% storage reduction |
| Includes Merkle proofs for light client verification|
+------------------------------------------------------+
Key Design Decisions:
- Feature-flagged (
--elastic-stateCLI flag). Backward-compatible. - State root integrity preserved. The main RocksDB default CF feeds the LtHash accumulator, which produces the state root. ElasticState is a read cache that cannot affect consensus.
- No state rent. Vexidus will never charge users to keep their accounts alive.
- Merkle proofs for cold accounts. Enables future light client verification.
Pillar 8: Atomence -- Cross-Chain Settlement Layer (U.S. Patent App. 63/998,160)
The Problem: Bridged tokens on any chain lose their native utility. SOL on Vexidus cannot earn Solana staking rewards. ETH on Vexidus cannot participate in Ethereum DeFi. Users are forced to choose between chains.
The Solution: Atomence enables direct exits back to origin chains without reverse bridging. Market makers hold inventory on both sides. Users place exit orders on Vexidus, MMs fill them by delivering tokens on the target chain. Proof of delivery is submitted back to Vexidus, releasing the escrowed funds to the MM.
Flow:
- User: "Exit 5 SOL back to Solana"
- Atomence escrows 5 SOL (Vexidus-side) from the user
- MM delivers 5 SOL on Solana to the user's Solana address
- MM submits delivery proof to Vexidus
- Vexidus verifies proof, releases escrowed SOL to MM
Key Properties:
- No vault on either chain -- escrow is per-order, time-bounded
- MM competition drives fees to market rate
- Oracle-attested pricing prevents manipulation
- Proven on Solana devnet (0.01 SOL E2E settlement)
3. Architecture Overview
System Layers
+-----------------------------------------------------+
| APPLICATION LAYER |
| VexSpark | VexScan | VexForge | VexiDex | VexSwap |
+-----------------------------------------------------+
| API LAYER (JSON-RPC) |
| 100+ endpoints: vex_* (native) + eth_* (EVM compat)|
+-----------------------------------------------------+
| EXECUTION LAYER |
| IntentVM | VexForge | VexBridge | VexiDEX | VNS | Atomence |
+-----------------------------------------------------+
| CONSENSUS LAYER (HyperSync + Vexcel) |
| Leader Rotation | Attestation DAG | Epoch Management |
+-----------------------------------------------------+
| STATE LAYER (ElasticState) |
| Hot (DashMap) -> Warm (LZ4) -> Cold (ZSTD) -> RocksDB |
| StateMachine | WriteBatch Atomics | Checkpoints |
+-----------------------------------------------------+
| NETWORK LAYER (libp2p) |
| QUIC | GossipSub | Dragonfly Stream | Bulk Sync |
+-----------------------------------------------------+
Implementation
- Language: Rust -- 15 crates, memory-safe, zero-cost abstractions
- Database: RocksDB with atomic WriteBatch commits (crash-safe, no partial state)
- Storage: ElasticState 3-tier engine -- Hot (DashMap, <1us), Warm (RocksDB LZ4), Cold (RocksDB ZSTD). Zero-copy checkpoints every 1K blocks.
- Networking: libp2p with QUIC transport (TLS 1.3, multiplexing over UDP)
- State Root: LtHash homomorphic accumulator -- O(1) per write, Blake3 finalization once per block (same approach as Solana SIMD-0215)
- Transaction Model: Account-based with bundle semantics (atomic multi-operation)
Transaction Lifecycle
Dragonfly Stream mode (direct delivery):
1. User submits bundle (signed Ed25519)
|
2. RPC validates signature + format
|
3. PQ seal created (Dilithium3 commitment over tx_hash + height + validator)
|
4. Sealed bundle forwarded directly to leader + 2 pipeline backups
|
5. Leader verifies seals, proposes block (deterministic blake3 ordering)
|
6. begin_block() -> execute bundles -> commit_block() (WriteBatch)
|
7. recompute_state_root() -> flush()
|
8. Block gossiped to peers -> verified -> finalized
|
9. Explorer indexes updated
Dragonfly Stream is the sole transaction delivery mechanism. There is no gossip mempool -- transactions are sealed and forwarded directly via P2P request-response. PQ sealing is always on.
Wallet Compatibility
| Wallet | Status | RPC Layer | Signature |
|---|---|---|---|
| VexSpark (native) | Live | vex_* | Ed25519 |
| MetaMask | Live | eth_* | secp256k1/ECDSA |
| Phantom | Planned | svm_* | Ed25519 (same curve) |
One Ed25519 keypair works on both Vexidus and Solana. The same key generates three address formats (Vx0, 0x, base58) that all resolve to the same internal account.
4. Performance and Benchmarks
Proven Results (March 2026, 5-Validator Network)
| Metric | Value |
|---|---|
| Sustained TPS | 1,005 ops/sec (block-level measurement, audit-grade Rust load tester) |
| Engine throughput | 830,000+ ops/sec (1,329 bundles processed in 16ms) |
| Execution success rate | 99.5% |
| Peak single block | 1,318 bundles (13,180 operations) |
| Block time | ~2.2s average (5 validators, 4 continents) |
| Total transactions | 106,000+ across 1.8M+ blocks |
| RPC rejection rate | 0% (zero rejections at submission) |
| VexVisor binary upgrades | 30+ |
The chain has never been the bottleneck. The execution engine sustains 830K+ ops/sec internally. The theoretical throughput ceiling is 500,000 TPS (50K bundles/block at 100ms adaptive floor) with current configuration, and 1,000,000 TPS in benchmark mode (100K bundles at 100ms). Block propagation uses Borsh binary encoding (5-10x smaller than JSON) with automatic format negotiation for safe rolling upgrades.
Transaction Cost
| Operation | Gas | Cost (at $1/VXS) |
|---|---|---|
| VXS Transfer | ~21,000 | ~$0.00021 |
| Token Create | ~50,000 | ~$0.0005 |
| Swap | ~80,000 | ~$0.0008 |
| Bridge Deposit | ~100,000 | ~$0.001 |
| Name Registration | ~60,000 | ~$0.0006 + name fee |
Gas price: 10 nanoVXS per gas unit. Fees split: 80% to block proposer, 20% to Foundation Treasury.
What We Claim vs. What Is Proven
| Metric | Proven | Theoretical Ceiling |
|---|---|---|
| Sustained TPS | 1,005 ops/sec (audit-grade) | 500K (normal), 1M (benchmark mode) |
| Engine throughput | 830K+ ops/sec | Limited by RocksDB I/O |
| Block capacity | 1,318 bundles/block (peak) | 50K default, 100K benchmark |
| Block time | ~2.2s average (5 validators) | 100ms floor under extreme load |
| Finality | ~2.2 seconds | Improved with validator count |
| Uptime | 33+ days continuous, 1.8M+ blocks | Continuous |
| Execution success | 99.5% under sustained load | Ongoing validation |
We do not claim numbers we have not proven. Sustained TPS measured with audit-grade Rust load tester using 1-wallet-per-bundle strategy (zero nonce contention). Block-level throughput is the primary metric. Engine throughput (830K+ ops/sec) measured from in-block execution timing.
5. Security Model
Consensus Security
- Byzantine Fault Tolerance: Tolerates up to 1/3 malicious validators
- Block Proposer Signatures: Every block is Ed25519-signed by its proposer. Invalid signatures result in instant peer banning.
- PeerGuard: Per-peer scoring system. Replay detection (200-hash ring buffer), rate limiting, validator allowlisting. Score drops to 0 = permanent ban.
- Validator Set from State: No self-adding. Validators loaded from on-chain staking state only.
MEV Elimination -- Dragonfly Stream
Dragonfly Stream eliminates MEV by removing the mempool entirely. Transactions are sealed with post-quantum Dilithium3 signatures and forwarded directly to the block leader -- no public broadcast, no pool to observe. Combined with deterministic content-based ordering (blake3(tx_hash + block_height)) and IntentVM atomic execution, Vexidus has zero known MEV vectors without requiring BLS/DKG threshold encryption.
| MEV Attack | Defense |
|---|---|
| Front-running | No mempool to observe -- direct delivery to leader |
| Sandwich attacks | IntentVM atomic execution -- no inter-step window |
| Proposer reordering | Deterministic blake3 sort -- content-determined order |
| Censorship | Attestation commitments prove tx existed -- provably detectable |
| Quantum tx forgery | Dilithium3 PQ seals -- quantum-safe temporal proofs |
Quantum Resistance
| Algorithm | Purpose | Security Level |
|---|---|---|
| Ed25519 | Transaction signing, block proposing | Classical (Solana-compatible) |
| Dilithium3 | PQ transaction seals (Dragonfly Stream), block PQ signatures | NIST Level 3 (quantum-safe) |
| Blake3 | Hashing (state root, tx hash, address derivation, seal commitments) | 256-bit (quantum-resistant) |
Vexidus is quantum-hardened today: Dilithium3 is actively used for Dragonfly Stream transaction seals (auto-generated on every validator). When quantum computers threaten Ed25519, Vexidus can activate dual-signature enforcement without a hard fork -- the proposer_signature_pq field is already on every block.
Bridge Security
The fundamental security advantage of VexBridge: there is no vault to hack.
| Bridge Hack | Amount | Attack Vector | VexBridge Equivalent |
|---|---|---|---|
| Wormhole ($320M) | Minted without deposit | Impossible -- no vault to bypass | |
| Ronin ($625M) | Compromised vault keys | Impossible -- no keys to compromise | |
| Nomad ($190M) | Faulty Merkle root | Mitigated -- tier-aware verification |
The only attack vector is compromising the proof verification itself (ZK/light client/oracle), which is fundamentally harder than stealing from a vault.
No Slashing
Vexidus deliberately avoids slashing. Validators who double-sign are jailed with escalating penalties (1h → 24h → 7d → 30d), not economically punished. This protects delegators and removes the "slashing insurance" overhead that exists on other chains. Bad actors lose opportunity cost (missed rewards) and reputation, not principal. An upgrade grace period (100 blocks) prevents jailing during network upgrades.
6. Token Economics
Token Overview
| Property | Value |
|---|---|
| Symbol | VXS |
| Total Supply | 1,618,000,000 (Golden Ratio: 1.618B) |
| Decimals | 9 |
| Inflation | None -- fixed supply, unburnable |
| Fee Model | 80% to block proposer, 20% Foundation Treasury (no burn) |
Why 1.618 Billion?
The golden ratio (1.618...) appears throughout nature and mathematics. It is memorable, distinctive, and provides ample supply for a global network while maintaining meaningful per-token value.
Genesis Allocations
96% of total supply (1,553.28M VXS) is allocated at genesis across 8 accounts:
| Account | VXS | % | Status |
|---|---|---|---|
Public Distribution (0x...01) | 614,840,000 | 38% | Circulating (Pre-sale 20% + TGE 18%) |
Ecosystem & DeFi (0x...02) | 242,700,000 | 15% | Circulating (grants, LP incentives) |
Foundation Treasury (0x...03) | 161,800,000 | 10% | Circulating (operations) |
Team & Founders (0x...04) | 161,800,000 | 10% | Locked (4-year vest, 1-year cliff) |
Marketing & Community (0x...05) | 113,260,000 | 7% | Circulating (airdrops, campaigns) |
SAFT Round (0x...06) | 48,540,000 | 3% | Locked (12-month vest, 6-month cliff) |
Testnet Rewards (0x...07) | 48,540,000 | 3% | Circulating (beta testers) |
Staking & Strategic (0x...08) | 161,800,000 | 10% | Governance-controlled |
| Genesis Total | 1,553,280,000 | 96% | 73% circulating at TGE |
Block Reward Schedule
~64.72M VXS emitted over 10 years (~4% of total supply). Annual inflation: 0.8%.
| Period | Annual Total | Foundation (15%) | Validator Pool (85%) | Per-Block @2s (1.0x density) |
|---|---|---|---|---|
| Year 1-2 | 13M VXS/yr | 1.95M | 11.05M | ~0.700 VXS |
| Year 3-5 | 6.5M VXS/yr | 0.975M | 5.525M | ~0.350 VXS |
| Year 6-10 | 3.9M VXS/yr | 0.585M | 3.315M | ~0.210 VXS |
| Year 11+ | 0 | 0 | 0 | 0 |
Per-block reward is time-weighted: reward = annual x block_interval / seconds_per_year. Transaction density multiplier scales the validator portion: 0.5x (empty) to 2.0x (1000+ txs). Foundation receives 15% of block rewards and 20% of transaction fees for sustainable development funding.
Transaction Fees
Solana-competitive pricing:
| Parameter | Value |
|---|---|
| Gas price | 10 nanoVXS per gas unit |
| Typical transfer cost | |
| Fee destination | 80% to block proposer, 20% Foundation Treasury |
| Burn mechanism | None -- fixed supply forever |
Staking
| Parameter | Value |
|---|---|
| Minimum stake | 1,000 VXS |
| Unbonding period | 21 days |
| Commission range | 0-50% |
| Max validators | 100 (configurable) |
| Epoch duration | 300 seconds |
7. Ecosystem and Applications
Live Frontends
| Application | URL | Purpose |
|---|---|---|
| VexSpark | wallet.vexspark.com | Native Ed25519 wallet (send, receive, tokens, IntentVM) |
| VexScan | vexscan.io | Block explorer (blocks, transactions, validators, tokens) |
| VexForge | vexforge.xyz | Token creation studio (templates, terminal, JSON editor) |
| VexiDex | vexidex.com | DEX interface (swap, pools, liquidity) |
| VexSwap | vexswap.xyz | Testnet faucet + IntentVM natural language demo |
| VexAI | vexai.xyz | AI knowledge assistant (LLaMA 3.1 + ChromaDB RAG) |
| Vexcel | vexcel.xyz | Vexcel adaptive attestation protocol product site |
| Atomence | atomence.com | Cross-chain settlement layer (MM-matched exits to origin chains) |
| VexFi | vexfi.com | Protocol-level financial infrastructure (payments, trading, staking, vaults) |
| Vexalus | vexalus.com | Supply chain intelligence (shipments, attestation, audit trails) |
| VNS | vns.name | Vexidus Name Service (.vex domain registration) |
| DaimyoDAO | daimyodao.com | Native DAO launcher (VSC-99 governance) |
| VexVisor | vexvisor.com | Validator operations portal (staking, delegation, governance) |
| IntentVM Demo | intentvm.xyz | Natural language intent execution demo |
Developer Tools
- Rust SDK (
vexidus-sdk) -- WalletKeypair, BundleBuilder, IntentBuilder, ValidatorClient, DEX client - CLI (
vexidus) -- 17 command groups, 95+ subcommands - 100+ RPC Endpoints -- Full
vex_*native API +eth_*EVM compatibility - VexVisor -- Upgrade governance module: schedule upgrades via RPC, stake-weighted voting, automatic halt at upgrade height, binary download with SHA256 verification, auto-rollback on crash within 60 seconds. Two modes: seed-authority (auto-approve) and full (67% quorum). All validators run via VexVisor wrapper in production.
How the Pillars Work Together
The eight pillars are not isolated features -- they compose:
Example: "Bridge 10 SOL from Solana and swap to VXS"
- IntentVM parses the natural language ->
Goal::Composite([Bridge, Swap]) - VexBridge verifies the SOL limbo proof (Tier 2 light client)
- VexForge credits canonical SOL token to the user's account
- VexiDEX routes the SOL to VXS swap through the best pool
- VSA v2 verifies the single Ed25519 signature over the entire bundle (VNS resolves
chris.vexto the user's address) - HyperSync includes the bundle in the next block (weighted leader selection)
- ElasticState serves the user's account from the hot cache (<1us) -- no RocksDB lookup needed. The bridge proof is written through to warm tier for later archival.
- Atomence enables the user to exit bridged tokens back to Solana when needed -- no reverse bridge required.
All of this happens atomically -- one intent, one signature, one block slot. If any step fails, the entire operation rolls back.
8. Roadmap
Completed
| Phase | Status | Key Deliverables |
|---|---|---|
| Core Architecture | Done | 15 Rust crates, StateMachine, RocksDB, account model |
| Consensus | Done | HyperSync leader rotation, Vexcel attestation DAG, vote signing, epoch management |
| Token Standards | Done | VSC-7, VSC-21, VSC-55, VSC-LAUNCH, VSC-REP |
| Staking | Done | 9 operations, weighted selection, jailing, commission, reputation |
| IntentVM | Done | Goal decomposition, atomic execution, NL parser (7 languages), auto-routing, price oracle (TWAP), portfolio intelligence (rebalance, DCA, conditional), VSC-71 synthetic interface, 6 RPC endpoints |
| VexBridge | Done | Three-tier architecture, burn/limbo model, oracle Ed25519, 8 RPC endpoints |
| ElasticState | Done | 3-tier storage (Hot/Warm/Cold), auto-promotion/demotion, checkpoints, feature-flagged |
| VNS | Done | NFT-backed .vex names (VSA identity extension), 4 RPC endpoints |
| VexiDEX | Done | Constant-product AMM, 7 RPC endpoints |
| P2P Security | Done | Block proposer signatures, PeerGuard, sync validation |
| Gas and Fees | Done | Solana-competitive pricing, 80% proposer / 20% Foundation |
| Explorer | Done | RocksDB indexing, 11 query endpoints |
| EVM Compat | Done | eth_* RPC translation (MetaMask works) |
| Frontends | Done | VexSpark, VexScan, VexForge, VexiDex, VexSwap, VexFi, Vexalus, VNS, DaimyoDAO, VexVisor, IntentVM Demo |
| Load Testing | Done | 55K+ txs, 2,856 peak tx/block, 0 crashes, 11 op types proven |
| 5-Validator Network | Done | Leader rotation, Vexcel attestation DAG, 24h+ soak test |
| VexVisor | Done | Upgrade governance, auto-halt, binary download, SHA256 verify, auto-rollback |
| Dragonfly Stream | Done (Phase 1-3.1) | Mempoolless direct delivery, PQ sealing (Dilithium3), mempool eliminated, direct-to-leader routing |
| VSC-88 Governance | Done | On-chain governance + multi-sig wallets, 12 RPC endpoints |
| VSC-8 Stablecoins | Done | 18 protocol-native stablecoins, 6 security layers |
| VSC-SAFE | Done | Bridge contract safety scoring, NFT metadata hardening |
| VSC-20 Staking Pools | Done | Programmable staking pools, treasury/mint rewards, lock periods, per-user caps |
| VSC-99 DAOs | Done | Token-weighted governance, council actions, treasury management, global DAO index |
| Risk Management | Done | Account/token freeze, state correction, circuit breaker, emergency mint |
| State Preservation | Done | State export/import/verify CLI, round-trip proven (1,390 accounts) |
| Foundation/Validator Split | Done | 15% Foundation / 85% Validator rewards, density-weighted multiplier |
| Automated Backups | Done | GPG-encrypted weekly backups, cold offload, offsite storage |
| Atomence Settlement | Done (Phase 1-4) | Cross-chain settlement layer (U.S. Patent App. 63/998,160), Solana devnet proven |
| Bushido Passport | Done | Universal gamer identity on Vexidus |
| VIP (Intent Programs) | Done | Declarative on-chain composition templates, safety scoring, governance-managed |
| Anchor (Data Attestation) | Done | Universal data attestation (BLAKE3-hashed, on-chain proof) |
| Full-Length Vx Addresses | Done | Type-prefixed (Vx0-Vx9, VxP), 32-byte lossless, backward-compatible |
| Pending Nonce Tracker | Done | Concurrent RPC safety, 71 methods updated |
| GovernableParams Wiring | Done | On-chain parameter governance |
| Failover Timing Optimization | Done | 5s base + 3s stagger failover, leader skip recovery (5 blocks), block time ~5s → ~2.2s |
| Tier 1 TPS Scaling | Done | 50K bundles/block, 100ms/250ms adaptive floor, --benchmark-mode (100K/100ms) |
| RocksDB Optimization | Done | Periodic flush, bloom filters, 512MB cache, HashMap index, 64MB write buffers |
| ElasticState Activation | Done | 3-tier storage (Hot/Warm/Cold) active on all validators |
| Borsh Wire Protocol | Done | Dual-format P2P encoding (reads both, writes Borsh), 5-10x smaller blocks |
| VIDA Identity Protocol | Done | Sovereign digital identity, 18 credential types, W3C VC export, DID resolver |
Current Phase: Beta Testnet
- VexVisor E2E upgrade pipeline (auto-download, auto-swap across all validators)
- Validator rewards program (testnet reputation → mainnet VXS airdrops)
- Public GitHub releases
- 3rd-party security audit preparation
Next Phases
| Phase | Focus |
|---|---|
| Beta Hardening | VexVisor E2E pipeline, SVM adapter (Phantom), monitoring dashboard, governance activation |
| Performance Tier 2-3 | WriteBatch pipelining, transaction lanes, block sharding, state commitment deferral |
| Security Audits | External audit of core protocol, bridge, cryptography |
| Mainnet Prep | Dynamic gas, feature gate activation, key separation enforcement |
| Mainnet Launch | Genesis block, validator onboarding, exchange listings |
9. Competitive Analysis
What Is Unique About Vexidus
No other L1 combines all eight:
| Feature | Vexidus | Ethereum | Solana | Aptos | Sui |
|---|---|---|---|---|---|
| Intent-based execution | IntentVM | No | No | No | No |
| Quantum hardening | Ed25519 + Dilithium3 | No | No | No | No |
| MEV elimination | Dragonfly Stream (no mempool) | Flashbots (partial) | Jito (partial) | No | No |
| Vaultless bridge | Burn/limbo | Wrapped | Wrapped | Wrapped | Wrapped |
| 3-tier state engine | ElasticState (Hot/Warm/Cold) | Single trie (300M+ accounts) | Flat store (500+ GB, rent) | Single tree | Single store |
| Protocol-level anti-rug | VSC-LAUNCH | No | No | No | No |
| Native AMM | VexiDEX | Uniswap (dApp) | Raydium (dApp) | No | Cetus (dApp) |
| No slashing | Jailing only | Slashing | Slashing | Slashing | No slash |
| No state rent | ElasticState compresses, never evicts | Debated since 2017 | Account rent required | No rent | Storage rebates |
| Cross-chain settlement | Atomence (direct, no vault) | No | No | No | No |
| Native DAOs | VSC-99 protocol-level | Snapshot (off-chain) | Realms (dApp) | No | No |
| Multi-wallet compat | Vx/MetaMask/Phantom | MetaMask | Phantom | Petra | Sui Wallet |
Competitive Moats
- IntentVM (U.S. Patent App. 19/571,463) -- Legal protection for intent-based execution with a proven licensing pathway. The three-layer architecture (patented core + ChainAdapter + native execution) means competitors can license IntentVM for their own chains, growing the ecosystem while Vexidus retains the deepest native integration. Every licensee validates the standard; the best performance is always on Vexidus.
- Vaultless Bridge Model -- The stateless/limbo mechanism for non-burnable tokens is a novel contribution to bridge security. No other bridge eliminates vaults for native tokens like SOL/ETH.
- Quantum-Ready Infrastructure -- Ed25519 + Dilithium3 dual-signature is live in code. When quantum migration is urgent, Vexidus has a 5+ year head start.
- ElasticState -- No State Rent, Ever -- Ethereum has debated state expiry since 2017 without resolution. Solana charges rent. Vexidus solves state bloat at the infrastructure level: inactive accounts are compressed, not evicted. Users never pay to exist.
- Dragonfly Stream -- Zero-MEV by Design -- Most chains try to mitigate MEV with partial solutions (Flashbots, order-flow auctions, encrypted mempools). Vexidus eliminates the root cause by removing the mempool entirely. Transactions are PQ-sealed and forwarded directly to the block leader. No pool to observe = no MEV.
- Eight-Pillar Integration -- Features that are separate dApps on other chains (DEX, presales, reputation, DAOs, cross-chain settlement) are protocol-level on Vexidus, enabling atomic composition via IntentVM.
10. Team and Development
Founder
CJ -- Founder and CEO
- Built Vexidus blockchain solo from concept to live testnet in 16 months
- Designed and implemented IntentVM (U.S. Patent App. 19/571,463, proven on Solana first)
- Founded Vexidus Corporation (Delaware C-Corp, est. 2019)
- MBA student (ongoing)
Development Structure
| Entity | Role |
|---|---|
| Vexidus Labs Ltd (United Kingdom) | Engineering, infrastructure, operations |
| Vexidus Corporation (Delaware C-Corp) | IP, patents, investor capital, strategy |
| Vexidus Stiftung (Switzerland, planned) | Foundation governance, community treasury, grant programs |
Codebase
- Language: Rust (15 crates)
- Tests: 336+
- RPC Endpoints: 100+
- CLI Subcommands: 95+
- Deployed Frontends: 18
- Lines of Rust: 65,000+
- On-Chain Upgrades: 50+ via VexVisor (zero manual intervention)
- Repository: github.com/vexidus-labs/vexidus-blockchain
Open Source
- Core blockchain: Open source (post-beta)
- IntentVM: U.S. Patent App. 19/571,463 (proprietary until patent grant)
- SDK, CLI, frontends: Open source
Appendix A: Technical Specifications
Validator Requirements
| Resource | Minimum | Recommended |
|---|---|---|
| CPU | 4 cores | 8+ cores |
| RAM | 8 GB | 16+ GB |
| Storage | 100 GB SSD | 500 GB NVMe |
| Network | 100 Mbps | 1 Gbps |
| Stake | 1,000 VXS | 5,000+ VXS |
Network Parameters
| Parameter | Value |
|---|---|
| Chain ID | 1618032 (0x18b070) |
| Block time | Adaptive (100ms-12s, load-responsive) |
| Max transactions/block | 50,000 default, 100,000 benchmark (configurable via --max-txs-per-block) |
| Transaction delivery | Dragonfly Stream (direct, PQ-sealed) |
| Bundle TTL | 120 seconds |
| P2P transport | QUIC (TLS 1.3 + multiplexing, UDP) |
| Gas price | 10 nanoVXS/gas (configurable) |
| Auto-checkpoint interval | Every 1,000 blocks |
| Checkpoints retained | Last 5 |
ElasticState Parameters
| Parameter | Default | CLI Flag |
|---|---|---|
| Hot cache entries | 100,000 | --elastic-hot-entries |
| Hot cache memory | 8 GB | --elastic-hot-memory-mb |
| Hot to Warm threshold | 7 days inactive | -- |
| Warm to Cold threshold | 90 days inactive | -- |
| Demotion interval | Every 100 blocks (~20 min) | -- |
| Warm compression | LZ4 (fast) | -- |
| Cold compression | ZSTD (max, ~90% reduction) | -- |
| Feature flag | Off (backward-compatible) | --elastic-state |
State Root: LtHash Accumulator
| Parameter | Value |
|---|---|
| Algorithm | LtHash (homomorphic lattice hash) |
| Accumulator size | 1024 x u16 (2048 bytes) |
| Update cost | O(1) per write (via buffered_put() / buffered_delete()) |
| Finalization | BLAKE3(accumulator_bytes) once per block |
| Migration | One-time full DB scan on first boot, persisted in RocksDB |
| Crash safety | Included in atomic WriteBatch, rollback on failure |
| Verification | --verify-lthash flag compares against full DB scan |
Per-CF RocksDB Compression
| Column Family | Compression | Rationale |
|---|---|---|
| Blocks, Explorer, NFTs | ZSTD | Immutable data, 40-60% better compression |
| Accounts, Validators, Attestations, Pools | LZ4 | Fast reads, frequent updates |
~35% total disk reduction on archive nodes compared to uniform compression.
Address Formats
| Format | Example | Used By |
|---|---|---|
| Vx0 (native wallet) | Vx0abc...xyz (~54 chars) | VexSpark, native SDK |
| Vx1-Vx9, VxP (typed) | Vx1abc..., Vx7abc..., VxPabc... | Token, DAO, VIP, etc. |
| 0x (EVM) | 0x71C7... | MetaMask, eth_* RPC |
| System (32-byte hex) | 0x000...0001 | Genesis accounts, internal |
Appendix B: Resources
| Resource | URL |
|---|---|
| Wallet | wallet.vexspark.com |
| Explorer | vexscan.io |
| Token Studio | vexforge.xyz |
| DEX | vexidex.com |
| Faucet | vexswap.xyz |
| Financial Infra | vexfi.com |
| Supply Chain | vexalus.com |
| Name Service | vns.name |
| DAO Launcher | daimyodao.com |
| Intent Demo | intentvm.xyz |
| GitHub | github.com/vexidus-labs/vexidus-blockchain |
Document Version: 3.0 Last Updated: March 2026 Status: Beta Testnet Live
Vexidus: Eight Pillars. One Chain. No Compromises.
Copyright 2026 Vexidus Corporation. All rights reserved.