githubEdit

Installation

Automatic Installation

source <(curl -s https://raw.githubusercontent.com/NodersUA/Scripts/main/empower)

Manual Installation

# Update the repositories
apt update && apt upgrade -y
# Install developer packages
apt install curl iptables build-essential git wget jq make gcc nano tmux htop nvme-cli pkg-config libssl-dev libleveldb-dev tar clang bsdmainutils ncdu unzip libleveldb-dev -y
# Install Go (one command)
if [ "$(go version)" != "go version go1.20.5 linux/amd64" ]; then \
ver="1.20.5" && \
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 ; \
fi

go version

# go version go1.20.5 linux/amd64

Setup config

(OPTIONAL) Turn off indexing in config.toml

Check height in explorerarrow-up-right

Wallet

The wallet has been created. In the last line there will be a phrase that must be written down

Go to the #faucetarrow-up-right branch and request tokens

Validator

Do not forget to create a profile on https://keybase.io/arrow-up-right and set a profile photo there that will be imported by key and used for your validators.

Check yourself in the list explorerarrow-up-right

Or by command

!!! Save priv_validator_key.json which is located in /root/.empowerchain/config

Last updated