Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.paxeer.app/llms.txt

Use this file to discover all available pages before exploring further.

HyperPaxeer mainnet

Use this page as the source of truth for current network constants.
HyperPaxeer currently operates mainnet only. There is no public testnet because Argus VM infrastructure is expensive to operate continuously.
FieldValue
Network nameHyperPaxeer mainnet
Cosmos chain IDhyperpax_125-1
EVM chain ID125
Public binaryhyperpaxd_2.0.3
Runtime sourcehyperpaxeer-os with custom precompiles from hyperpax-os-cronosRelease
JSON-RPChttps://public-rpc.paxeer.app/rpc
CometBFT RPChttps://public-rpc.paxeer.app:26657
REST APIhttps://public-rpc.paxeer.app:1317
gRPChttps://public-rpc.paxeer.app:9090
Block explorerhttps://paxscan.io
Native display symbolHPX / hpx
Base denominationahpx
Decimals18
Bech32 prefixpax
HD pathBIP44 coin type 60

Wallet configuration

FieldValue
Network nameHyperPaxeer
RPC URLhttps://public-rpc.paxeer.app/rpc
Chain ID125
Currency symbolHPX
Block explorerhttps://paxscan.io
wagmi-config.ts
import { createConfig, http } from 'wagmi'
import { defineChain } from 'viem'

export const hyperpaxeer = defineChain({
  id: 125,
  name: 'HyperPaxeer',
  nativeCurrency: { decimals: 18, name: 'HyperPaxeer', symbol: 'HPX' },
  rpcUrls: {
    default: { http: ['https://public-rpc.paxeer.app/rpc'] },
  },
  blockExplorers: {
    default: { name: 'PaxScan', url: 'https://paxscan.io' },
  },
})

export const config = createConfig({
  chains: [hyperpaxeer],
  transports: { [hyperpaxeer.id]: http() },
})

Live EVM extensions

AddressNameStatefulMainnet status
0x0000000000000000000000000000000000000400Bech32 encodingNoActive
0x0000000000000000000000000000000000000901PaxSpot OROBResolverNoActive
0x0000000000000000000000000000000000000902PaxSpot BatchClearingNoActive
0x0000000000000000000000000000000000000903PaxSpot OracleAggregator / VOMMixedActive
0x0000000000000000000000000000000000000904PaxSpot PoFQScorerNoActive

Development notes

  • Use local EVM development networks for pre-mainnet contract testing.
  • Use mainnet RPC only when you are ready to interact with production HyperPaxeer state.
  • Store private keys in .env files or wallet-managed signers. Never commit secrets.
  • Use paxscan.io for explorer links in public docs and applications.