Node Installation
Hardware requirements The following requirements are recommended for running REGEN:
6 or more physical CPU cores
At least 1TB of SSD disk storage
At least 16GB of memory (RAM)
At least 500mbps network bandwidth
Manual Installation
# Update & install dependencies
sudo apt update && sudo apt upgrade -y
sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential bsdmainutils git make ncdu gcc git jq htop tmux chrony liblz4-tool -y
# Install Go
cd $HOME
VER="1.22.2"
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"
[ ! -f ~/.bash_profile ] && touch ~/.bash_profile
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bash_profile
source $HOME/.bash_profile
[ ! -d ~/go/bin ] && mkdir -p ~/go/bin
go version
# Set Vars
MONIKER=<YOUR_MONIKER_NAME_GOES_HERE>
echo "export MONIKER=$MONIKER" >> $HOME/.bash_profile
echo "export REGEN_CHAIN_ID="regen-1"" >> $HOME/.bash_profile
echo "export REGEN_PORT="101"" >> $HOME/.bash_profile
source $HOME/.bash_profile
# Download Binary
cd $HOME
rm -rf regen
git clone https://github.com/regen-network/regen-ledger.git regen
cd regen
git checkout v5.1.0
make install
# Config and Init App
regen config node tcp://localhost:${REGEN_PORT}57
regen config chain-id $REGEN_CHAIN_ID
regen init $MONIKER --chain-id $REGEN_CHAIN_ID
# Add Genesis File and Addrbook
wget -O $HOME/.regen/config/genesis.json https://testnet-files.syanodes.my.id/regen-m-genesis.json
wget -O $HOME/.regen/config/addrbook.json https://testnet-files.syanodes.my.id/regen-m-addrbook.json
#Configure Seeds and Peers
SEEDS=""
PEERS="[email protected]:26656,[email protected]:26656,[email protected]:30656,[email protected]:26656,[email protected]:22756,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:27216,[email protected]:25003,[email protected]:15632,[email protected]:30656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:14900,[email protected]:22756,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26664,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:27216,[email protected]:26656,[email protected]:26656,[email protected]:32656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:22756,[email protected]:46656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:30656,[email protected]:22756,[email protected]:26676,[email protected]:26656,[email protected]:22756,[email protected]:26656,[email protected]:6768,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:32656,[email protected]:22756,[email protected]:32656,[email protected]:26676,[email protected]:20000,[email protected]:26656,[email protected]:23656,[email protected]:26674,[email protected]:15632,[email protected]:1126,[email protected]:15632,[email protected]:30656,[email protected]:26656,[email protected]:26656,[email protected]:28656,[email protected]:26656,[email protected]:26956,[email protected]:22756,[email protected]:23356,[email protected]:26656,[email protected]:16656,[email protected]:26024,[email protected]:32399,[email protected]:12656,[email protected]:29656,[email protected]:26656,[email protected]:28656,[email protected]:26656,[email protected]:26656,[email protected]:2126"
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.regen/config/config.toml
sed -i -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0uregen\"/" $HOME/.regen/config/app.toml
sed -i -e 's|^indexer *=.*|indexer = "null"|' $HOME/.regen/config/config.toml
sed -i 's|^prometheus *=.*|prometheus = true|' $HOME/.regen/config/config.toml
# Config Pruning
pruning="custom"
pruning_keep_recent="100"
pruning_keep_every="0"
pruning_interval="19"
sed -i -e "s/^pruning *=.*/pruning = \"$pruning\"/" $HOME/.regen/config/app.toml
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"$pruning_keep_recent\"/" $HOME/.regen/config/app.toml
sed -i -e "s/^pruning-keep-every *=.*/pruning-keep-every = \"$pruning_keep_every\"/" $HOME/.regen/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"$pruning_interval\"/" $HOME/.regen/config/app.toml
# Set Custom Port
sed -i -e "s%:1317%:${REGEN_PORT}17%; s%:8080%:${REGEN_PORT}80%; s%:9090%:${REGEN_PORT}90%; s%:9091%:${REGEN_PORT}91%; s%:8545%:${REGEN_PORT}45%; s%:8546%:${REGEN_PORT}46%; s%:6065%:${REGEN_PORT}65%" $HOME/.regen/config/app.toml
sed -i -e "s%:26658%:${REGEN_PORT}58%; s%:26657%:${REGEN_PORT}57%; s%:6060%:${REGEN_PORT}60%; s%:26656%:${REGEN_PORT}56%; s%:26660%:${REGEN_PORT}61%" $HOME/.regen/config/config.toml
# Set Service File
sudo tee /etc/systemd/system/regen.service > /dev/null <<EOF
[Unit]
Description=ixo-mainnet
After=network-online.target
[Service]
User=$USER
ExecStart=$(which regen) start --home $HOME/.regen
Restart=on-failure
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
# Enable and Start Service
sudo systemctl daemon-reload
sudo systemctl enable regen
sudo systemctl start regen && sudo journalctl -fu regen -o cat
Auto Installation
wget https://snapshot.syanodes.my.id/auto/mainnet/regen_auto && chmod +x regen_auto && ./regen_auto
Last updated