Network Parameters
Chain identity, denominations, configurable defaults, and queries for a Paxeer node.
Chain Identifiers
Use these identifiers when configuring a wallet or client. Confirm the connected node's chain ID before signing a transaction.
| Parameter | Value |
|---|---|
| EVM chain ID | 125 / 0x7d |
| Consensus chain ID | hyperpax_125-1 |
| Account prefix | pax1… |
| Validator operator prefix | paxvaloper1… |
| Binary / default home | paxd / ~/.paxeer |
| Go module | github.com/sidiora-labs/paxeer-network |
EVM_RPC_URL=http://127.0.0.1:8545
curl -sS "$EVM_RPC_URL" -H 'Content-Type: application/json' \
--data '{"jsonrpc":"2.0","id":1,"method":"eth_chainId","params":[]}'
paxd status --node tcp://127.0.0.1:26657hpx/publish.sh, node/params/config.go, node/const.go, rpc/info.go.Native Denominations
PAX is the native gas asset. Cosmos CLI and bank APIs use uhpx for base-unit amounts and hpx for the human-unit identifier. EVM clients use 18-decimal native amounts.
1 PAX = 1,000,000 uhpx
1 uhpx = 1,000,000,000,000 EVM wei
1 PAX = 1,000,000,000,000,000,000 EVM weiUse uhpx amounts for Cosmos CLI transactions and 18-decimal native amounts for EVM transactions. Address association joins the supported wallet representations; see address precompiles.
node/params/config.go — UhpxExponent; modules/evm/state/utils.go — UhpxToSweiMultiplier.Query Current Parameters
Query the connected network for its active governance, staking, slashing, and consensus parameters. Cosmos queries use the consensus RPC endpoint; EVM requests use the EVM JSON-RPC endpoint.
paxd query staking params --node tcp://127.0.0.1:26657
paxd query slashing params --node tcp://127.0.0.1:26657
paxd query gov params --node tcp://127.0.0.1:26657
curl -sS http://127.0.0.1:26657/consensus_params| Default parameter | Value | Meaning |
|---|---|---|
| Unbonding time | 21 days | Default staking unbonding duration |
| Unbonding / redelegation entries | 7 | Limit for an individual delegation pair |
| Standard governance period | 2 days | Default deposit and voting periods |
| Expedited governance period | 1 day | Default expedited voting duration |
| Governance minimum deposit | 10,000,000 base units | Query the active governance deposit requirement |
| Expedited minimum deposit | 20,000,000 base units | Query the active governance deposit requirement |
| Slashing fractions | 0 by default | Configured by chain governance |
Governance approval requires a yes-vote ratio strictly greater than the configured threshold after abstentions are excluded. Validator jailing and equivocation handling apply alongside the configured slashing fractions.
sdk/x/staking/types/params.go, sdk/x/gov/types/params.go, sdk/x/gov/keeper/tally.go, sdk/x/slashing/types/params.go.Gas and Block Limits
Query eth_gasPrice, eth_feeHistory, and eth_maxPriorityFeePerGas for EVM fee information. The node also has local admission prices and simulation limits. Consensus block.max_bytes is a block limit; mempool.max-tx-bytes is a separate transaction limit.
See JSON-RPC and Configuration for the distinct EVM, consensus, and node settings.
Performance and Endpoints
Track block interval using block timestamps, throughput using transactions per block, and RPC latency using request metrics. Record the node revision and workload when comparing measurements.
Use the RPC endpoint supplied by your node operator. The HPX distribution and peer registry supplies chain metadata and peer information for its configured network.
LayerX Integration
Paxeer chain parameters govern L1 transactions. For applications that also use LayerX activities and receipts, see Paxeer and LayerX for the integration architecture.