Installation

Chain ID: babajaga-1Latest Version Tag: v1.3.0

Setup validator name

Replace **YOUR_MONIKER_GOES_HERE** with your validator name
MONIKER="YOUR_MONIKER_GOES_HERE"

Install dependencies

Update system and install build tools

sudo apt -q update
sudo apt -qy install curl git jq lz4 build-essential
sudo apt -qy upgrade

Install Go

sudo rm -rf /usr/local/go
curl -Ls https://go.dev/dl/go1.21.9.linux-amd64.tar.gz | sudo tar -xzf - -C /usr/local
eval $(echo 'export PATH=$PATH:/usr/local/go/bin' | sudo tee /etc/profile.d/golang.sh)
eval $(echo 'export PATH=$PATH:$HOME/go/bin' | tee -a $HOME/.profile)

Download and build binaries

# Clone project repository
cd $HOME
rm -rf c4e-chain
git clone https://github.com/chain4energy/c4e-chain
cd c4e-chain
git checkout v1.3.0

# Build and install binaries
make install

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

[Service]
User=$USER
ExecStart=$(which c4ed) start
Restart=on-failure
RestartSec=3
LimitNOFILE=65535

[Install]
WantedBy=multi-user.target
EOF

Initialize the node

# Set node configuration
c4ed config chain-id babajaga-1
c4ed config keyring-backend file

# Initialize the node
c4ed init $MONIKER --chain-id babajaga-1

# Download genesis and addrbook
curl -Ls https://github.com/dvjromashkin/guides/raw/main/c4e-testnet/genesis.json > $HOME/.c4e-chain/config/genesis.json
curl -Ls https://github.com/dvjromashkin/guides/raw/main/c4e-testnet/addrbook.json > $HOME/.c4e-chain/config/addrbook.json

# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0.025uc4e\"|" $HOME/.c4e-chain/config/app.toml

# Set pruning
sed -i \
  -e 's|^pruning *=.*|pruning = "custom"|' \
  -e 's|^pruning-keep-recent *=.*|pruning-keep-recent = "100"|' \
  -e 's|^pruning-keep-every *=.*|pruning-keep-every = "0"|' \
  -e 's|^pruning-interval *=.*|pruning-interval = "19"|' \
  $HOME/.c4e-chain/config/app.toml

### Start service and check the logs

```bash
sudo systemctl start c4ed && sudo journalctl -u c4ed -f -o cat