Installation
Setting up your validator node has never been so easy. Get your validator running in minutes by following step by step instructions.
Last updated
Setting up your validator node has never been so easy. Get your validator running in minutes by following step by step instructions.
Last updated
Chain ID: fxcore | Latest Version Tag: v7.5.0
MONIKER="YOUR_MONIKER_GOES_HERE"
sudo apt -q update
sudo apt -qy install curl git jq lz4 build-essential
sudo apt -qy upgrade
sudo rm -rf /usr/local/go
curl -Ls https://go.dev/dl/go1.22.7.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)
# Clone project repository
cd $HOME
rm -rf fxcore
git clone https://github.com/functionx/fx-core fxcore
cd fxcore
git checkout v7.5.0
# Build binaries
make build
# Prepare binaries for Cosmovisor
mkdir -p $HOME/.fxcore/cosmovisor/genesis/bin
mv target/dist/fxcored $HOME/.fxcore/cosmovisor/genesis/bin/
rm -rf build
# Create application symlinks
ln -s $HOME/.fxcore/cosmovisor/genesis $HOME/.fxcore/cosmovisor/current
sudo ln -s $HOME/.fxcore/cosmovisor/current/bin/fxcored /usr/local/bin/fxcored
# Download and install Cosmovisor
go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@latest
# Create service
sudo tee /etc/systemd/system/fxcore.service > /dev/null << EOF
[Unit]
Description fxcore-main node service
After=network-online.target
[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
Restart=on-failure
RestartSec=10
LimitNOFILE=65535
Environment="DAEMON_HOME=$HOME/.fxcore"
Environment="DAEMON_NAME=fxcored"
Environment="UNSAFE_SKIP_BACKUP=true"
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable fxcore
# Set node configuration
fxcored config chain-id fxcore
fxcored config keyring-backend test
# Initialize the node
fxcored init $MONIKER --chain-id fxcore
# Download genesis and addrbook
curl -Ls https://snapshots.stakeandrelax.net/snapshots/fxcore/genesis.json > $HOME/.fxcore/config/genesis.json
curl -Ls https://snapshots.stakeandrealx.net/fxcore/addrbook.json > $HOME/.fxcore/config/addrbook.json
# Add seeds
sed -i -e "s|^seeds *=.*|seeds = \"[email protected]:10556\"|" $HOME/.fxcore/config/config.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/.fxcore/config/app.toml
curl -L https://snapshots.stakeandrelax.net/snapshots/fxcore/snapshot_latest.tar.lz4 | tar -Ilz4 -xf - -C $HOME/.fxcore
[[ -f $HOME/.fxcore/data/upgrade-info.json ]] && cp $HOME/.fxcore/data/upgrade-info.json $HOME/.fxcore/cosmovisor/genesis/upgrade-info.json
sudo systemctl start fxcore && sudo journalctl -u fxcore -f --no-hostname -o cat