Skip to content

purr-build/hl-node-access

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

Hyperliquid Edge Node Access

Read-only access to synced Hyperliquid edge-node data for builders.

To get access create an issue with "Get access" template. Link

What you get

Two ways to access the edge data:

1. Read-only SFTP

Useful for browsing and downloading files.

sftp -P 2222 hlread@49.12.43.246

Inside SFTP:

cd data
ls
get <file>

2. Sandboxed SSH CLI

Useful if you want to inspect data directly with Unix tools.

ssh -p 2222 hlcli@49.12.43.246

Inside 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.

How to request access

  1. Make sure your GitHub account has at least one public SSH key.

    You can check here:

    https://github.com/<your-username>.keys
    
  2. Open an issue

  3. Connect using:

    sftp -P 2222 hlread@49.12.43.246

    or:

    ssh -p 2222 hlcli@49.12.43.246

Current limitations

No guarantees around:

  • uptime
  • completeness
  • latency
  • long-term data retention

Use it for debugging, exploration, and development workflows.

Troubleshooting

Permission denied (publickey)

Check that:

  • your issue has the get access label
  • 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

About

Read-only access to synced Hyperliquid Non-validating Node

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors