Installation

Elys Mainnet Installation

Setup Server

# Update Packages and Install Prerequisites
sudo apt update && apt upgrade -y
sudo apt install curl git jq lz4 build-essential unzip fail2ban ufw -y
# Set Firewall
sudo ufw default allow outgoing
sudo ufw default deny incoming
sudo ufw allow ssh
sudo ufw allow 9100
# Enable Firewall
sudo ufw enable

Install Elys Daemon

# Install elys through repository
cd $HOME
rm -rf elys
git clone https://github.com/elys-network/elys.git elys
cd elys
git checkout v2.3.0
make install

Setting Up Your Node

Setting Pruning, Minimum Gas Prices and Indexer (Optional)

Setup Cosmovisor

Running as services with cosmovisor

**save the file, make sure to change YOUR_USERNAME, YOUR_COSMOVISOR_BINARY_LOCATION, YOUR_DATA_FOLDER.


Using Snapshots

The latest snapshot : elys_snapshot_(todaydate).tar.lz4

for example filename: elys_snapshot_2025-04-17.tar.lz4

circle-info

Useful Tips Check Version: elysd version --long

CHECK STATUS BINARY: systemctl status elysd CHECK RUNNING LOGS: journalctl -fu elysd -o cat CHECK LOCAL STATUS: curl -s localhost:26657/status | jq .result.sync_info

Last updated