RPC / API

HTTP endpoints for chain queries and transaction submission (when enabled).

If these commands return 404 on the public site, set NEXT_PUBLIC_PRAXISNET_API_BASE to your deployed PraxisNet API gateway host (for example https://api.praxis-chain.com) when it is live.

Network status

curl -s https://praxis-chain.com/chain/v1/status

Chain head

curl -s https://praxis-chain.com/api/chain/head

Transaction submission

Submission may be API-key gated depending on operator configuration.

curl -s -X POST https://praxis-chain.com/chain/v1/tx \
  -H "Content-Type: application/json" \
  -H "X-API-Key: <your-key-if-required>" \
  -d '{"tx_hex":"<signed_tx_hex>"}'