HyperEVM (Chain ID: 999) has two distinct node pools with different transaction visibility:
| Type | Node | Description | Use Case |
|---|
systx* | nanoreth | Full archive nodes, includes system transactions | Indexing, historical queries, debugging |
standard* | hlnode | Realtime-optimized nodes, excludes system transactions | Frontend 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}'