Community-maintained index of public infrastructure for Hyperliquid. Resources are listed here: https://hyperliquid.directory
- RPCs - Public RPC endpoints
- Peers - P2P node addresses
- Explorers - Block explorers & dashboards
- Meta - Provider info (logos, websites, socials)
- Analytics - Dashboards (Dune, custom, etc)
- Tools - SDKs, CLIs, scripts, clients
- Indexers - Blockchain data platforms and indexers
- APIs - Direct API endpoints and documentation
- Guides - Tutorials, videos, educational content
Each category has its own README with detailed documentation.
- Each provider = one JSON file per category
- CI validates all submissions automatically
- Everything aggregates at https://hyperliquid.directory
# Fork & clone
git clone https://github.com/<you>/hyperliquid-directory.git
cd hyperliquid-directory
# Example: Add your RPC endpoint
cat > rpcs/my-provider.json << EOF
{
"entity": "my-provider",
"endpoints": [{
"url": "https://rpc.my-provider.com/evm",
"description": "Fast and reliable Hyperliquid RPC"
}]
}
EOF
# Add your entity info
cat > meta/my-provider.json << EOF
{
"name": "My Provider",
"website": "https://my-provider.com",
"description": "Professional infrastructure for Hyperliquid",
"socials": ["https://x.com/myprovider"]
}
EOF
# Test locally
npm install && npm run validate
See category READMEs for complete file format documentation.
https://rpc.hyperliquid.directory/evm
Load-balanced across all community endpoints. Rate limits per IP:
- 10 req/s
- 800 req/10s
Live status: https://hyperliquid.directory/rpcs
Check the README in the relevant category for formats and examples