Skip to main content

Overview

HyperPaxeer is a sovereign Proof-of-Stake blockchain running on the Alexandria Fork (Cosmos SDK + CometBFT). It extends the standard EVM-on-Cosmos model with a second execution environment — the Argus Virtual Machine (AVM) — and four custom stateful/stateless precompiles that accelerate exchange-critical computation.

Dual-VM Design

  • EVM OS — the blockchain shell: consensus, networking, EVM execution, standard Ethereum tooling
  • AVM — the value engine: capital allocation, drawdown policy, funded smart-wallet management
  • Communication boundary — on-chain interfaces IPaxSpotReader and IAllowanceProvider

Consensus

CometBFT’s PrepareProposal and ProcessProposal hooks allow validators to enforce fair transaction ordering at the consensus level — providing MEV protection without external infrastructure.

Custom Precompiles

Four precompiled contracts live at reserved addresses and execute native Go code at consensus speed: Precompiles use the HyperPaxeer stateful-precompile framework (cmn.Precompile embedded struct with RunSetup for SDK context access). Solidity interfaces are at contracts/paxspot/src/interfaces/.

Cosmos SDK Modules

Standard Modules (Alexandria Fork)

x/evm, x/erc20, x/feemarket, x/vesting, x/inflation, x/epochs, x/staking, x/distribution, x/gov, x/ibc

Custom Module: x/paxoracle

Validator Oracle Module — validators submit prices via the 0x903 precompile’s submitPrice(bytes32, int256, uint256) method. The module stores submissions in a KV store and aggregates them:
  • GetMedianPrice: filters stale submissions (>15 blocks), requires minimum quorum, computes confidence-weighted median
  • IsValidator: verifies submitter is an active validator via x/staking keeper
  • Parameters: staleness_threshold (default 15 blocks), min_quorum (default 1)

Chain-Level Advantages

These capabilities are possible because HyperPaxeer is a sovereign chain, not a shared L1/L2:
  1. Custom precompiles — move expensive computation (batch clearing, oracle aggregation) to native Go. Near-zero gas for critical operations
  2. Transaction ordering controlPrepareProposal/ProcessProposal enforce fair ordering. No front-running at the consensus level
  3. Native gas policy — gas prices can be set to near-zero for exchange operations or subsidised for funded smart wallets
  4. IBC interoperability — native token transfers from Osmosis, Injective, Noble (USDC), and other Cosmos chains. No bridges, no wrapping
  5. Validator-integrated keepers — validators run keeper logic as sidecars, making conditional order execution a first-class chain service

Node Architecture

Nodes are deployed via the hpx CLI as Docker containers. Two node types: Each node runs under /root/hyperpax-nodes/<name>/ with an FD Guardian sidecar that monitors file descriptors and auto-restarts on leak detection.

Endpoints per Node

Ports auto-increment for multi-node deployments on a single server.

Upgrade Process

Network upgrades are coordinated across all validators:
  1. Halt all validators at a target block height
  2. Back up chain state from one validator
  3. Distribute new binary as a Docker image
  4. Fix any app-hash or priv_validator mismatches
  5. Restart all validators simultaneously
The hpx CLI and validate/upgrades/ docs cover automated and manual upgrade procedures.

Resources

Network Status

Live validator health, node latency, and block timing

Run a Node

Deploy RPC or Validator nodes with the hpx CLI

Argus VM

Register architecture, ISA, gas model, and ArgLang

PaxSpot

Spot exchange leveraging all four precompiles