Skip to main content
HyperEVM (Chain ID: 999) has two distinct node pools with different transaction visibility:
TypeNodeDescriptionUse Case
systx*nanorethFull archive nodes, includes system transactionsIndexing, historical queries, debugging
standard*hlnodeRealtime-optimized nodes, excludes system transactionsFrontend dApps, realtime data
If you don’t specify a node type, requests may load-balance across both pools, causing inconsistent results.

Archive Nodes (with system transactions)

https://edge.goldsky.com/standard/evm/999?secret=YOUR_SECRET&use-upstream=systx*
curl "https://edge.goldsky.com/standard/evm/999?secret=YOUR_SECRET&use-upstream=systx*" \
  -X POST \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"eth_getBlockByNumber","params":["0x1", true],"id":1}'

Realtime Nodes (without system transactions)

https://edge.goldsky.com/standard/evm/999?secret=YOUR_SECRET&use-upstream=standard*
curl "https://edge.goldsky.com/standard/evm/999?secret=YOUR_SECRET&use-upstream=standard*" \
  -X POST \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'