Skip to main content

Build Dymension Hub

The following section explains how to build the Dymension Hub full node:

  1. Use git to retrieve Dymension Hub:

    git clone https://github.com/dymensionxyz/dymension.git --branch v2.0.0-alpha.3
    cd dymension
  2. Build the Dymension Hub. This will install the dymd executable to your GOPATH environment variable.

    make install
  3. Verify that the Dymension Hub full node is installed correctly.

    dymd version --long

    Example:

    name: dymension
    server_name: dymd
    version: v2.0.0-alpha.3
    commit: 7a74c08a5667fd783a2cece352066363c5bb347e

    If the dymd command is not found an error message is returned, confirm that your GOPATH is correctly configured by running the following command:

    export PATH=$PATH:$(go env GOPATH)/bin