Skip to main content

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:

  1. IntentVM (U.S. Patent App. 19/571,463) -- 1 intent, 1 signature, N operations. Declarative execution.
  2. HyperSync Consensus + Vexcel -- Leader rotation with weighted selection, adaptive attestation DAG for global latency fairness, jailing, and reputation scoring.
  3. VexBridge (U.S. Patent App. 63/987,929) -- Vaultless canonical token bridge using burn-and-mint and stateless/limbo resolution.
  4. VSA v2 -- Smart accounts with Ed25519 + Dilithium3 dual-signature quantum hardening. Includes VNS (.vex name service) and VIP (Vexidus Intent Programs) as identity and programmability extensions.
  5. 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.
  6. VexiDEX -- Native on-chain AMM with constant-product pools and LP token management.
  7. ElasticState -- Intelligent 3-tier storage engine (Hot/Warm/Cold) with LtHash homomorphic state root accumulator. State grows without degrading performance.
  8. 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

  1. The Problem
  2. The Eight Pillars
  3. Architecture Overview
  4. Performance and Benchmarks
  5. Security Model
  6. Token Economics
  7. Ecosystem and Applications
  8. Roadmap
  9. Competitive Analysis
  10. 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 JSON
  • vex_simulateIntent -- Full dry-run with per-pool quotes, price impact, balance checks, and warnings
  • vex_previewIntent -- Human-readable wallet confirmation (summary, fee, price impact, route)
  • vex_getExecutionPlan -- Preview execution steps and gas estimate before submission
  • vex_getIntentStatus -- Query result by hash
  • vex_getPrice -- Spot price query with direct and auto-routed pricing, TWAP (time-weighted average price) for oracle-grade reference data

Traditional Flow vs. IntentVM:

ActionTraditional (Ethereum/Solana)Vexidus IntentVM
Swap + Stake2 transactions, 2 signatures, 2 blocks, MEV-exposed between steps1 intent, 1 signature, 1 block, atomic
Bridge + Swap + Provide LP3 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 tokens3 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 stockOff-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:

  1. Leader selection uses blake3(block_height + validator_set_hash) seeded randomness
  2. Weight = stake * performance_score (0.5-1.0 range)
  3. Leader proposes block containing up to 10,000 transactions
  4. Block is gossiped to all peers via GossipSub (QUIC transport, TLS 1.3)
  5. Validators verify proposer signature (Ed25519) and execute transactions
  6. 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:

FactorWeightMeasures
Uptime25 ptsBlock production consistency
Commission fairness15 ptsReasonable rates, stability
Self-stake15 ptsSkin in the game
Governance participation15 ptsUpgrade voting activity
Tenure10 ptsTime active on network
Delegator trust10 ptsStake attracted from others
Reliability10 ptsHistorical 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:

ChainFeeMinimum
Ethereum0.3%1 unit
Solana0.1%0.1 unit
Bitcoin0.5%5 units
Default0.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 as vns:chris in 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.

StandardPurposeOperations
VSC-7Fungible tokensCreate, mint, transfer, burn (disc 1-4)
VSC-8Regulated stablecoins6 security layers, epoch rate limiting, multi-sig, guardian freeze (disc 50-57)
VSC-21NFTsCreate collection, mint, transfer, burn (disc 19-22)
VSC-55Multi-token (ERC-1155 equivalent)Create, mint, batch mint/transfer, burn (disc 23-29)
VSC-88Protocol governance + multi-sigParameter changes, treasury, voting, M-of-N multi-sig (disc 60-67)
VSC-LAUNCHPresale with anti-rugCreate, contribute, finalize, refund (disc 31-36)
VSC-REPToken reputation scoringDeterministic 7-factor scoring, grade A+ to F
VSC-20Programmable staking poolsTreasury and mint rewards, lock periods, per-user caps (disc 90-96)
VSC-99DAO programToken-weighted governance, council actions, treasury management (disc 97-103)
VSC-SAFEBridge + NFT safetyHeuristic 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-state CLI 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:

  1. User: "Exit 5 SOL back to Solana"
  2. Atomence escrows 5 SOL (Vexidus-side) from the user
  3. MM delivers 5 SOL on Solana to the user's Solana address
  4. MM submits delivery proof to Vexidus
  5. 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

WalletStatusRPC LayerSignature
VexSpark (native)Livevex_*Ed25519
MetaMaskLiveeth_*secp256k1/ECDSA
PhantomPlannedsvm_*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)

MetricValue
Sustained TPS1,005 ops/sec (block-level measurement, audit-grade Rust load tester)
Engine throughput830,000+ ops/sec (1,329 bundles processed in 16ms)
Execution success rate99.5%
Peak single block1,318 bundles (13,180 operations)
Block time~2.2s average (5 validators, 4 continents)
Total transactions106,000+ across 1.8M+ blocks
RPC rejection rate0% (zero rejections at submission)
VexVisor binary upgrades30+

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

