https://devnet.dymension.xyz/rollapp/markcn_8353858-1/metrics

Prerequisites

Before you begin, ensure you have the following:

Step 1: Install Dependencies

  1. Update and upgrade your system packages:

    sudo apt-get update && sudo apt-get upgrade -y
    
    
  2. Install essential build tools:

    sudo apt-get install -y build-essential git
    
    
  3. Install Go (if not already installed):

    wget <https://golang.org/dl/go1.18.linux-amd64.tar.gz>
    sudo tar -C /usr/local -xzf go1.18.linux-amd64.tar.gz
    echo "export PATH=$PATH:/usr/local/go/bin" >> ~/.profile
    source ~/.profile
    
    
  4. Verify Go installation:

    go version
    
    

Step 2: Clone the Dymension Repository

  1. Clone the repository:

    git clone <https://github.com/dymensionxyz/dymension>
    cd dymension
    
    
  2. Checkout the latest stable release:

    git checkout tags/v0.1.0
    
    

Step 3: Build the Binary

  1. Compile the Dymension binaries:

    make build
    
    
  2. Move the binary to a directory in your PATH:

    sudo mv build/dymd /usr/local/bin/
    
    
  3. Verify the installation:

    dymd version
    
    

Step 4: Initialize the Node

  1. Initialize your node:

    dymd init <your_node_name> --chain-id <chain_id>