Paxeer Docs logo

Paxeer Network Chain Configuration

Connect to Paxeer Network mainnet with chain IDs, RPC endpoints, and MetaMask configuration for EVM and Cosmos environments.

Paxeer Network runs a single production chain. There is no public testnet at this time.

Mainnet

Paxeer mainnet is the production environment for all transactions, contract deployments, and agent activity.

ParameterValue
Network NamePaxeer Network
Cosmos Chain IDhyperpax_125-1
EVM Chain ID125 (0x7D)
Currency SymbolPAX
Base Denomuhpx
EVM RPChttps://public-rpc.paxeer.app/evm/reference
Block Explorerhttps://paxscan.io
Bech32 Prefixpax

Add Paxeer to MetaMask

Use the snippet below to add Paxeer mainnet to MetaMask programmatically:

await window.ethereum.request({
  method: 'wallet_addEthereumChain',
  params: [{
    chainId: '0x7D',
    chainName: 'Paxeer Network',
    nativeCurrency: {
      name: 'PAX',
      symbol: 'PAX',
      decimals: 18
    },
    rpcUrls: ['https://public-rpc.paxeer.app/evm/reference'],
    blockExplorerUrls: ['https://paxscan.io']
  }]
});

Using paxd

The Paxeer binary is paxd. The default home directory is ~/.paxeer.

# Check node status
paxd status

# Query account balance
paxd query bank balances <pax1_address> --node https://public-rpc.paxeer.app/evm/reference

Local development

You can run a local Paxeer node for development and testing. Set the chain ID to any value you choose - it will not conflict with mainnet.

  • Purpose: Local development and testing
  • Chain ID: Set by user (default: paxeer-local)

Refer to the Nodes Introduction section for instructions on running a local chain.