Skip to content

saripanter1/dymension

This branch is 516 commits behind dymensionxyz/dymension:main.

Folders and files

NameName
Last commit message
Last commit date
Jan 4, 2024
Dec 19, 2023
Dec 18, 2023
Oct 18, 2023
Nov 1, 2023
Dec 7, 2023
Dec 6, 2023
Dec 17, 2023
Dec 7, 2023
Nov 21, 2023
Dec 17, 2023
Jul 20, 2022
Oct 19, 2023
Oct 18, 2023
Oct 15, 2023
Sep 21, 2022
Nov 10, 2023
Sep 16, 2022
Nov 1, 2023
Apr 17, 2023
Dec 18, 2023
Dec 18, 2023
Nov 27, 2023

Repository files navigation

Dymension Hub

image

license Go issues tests lint

Overview

Welcome to the Dymension Hub, the Settlement Layer of the Dymension protocol.

This guide will walk you through the steps required to set up and run a Dymension Hub full node.

Table of Contents

Prerequisites

Installation

Clone dymension:

git clone https://github.com/dymensionxyz/dymension.git
cd dymension
make install

Check that the dymd binaries have been successfully installed:

dymd version

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

Initializing dymd

  • Using the setup script:

    This method is preferred as it preconfigured to support running rollapps locally

    bash scripts/setup_local.sh
  • Manually:

    First, set the following environment variables:

    export CHAIN_ID="dymension_100-1"
    export KEY_NAME="local-user"
    export MONIKER_NAME="local"

    Then, initialize a chain with a user:

    dymd init "$MONIKER_NAME" --chain-id "$CHAIN_ID"
    dymd keys add "$KEY_NAME" --keyring-backend test
    dymd add-genesis-account "$(dymd keys show "$KEY_NAME" -a --keyring-backend test)" 100000000000udym
    dymd gentx "$KEY_NAME" 1000000dym --chain-id "$CHAIN_ID" --keyring-backend test
    dymd collect-gentxs

Running the Chain

Now start the chain!

dymd start

You should have a running local node!

Bootstrapping liquidity pools

To bootstrap the GAMM module with pools:

sh scripts/pools/pools_bootstrap.sh

Adding incentives

Creating incentives streams

After creating the pools above, we create 2 incentive streams through gov:

sh scripts/incentives/fund_incentives.sh

Wait for the gov proposal to pass, and validate with:

dymd q streamer streams

Locking tokens

To get incentives, we need to lock the LP tokens:

sh scripts/incentives/lockup_bootstrap.sh

validate with:

dymd q lockup module-balance

check rewards

Every minute a share of the rewards will be distributed!

validate with:

dymd q incentives active-gauges

If you have any issues please contact us on discord in the Developer section. We are here for you!

Releases

No releases published

Packages

No packages published

Languages

  • Go 97.0%
  • Shell 2.4%
  • Other 0.6%