Installation
Hardware prerequisites
To prepare for the upcoming testnet and network upgrades the Dymension validators and full nodes should be prepared with the following minimum recommended hardware requirements:
8 cores
1TB of NVME disk storage
64gb of memory (RAM)
100mbps network bandwidth
Preparing the server
sudo apt update && sudo apt upgrade -y
sudo apt install curl lz4 tar wget clang pkg-config libssl-dev jq build-essential bsdmainutils git make ncdu gcc git jq chrony liblz4-tool -yInstall Go
cd $HOME
ver="1.21.3"
wget "https://golang.org/dl/go$ver.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$ver.linux-amd64.tar.gz"
rm "go$ver.linux-amd64.tar.gz"
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile
source $HOME/.bash_profile go versionVerify that the Dymension full node is installed correctly
Example:
name: dymension server_name: dymd version: v2.0.0-alpha.8 commit: 080bbb9ede90170f84a3f4f3665c179ea8742716
Create Wallet:
Download Genesis:
Download Addrbook:
Set pruning
Create systemd
SnapShot Mainnet updated every 5 hours
Create Validator
Delete Node ( Be careful when using this command, all your data will be deleted)
sudo systemctl stop dymd sudo systemctl disable dymd rm /etc/systemd/system/dymd.service sudo systemctl daemon-reload cd $HOME rm -rf dymension rm -rf .dymension rm -rf $(which dymd)
Last updated