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
IPaxSpotReaderandIAllowanceProvider
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 the0x903 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/stakingkeeper - 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:- Custom precompiles — move expensive computation (batch clearing, oracle aggregation) to native Go. Near-zero gas for critical operations
- Transaction ordering control —
PrepareProposal/ProcessProposalenforce fair ordering. No front-running at the consensus level - Native gas policy — gas prices can be set to near-zero for exchange operations or subsidised for funded smart wallets
- IBC interoperability — native token transfers from Osmosis, Injective, Noble (USDC), and other Cosmos chains. No bridges, no wrapping
- Validator-integrated keepers — validators run keeper logic as sidecars, making conditional order execution a first-class chain service
Node Architecture
Nodes are deployed via thehpx 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:- Halt all validators at a target block height
- Back up chain state from one validator
- Distribute new binary as a Docker image
- Fix any app-hash or priv_validator mismatches
- Restart all validators simultaneously
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