OperationGasCost (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

MetricProvenTheoretical Ceiling
Sustained TPS1,005 ops/sec (audit-grade)500K (normal), 1M (benchmark mode)
Engine throughput830K+ ops/secLimited by RocksDB I/O
Block capacity1,318 bundles/block (peak)50K default, 100K benchmark
Block time~2.2s average (5 validators)100ms floor under extreme load
Finality~2.2 secondsImproved with validator count
Uptime33+ days continuous, 1.8M+ blocksContinuous
Execution success99.5% under sustained loadOngoing 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 AttackDefense
Front-runningNo mempool to observe -- direct delivery to leader
Sandwich attacksIntentVM atomic execution -- no inter-step window
Proposer reorderingDeterministic blake3 sort -- content-determined order
CensorshipAttestation commitments prove tx existed -- provably detectable
Quantum tx forgeryDilithium3 PQ seals -- quantum-safe temporal proofs

Quantum Resistance

AlgorithmPurposeSecurity Level
Ed25519Transaction signing, block proposingClassical (Solana-compatible)
Dilithium3PQ transaction seals (Dragonfly Stream), block PQ signaturesNIST Level 3 (quantum-safe)
Blake3Hashing (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 HackAmountAttack VectorVexBridge Equivalent
Wormhole ($320M)Minted without depositImpossible -- no vault to bypass
Ronin ($625M)Compromised vault keysImpossible -- no keys to compromise
Nomad ($190M)Faulty Merkle rootMitigated -- 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

PropertyValue
SymbolVXS
Total Supply1,618,000,000 (Golden Ratio: 1.618B)
Decimals9
InflationNone -- fixed supply, unburnable
Fee Model80% 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:

AccountVXS%Status
Public Distribution (0x...01)614,840,00038%Circulating (Pre-sale 20% + TGE 18%)
Ecosystem & DeFi (0x...02)242,700,00015%Circulating (grants, LP incentives)
Foundation Treasury (0x...03)161,800,00010%Circulating (operations)
Team & Founders (0x...04)161,800,00010%Locked (4-year vest, 1-year cliff)
Marketing & Community (0x...05)113,260,0007%Circulating (airdrops, campaigns)
SAFT Round (0x...06)48,540,0003%Locked (12-month vest, 6-month cliff)
Testnet Rewards (0x...07)48,540,0003%Circulating (beta testers)
Staking & Strategic (0x...08)161,800,00010%Governance-controlled
Genesis Total1,553,280,00096%73% circulating at TGE

Block Reward Schedule

~64.72M VXS emitted over 10 years (~4% of total supply). Annual inflation: 0.8%.

PeriodAnnual TotalFoundation (15%)Validator Pool (85%)Per-Block @2s (1.0x density)
Year 1-213M VXS/yr1.95M11.05M~0.700 VXS
Year 3-56.5M VXS/yr0.975M5.525M~0.350 VXS
Year 6-103.9M VXS/yr0.585M3.315M~0.210 VXS
Year 11+0000

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:

ParameterValue
Gas price10 nanoVXS per gas unit
Typical transfer cost0.00021 VXS ($0.0002 at $1/VXS)
Fee destination80% to block proposer, 20% Foundation Treasury
Burn mechanismNone -- fixed supply forever

Staking

ParameterValue
Minimum stake1,000 VXS
Unbonding period21 days
Commission range0-50%
Max validators100 (configurable)
Epoch duration300 seconds

7. Ecosystem and Applications

Live Frontends

ApplicationURLPurpose
VexSparkwallet.vexspark.comNative Ed25519 wallet (send, receive, tokens, IntentVM)
VexScanvexscan.ioBlock explorer (blocks, transactions, validators, tokens)
VexForgevexforge.xyzToken creation studio (templates, terminal, JSON editor)
VexiDexvexidex.comDEX interface (swap, pools, liquidity)
VexSwapvexswap.xyzTestnet faucet + IntentVM natural language demo
VexAIvexai.xyzAI knowledge assistant (LLaMA 3.1 + ChromaDB RAG)
Vexcelvexcel.xyzVexcel adaptive attestation protocol product site
Atomenceatomence.comCross-chain settlement layer (MM-matched exits to origin chains)
VexFivexfi.comProtocol-level financial infrastructure (payments, trading, staking, vaults)
Vexalusvexalus.comSupply chain intelligence (shipments, attestation, audit trails)
VNSvns.nameVexidus Name Service (.vex domain registration)
DaimyoDAOdaimyodao.comNative DAO launcher (VSC-99 governance)
VexVisorvexvisor.comValidator operations portal (staking, delegation, governance)
IntentVM Demointentvm.xyzNatural 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"

  1. IntentVM parses the natural language -> Goal::Composite([Bridge, Swap])
  2. VexBridge verifies the SOL limbo proof (Tier 2 light client)
  3. VexForge credits canonical SOL token to the user's account
  4. VexiDEX routes the SOL to VXS swap through the best pool
  5. VSA v2 verifies the single Ed25519 signature over the entire bundle (VNS resolves chris.vex to the user's address)
  6. HyperSync includes the bundle in the next block (weighted leader selection)
  7. 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.
  8. 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

PhaseStatusKey Deliverables
Core ArchitectureDone15 Rust crates, StateMachine, RocksDB, account model
ConsensusDoneHyperSync leader rotation, Vexcel attestation DAG, vote signing, epoch management
Token StandardsDoneVSC-7, VSC-21, VSC-55, VSC-LAUNCH, VSC-REP
StakingDone9 operations, weighted selection, jailing, commission, reputation
IntentVMDoneGoal decomposition, atomic execution, NL parser (7 languages), auto-routing, price oracle (TWAP), portfolio intelligence (rebalance, DCA, conditional), VSC-71 synthetic interface, 6 RPC endpoints
VexBridgeDoneThree-tier architecture, burn/limbo model, oracle Ed25519, 8 RPC endpoints
ElasticStateDone3-tier storage (Hot/Warm/Cold), auto-promotion/demotion, checkpoints, feature-flagged
VNSDoneNFT-backed .vex names (VSA identity extension), 4 RPC endpoints
VexiDEXDoneConstant-product AMM, 7 RPC endpoints
P2P SecurityDoneBlock proposer signatures, PeerGuard, sync validation
Gas and FeesDoneSolana-competitive pricing, 80% proposer / 20% Foundation
ExplorerDoneRocksDB indexing, 11 query endpoints
EVM CompatDoneeth_* RPC translation (MetaMask works)
FrontendsDoneVexSpark, VexScan, VexForge, VexiDex, VexSwap, VexFi, Vexalus, VNS, DaimyoDAO, VexVisor, IntentVM Demo
Load TestingDone55K+ txs, 2,856 peak tx/block, 0 crashes, 11 op types proven
5-Validator NetworkDoneLeader rotation, Vexcel attestation DAG, 24h+ soak test
VexVisorDoneUpgrade governance, auto-halt, binary download, SHA256 verify, auto-rollback
Dragonfly StreamDone (Phase 1-3.1)Mempoolless direct delivery, PQ sealing (Dilithium3), mempool eliminated, direct-to-leader routing
VSC-88 GovernanceDoneOn-chain governance + multi-sig wallets, 12 RPC endpoints
VSC-8 StablecoinsDone18 protocol-native stablecoins, 6 security layers
VSC-SAFEDoneBridge contract safety scoring, NFT metadata hardening
VSC-20 Staking PoolsDoneProgrammable staking pools, treasury/mint rewards, lock periods, per-user caps
VSC-99 DAOsDoneToken-weighted governance, council actions, treasury management, global DAO index
Risk ManagementDoneAccount/token freeze, state correction, circuit breaker, emergency mint
State PreservationDoneState export/import/verify CLI, round-trip proven (1,390 accounts)
Foundation/Validator SplitDone15% Foundation / 85% Validator rewards, density-weighted multiplier
Automated BackupsDoneGPG-encrypted weekly backups, cold offload, offsite storage
Atomence SettlementDone (Phase 1-4)Cross-chain settlement layer (U.S. Patent App. 63/998,160), Solana devnet proven
Bushido PassportDoneUniversal gamer identity on Vexidus
VIP (Intent Programs)DoneDeclarative on-chain composition templates, safety scoring, governance-managed
Anchor (Data Attestation)DoneUniversal data attestation (BLAKE3-hashed, on-chain proof)
Full-Length Vx AddressesDoneType-prefixed (Vx0-Vx9, VxP), 32-byte lossless, backward-compatible
Pending Nonce TrackerDoneConcurrent RPC safety, 71 methods updated
GovernableParams WiringDoneOn-chain parameter governance
Failover Timing OptimizationDone5s base + 3s stagger failover, leader skip recovery (5 blocks), block time ~5s → ~2.2s
Tier 1 TPS ScalingDone50K bundles/block, 100ms/250ms adaptive floor, --benchmark-mode (100K/100ms)
RocksDB OptimizationDonePeriodic flush, bloom filters, 512MB cache, HashMap index, 64MB write buffers
ElasticState ActivationDone3-tier storage (Hot/Warm/Cold) active on all validators
Borsh Wire ProtocolDoneDual-format P2P encoding (reads both, writes Borsh), 5-10x smaller blocks
VIDA Identity ProtocolDoneSovereign 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

PhaseFocus
Beta HardeningVexVisor E2E pipeline, SVM adapter (Phantom), monitoring dashboard, governance activation
Performance Tier 2-3WriteBatch pipelining, transaction lanes, block sharding, state commitment deferral
Security AuditsExternal audit of core protocol, bridge, cryptography
Mainnet PrepDynamic gas, feature gate activation, key separation enforcement
Mainnet LaunchGenesis block, validator onboarding, exchange listings

9. Competitive Analysis

What Is Unique About Vexidus

No other L1 combines all eight:

FeatureVexidusEthereumSolanaAptosSui
Intent-based executionIntentVMNoNoNoNo
Quantum hardeningEd25519 + Dilithium3NoNoNoNo
MEV eliminationDragonfly Stream (no mempool)Flashbots (partial)Jito (partial)NoNo
Vaultless bridgeBurn/limboWrappedWrappedWrappedWrapped
3-tier state engineElasticState (Hot/Warm/Cold)Single trie (300M+ accounts)Flat store (500+ GB, rent)Single treeSingle store
Protocol-level anti-rugVSC-LAUNCHNoNoNoNo
Native AMMVexiDEXUniswap (dApp)Raydium (dApp)NoCetus (dApp)
No slashingJailing onlySlashingSlashingSlashingNo slash
No state rentElasticState compresses, never evictsDebated since 2017Account rent requiredNo rentStorage rebates
Cross-chain settlementAtomence (direct, no vault)NoNoNoNo
Native DAOsVSC-99 protocol-levelSnapshot (off-chain)Realms (dApp)NoNo
Multi-wallet compatVx/MetaMask/PhantomMetaMaskPhantomPetraSui Wallet

Competitive Moats

  1. 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.
  2. 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.
  3. Quantum-Ready Infrastructure -- Ed25519 + Dilithium3 dual-signature is live in code. When quantum migration is urgent, Vexidus has a 5+ year head start.
  4. 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.
  5. 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.
  6. 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

EntityRole
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

ResourceMinimumRecommended
CPU4 cores8+ cores
RAM8 GB16+ GB
Storage100 GB SSD500 GB NVMe
Network100 Mbps1 Gbps
Stake1,000 VXS5,000+ VXS

Network Parameters

ParameterValue
Chain ID1618032 (0x18b070)
Block timeAdaptive (100ms-12s, load-responsive)
Max transactions/block50,000 default, 100,000 benchmark (configurable via --max-txs-per-block)
Transaction deliveryDragonfly Stream (direct, PQ-sealed)
Bundle TTL120 seconds
P2P transportQUIC (TLS 1.3 + multiplexing, UDP)
Gas price10 nanoVXS/gas (configurable)
Auto-checkpoint intervalEvery 1,000 blocks
Checkpoints retainedLast 5

ElasticState Parameters

ParameterDefaultCLI Flag
Hot cache entries100,000--elastic-hot-entries
Hot cache memory8 GB--elastic-hot-memory-mb
Hot to Warm threshold7 days inactive--
Warm to Cold threshold90 days inactive--
Demotion intervalEvery 100 blocks (~20 min)--
Warm compressionLZ4 (fast)--
Cold compressionZSTD (max, ~90% reduction)--
Feature flagOff (backward-compatible)--elastic-state

State Root: LtHash Accumulator

ParameterValue
AlgorithmLtHash (homomorphic lattice hash)
Accumulator size1024 x u16 (2048 bytes)
Update costO(1) per write (via buffered_put() / buffered_delete())
FinalizationBLAKE3(accumulator_bytes) once per block
MigrationOne-time full DB scan on first boot, persisted in RocksDB
Crash safetyIncluded in atomic WriteBatch, rollback on failure
Verification--verify-lthash flag compares against full DB scan

Per-CF RocksDB Compression

Column FamilyCompressionRationale
Blocks, Explorer, NFTsZSTDImmutable data, 40-60% better compression
Accounts, Validators, Attestations, PoolsLZ4Fast reads, frequent updates

~35% total disk reduction on archive nodes compared to uniform compression.

Address Formats

FormatExampleUsed 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...0001Genesis accounts, internal

Appendix B: Resources

ResourceURL
Walletwallet.vexspark.com
Explorervexscan.io
Token Studiovexforge.xyz
DEXvexidex.com
Faucetvexswap.xyz
Financial Infravexfi.com
Supply Chainvexalus.com
Name Servicevns.name
DAO Launcherdaimyodao.com
Intent Demointentvm.xyz
GitHubgithub.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.