Read-only access to synced Hyperliquid edge-node data for builders.
To get access create an issue with "Get access" template. Link
Two ways to access the edge data:
Useful for browsing and downloading files.
sftp -P 2222 hlread@49.12.43.246Inside SFTP:
cd data
ls
get <file>
Useful if you want to inspect data directly with Unix tools.
ssh -p 2222 hlcli@49.12.43.246Inside the shell:
cd /data
ls
tree
find . -type f | head
jq .
rg "0x..."The CLI runs inside a locked-down container with /data mounted read-only.
-
Make sure your GitHub account has at least one public SSH key.
You can check here:
https://github.com/<your-username>.keys -
Connect using:
sftp -P 2222 hlread@49.12.43.246
or:
ssh -p 2222 hlcli@49.12.43.246
No guarantees around:
- uptime
- completeness
- latency
- long-term data retention
Use it for debugging, exploration, and development workflows.
Check that:
- your issue has the
get accesslabel - your GitHub account has a public SSH key
- you are connecting with the matching private key
- enough time has passed for access to refresh
Try:
ssh -vvv -p 2222 hlcli@49.12.43.246