Installation
dymension_1100-1
v3.1.0
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: v3.1.0 commit: b0e997d6b921666b7c4da4e121a87a2652ed0d2a
Create Wallet, to restore exexuting wallet, use the flag recover
Download Genesis:
Download Addrbook:
Set pruning
Create systemd
SnapShot Mainnet updated every 5 hours
Check Sync, If catching up = false maybe 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