Persistence
HomePrepare Server
sudo apt update
sudo apt install curl tar wget clang pkg-config libssl-dev libleveldb-dev jq build-essential bsdmainutils git make htop unzip bc htop -y
if go version >/dev/null 2>&1; then
echo -e "\033[0;31m Go is already installed\033[0m"
else
wget -O go1.19.2.linux-amd64.tar.gz https://golang.org/dl/go1.19.2.linux-amd64.tar.gz
rm -rf /usr/local/go && tar -C /usr/local -xzf go1.19.2.linux-amd64.tar.gz && rm go1.19.2.linux-amd64.tar.gz
echo 'export GOROOT=/usr/local/go' >> $HOME/.bash_profile
echo 'export GOPATH=$HOME/go' >> $HOME/.bash_profile
echo 'export GO111MODULE=on' >> $HOME/.bash_profile echo '
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin' >> $HOME/.bash_profile && . $HOME/.bash_profile echo -e "\033[0;31m $(go version) \033[0m"
fi
Install node
git clone https://github.com/persistenceOne/persistenceCore persistence
cd persistence
git checkout v7.0.0
make install
Configure Node
Initialize Node
Replace Moniker with your own name for node.
persistenceCore init Moniker --chain-id core-1
Download Genesis
curl -s https://raw.githubusercontent.com/persistenceOne/genesisTransactions/master/core-1/final_genesis.json > > $HOME/.persistenceCore/config/genesis.json
Download Address Book
wget -P $HOME/.persistenceCore/config http://snapshot.stakeme.io:81/persistence/addrbook.json
Create Service
Setup daemon procces
sudo tee /etc/systemd/system/persistence.service > /dev/null <<EOF
[Unit]
Description=PersistenceCore Node
After=network-online.target
[Service]
User=$USER
ExecStart=$(which persistenceCore) start
Restart=on-failure
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
Download Snapshot
For quick synchronization, we recommend using a snapshot, which will allow you to quickly catch up with the current height
persistenceCore tendermint unsafe-reset-all --keep-addr-book
wget http://snapshot.stakeme.io:81/persistence/persistence-snap.tar.gz
tar -C $HOME/ -zxvf persistence-snap.tar.gz --strip-components 1
rm persistence-snap.tar.gz
Start Node
Start service
sudo systemctl daemon-reload
sudo systemctl enable persistence
sudo service persistence start
Check logs
sudo journalctl -fu persistence -o cat