Skip to main content

Build Dymension

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

  1. Use git to retrieve Dymension:

    git clone https://github.com/dymensionxyz/dymension.git --branch v3.1.0
    cd dymension
  2. Build Dymension. This will install the dymd executable to your GOPATH environment variable.

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

    dymd version --long

    Example:

    name: dymension
    server_name: dymd
    version: v3.1.0
    commit: b0e997d6b921666b7c4da4e121a87a2652ed0d2a

    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