Skip to main content

Setup your node

We will use docker to setup and deploy the Hyperliquid mainnet full node.

Install pre requis

sudo apt-get update && sudo apt upgrade -y
sudo apt-get install screen curl docker -y

Download the Hyperliquid repository

git clone https://github.com/hyperliquid-dex/node.git
cd node

Build the Docker Image & Run it

Modify the Dockerfile & put mainnet instead of testnet.
It should look like this:

FROM ubuntu:24.04

ARG USERNAME=hluser
ARG USER_UID=10000
ARG USER_GID=$USER_UID

# Define URLs as environment variables
ARG PUB_KEY_URL=https://raw.githubusercontent.com/hyperliquid-dex/node/refs/heads/main/pub_key.asc
ARG HL_VISOR_URL=https://binaries.hyperliquid-testnet.xyz/Testnet/hl-visor
ARG HL_VISOR_ASC_URL=https://binaries.hyperliquid-testnet.xyz/Testnet/hl-visor.asc

# Create user and install dependencies
RUN groupadd --gid $USER_GID $USERNAME \
&& useradd --uid $USER_UID --gid $USER_GID -m $USERNAME \
&& apt-get update -y && apt-get install -y curl gnupg \
&& apt-get clean && rm -rf /var/lib/apt/lists/* \
&& mkdir -p /home/$USERNAME/hl/data && chown -R $USERNAME:$USERNAME /home/$USERNAME/hl

USER $USERNAME
WORKDIR /home/$USERNAME

# Configure chain to mainnet
RUN echo '{"chain": "Mainnet"}' > /home/$USERNAME/visor.json

# Import GPG public key
RUN curl -o /home/$USERNAME/pub_key.asc $PUB_KEY_URL \
&& gpg --import /home/$USERNAME/pub_key.asc

# Download and verify hl-visor binary
RUN curl -o /home/$USERNAME/hl-visor $HL_VISOR_URL \
&& curl -o /home/$USERNAME/hl-visor.asc $HL_VISOR_ASC_URL \
&& gpg --verify /home/$USERNAME/hl-visor.asc /home/$USERNAME/hl-visor \
&& chmod +x /home/$USERNAME/hl-visor

# Expose gossip ports
EXPOSE 4000-4010

# Run a non-validating node
ENTRYPOINT ["/home/hluser/hl-visor", "run-non-validator", "--replica-cmds-style", "recent-actions"]

Create the docker image named hyperliquid-node

docker build -t hyperliquid-node .

Run the Docker container to initialize the node:

docker run -d --name hyperliquid-node \ -p 4000-4010:4000-4010 \ hyperliquid-node

Logs verification

docker logs -f hyperliquid-node

You have now a hyperliquid node running in mainnet