axionax protocol — Architecture Overview v1.5

0) High-Level Overview

flowchart LR
  Clients["Users and DApps and Wallets"] --> RPC["RPC Nodes"]
  subgraph L1["axionax L1"]
    direction LR
    subgraph Market["Assignment and Pricing"]
      ASR["Auto Selection Router<br/>Top K weighted VRF"]
      PPC["Posted Price Controller<br/>Util and Queue control"]
    end
    subgraph Core["Integrated Core Loop"]
      Exec["Execution Engine<br/>Deterministic"]
      PoPC["Validation<br/>PoPC Sampling"]
      DA["Data Availability<br/>EC and Storage"]
      Settle["Settlement and Finality"]
    end
    Validators["Validator Set"]
    Auditors["DA Live Auditors"]
  end
  RPC --> Exec
  Exec --> PoPC --> DA --> Settle
  Settle -.-> Exec
  PPC -.-> ASR
  ASR --> Exec
  VRF["Delayed VRF"] -.-> PoPC
  Auditors -.-> DA
  Telemetry["Monitoring and Telemetry"] -.-> Exec
  Telemetry -.-> PoPC
  Telemetry -.-> DA
  Telemetry -.-> Settle
  Attest["Public Attestations"] -.-> Telemetry
  DAO["axionax DAO"] -.-> PPC
  DAO -.-> ASR
  DeAI["DeAI Sentinel and Assist"] -.-> Telemetry
  Telemetry -.-> DeAI
  DeAI --> DAO

Note: Solid lines = data flow / Dashed lines = control, monitoring, governance.

1) Core Workflow v1.5 (No Bidding)

  1. Post → Assign → Execute → Commit and DA Pre-commit
  2. Wait k (delayed VRF)
  3. Challenge → Prove → Verify and Seal
  4. Fraud Window → Finalize
sequenceDiagram
  autonumber
  actor Client
  participant RPC as "RPC Nodes"
  participant ASR as "ASR Router"
  ... (full Mermaid omitted for brevity) ...

2) ASR – Auto-Selection Router

flowchart LR
 ... (see repo for full diagram) ...
      

3) Posted Price Controller (PPC)

flowchart LR
 ... (diagram refer repo) ...

4) PoPC – Proof of Probabilistic Checking

flowchart LR
 ... PoPC sampling ...

5) Data Availability (DA) & Auditing

flowchart LR
 ... DA flow ...

6) Security and Anti-Fraud Layer

flowchart TB
 ... (see repo) ...

7) DeAI and DAO Governance

flowchart LR
 ... (see repo) ...

8) Recommended Parameters (v1.5)

ParameterRecommendedDescription
s (samples)600–1500PoPC sample points
β (redundancy)2–3%Fraction of jobs duplicated for cross-check
K (Top K)64Max candidates in ASR
q_max (quota)10–15% / epochQuota per provider
ε (epsilon)5%Exploration for new players
util*0.7PPC target utilization
q*60 secondsPPC queue wait target
k (delay blocks)≥ 2 blocksVRF seed delay
Δt_fraud~3600 secFraud-Proof Window
False PASS (V)≥ 500 bpValidator slashing rate

9) Workflow Summary (v1.5)

  1. Post job
  2. ASR assign
  3. Execute
  4. Commit & DA Pre-commit
  5. Wait k
  6. Challenge (VRF)
  7. Prove
  8. Verify & Seal
  9. Fraud Window
  10. Finalize & Settlement
  11. DeAI Monitor