Crescent
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/crescent-network/crescent crescent
cd crescent
git checkout v4.0.0
make install
Configure Node
Initialize Node
Replace Moniker with your own name for node.
crescentd init Moniker --chain-id crescent-1
Download Genesis
wget https://github.com/crescent-network/launch/raw/main/mainnet/crescent-1/genesis.json.tar.gz | tar zxvf genesis.json.tar.gz
mv genesis.json ~/.crescent/config/genesis.json
Download Address Book
wget -P $HOME/.crescent/config http://snapshot.stakeme.io:81/crescent/addrbook.json
Create Service
Setup daemon procces
sudo tee /etc/systemd/system/crescentd.service > /dev/null <<EOF
[Unit]
Description=Crescent Node
After=network-online.target
[Service]
User=$USER
ExecStart=$(which crescentd) 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
crescentd tendermint unsafe-reset-all --keep-addr-book
wget http://snapshot.stakeme.io:81/crescent/crescent-snap.tar.gz
tar -C $HOME/ -zxvf crescent-snap.tar.gz --strip-components 1
rm crescent-snap.tar.gz
Start Node
Start service
sudo systemctl daemon-reload
sudo systemctl enable crescentd
sudo service crescentd start
Check logs
sudo journalctl -fu crescentd -o cat