Installation

🖥️System Requirements

- OS: Linux - CPU: 6 Core(s) - Memory: 32GB - Storage: 300GB

You can get your server here : 🖥Click Here to Rent VPS from €4.50/month

🛠️Manual Installation

This guide is created under the assumption you are using Ubuntu 22.04 LTS If you use other OS, please modify the commands accordingly

Set environment

export INSTALLATION_DIR=${HOME}/empe-chain
export DAEMON_NAME=emped
export DAEMON_HOME=${HOME}/.empe-chain
export SERVICE_NAME=emped
export MONIKER="YOUR_NODE_NAME_HERE"
export WALLET="YOUR_WALLET_NAME_HERE"

DAEMON_HOME is the default path, you customize it as you wish

Write env to .profile

echo 'export DAEMON_NAME=${DAEMON_NAME}' >> ~/.profile
echo 'export DAEMON_HOME=${DAEMON_HOME}' >> ~/.profile
echo 'export DAEMON_ALLOW_DOWNLOAD_BINARIES=true' >> ~/.profile
echo 'export DAEMON_RESTART_AFTER_UPGRADE=true' >> ~/.profile
echo 'export DAEMON_LOG_BUFFER_SIZE=512' >> ~/.profile
echo 'export WALLET=${WALLET}' >> ~/.profile

source ~/.profile

This step is optional, but we recommend you to do it for convenience

Install dependencies

Please refer to Server Preparation

Prepare installation

Install and Setup Empeiria Daemon

Check emped version

Download genesis.json

Create or Restore Wallet

You will be prompted to "Enter your bip39 mnemonic", paste your phrase and press [ENTER]

Check your wallet

Setup pruning config

The number shown only for reference. You can change the number for each parameter as you want

Setting minimum gas fee

Setting up Cosmovisor

Enable the service

Check service log

Cleanup

⚙️Automatic Installation

You can visit our repository and follow the instruction there

https://github.com/CryptoNodeID/empe-chain

Last updated

Was this helpful?