Installation

Current Version
Port Prefix

v3.0.2

308

Minimum hardware Requirements #

CPU : 4x CPUs
Ram : 8GB RAM 
Storage: 100GB of storage (SSD or NVME)

Setting Variables

echo "export WALLET="wallet"" >> $HOME/.bash_profile
echo "export MONIKER="test"" >> $HOME/.bash_profile
echo "export tellor_CHAIN_ID="layertest-3"" >> $HOME/.bash_profile
echo "export tellor_PORT="308"" >> $HOME/.bash_profile
echo "export DAEMON_NAME="layerd"" >> $HOME/.bash_profile
echo "export DAEMON_HOME=$HOME/.layer"" >> $HOME/.bash_profile
source $HOME/.bash_profile

Install dependencies

sudo apt update && sudo apt upgrade -y && sudo apt-get install make build-essential gcc git jq chrony lz4 tmux unzip bc -y && sudo apt install -y curl git jq lz4 build-essential unzip

INSTALL GO

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 && \
go version

# Adding Go's location to profile
cat <<'EOF' >>$HOME/.profile
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
EOF

source $HOME/.profile
go version

Download and build binary

# Clone project repository
cd $HOME
rm -rf layer
git clone https://github.com/layer-io/layer
cd layer
git checkout v3.0.2

# Build binaries
make install

# Prepare binaries for Cosmovisor
mkdir -p $HOME/.layer/cosmovisor/genesis/bin
cp $HOME/go/bin/layerd $HOME/.layer/cosmovisor/genesis/bin/


# Create application symlinks
sudo ln -s $HOME/.layer/cosmovisor/genesis $HOME/.layer/cosmovisor/current -f
sudo ln -s $HOME/.layer/cosmovisor/current/bin/layerd /usr/local/bin/layerd -f

Installing Cosmovisor

# Download and install Cosmovisor
go install github.com/cosmos/cosmos-sdk/cosmovisor/cmd/cosmovisor@latest

# Create service
sudo tee /etc/systemd/system/tellor.service > /dev/null << EOF
[Unit]
Description=tellor node service
After=network-online.target

[Service]
User=$USER
ExecStart=$(which cosmovisor) run start --key-name $WALLET
Restart=on-failure
RestartSec=10
LimitNOFILE=65535
Environment="DAEMON_HOME=$HOME/.layer"
Environment="DAEMON_NAME=layerd"
Environment="UNSAFE_SKIP_BACKUP=true"


[Install]
WantedBy=multi-user.target
EOF

# Reload Daemon
sudo systemctl daemon-reload
sudo systemctl enable tellor.service

Initialize Node & Configuring Node Port

# Set node configuration
layerd init $MONIKER --chain-id layertest-3
layerd config node tcp://localhost:30857
layerd config keyring-backend file

# Set custom ports in client.toml
sed -i.bak -e "s%:26457%:${tellor_PORT}57%g"  $HOME/.layer/config/client.toml

# Set custom ports in app.toml
sed -i.bak -e "s%:1317%:${tellor_PORT}17%g;
s%:8080%:${tellor_PORT}80%g;
s%:9090%:${tellor_PORT}90%g;
s%:9091%:${tellor_PORT}91%g;
s%:8545%:${tellor_PORT}45%g;
s%:8546%:${tellor_PORT}46%g;
s%:6065%:${tellor_PORT}65%g" $HOME/.layer/config/app.toml

# Set custom ports in config.toml file
sed -i.bak -e "s%:26658%:${tellor_PORT}58%g;
s%:26657%:${tellor_PORT}57%g;
s%:6060%:${tellor_PORT}60%g;
s%:26656%:${tellor_PORT}56%g;
s%^external_address = \"\"%external_address = \"$(wget -qO- eth0.me):${tellor_PORT}56\"%;
s%:26660%:${tellor_PORT}60%g" $HOME/.layer/config/config.toml

# Download genesis and addrbook
wget -O $HOME/.layer/config/genesis.json https://files.nodeshub.online/testnet/tellor/genesis.json
wget -O $HOME/.layer/config/addrbook.json https://files.nodeshub.online/testnet/tellor/addrbook.json

# Add Seeds and Peers
SEEDS="6f6a3a908634b79b6fe7c4988efec2553f188234@tellor.test.seed.nodeshub.online:30856"
PEERS="$(curl -s https://files.nodeshub.online/mainnet/tellor/peers.txt)"
sed -i -e "s|^seeds *=.*|seeds = \"$SEEDS\"|; s|^persistent_peers *=.*|persistent_peers = \"$PEERS\"|" $HOME/.layer/config/config.toml

# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0loya\"|" $HOME/.layer/config/app.toml

# Set pruning and indexer to Null
sed -i -e "s/^pruning =./pruning = "custom"/" $HOME/.layer/config/app.toml sed -i -e "s/^pruning-keep-recent =./pruning-keep-recent = "100"/"
$HOME/.layer/config/app.toml sed -i -e "s/^pruning-interval =./pruning-interval = "50"/" $HOME/.layer/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.layer/config/config.toml
  
  

Download Snapshot

sudo systemctl stop tellor

# Back up priv_validator_state.json if needed
cp ~/.layer/data/priv_validator_state.json  ~/.layer/priv_validator_state.json.backup.backup

# Reset Data Folder
layerd tendermint unsafe-reset-all --home $HOME/.layer --keep-addr-book

SNAP_URL=$(curl -s https://files.nodeshub.online/testnet/tellor/snapshot/snap-info.txt | grep "Snapshot_URL" | cut -d ' ' -f 2)
curl ${SNAP_URL} | lz4 -dc - | tar -xf - -C $HOME/.layer

cp $HOME/.layer/priv_validator_state.json.backup $HOME/.layer/data/priv_validator_state.json
sudo systemctl restart tellor && sudo journalctl -u tellor -f -o cat

Start service and check the logs

sudo systemctl start tellor.service && sudo journalctl -u tellor -f -o cat

Last updated