Installation
v7.5.0
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 functionx_CHAIN_ID="fxcore"" >> $HOME/.bash_profile
echo "export functionx_PORT="242"" >> $HOME/.bash_profile
echo "export DAEMON_NAME="fxcored"" >> $HOME/.bash_profile
echo "export DAEMON_HOME=$HOME/.fxcore"" >> $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 fx-core
git clone https://github.com/functionx/fx-core.git
cd fx-core
git checkout v7.5.0
# Build binaries
make build
# Prepare binaries for Cosmovisor
mkdir -p $HOME/.fxcore/cosmovisor/genesis/bin
mv build/fxcored $HOME/.fxcore/cosmovisor/genesis/bin/
rm -rf build
# Create application symlinks
sudo ln -s $HOME/.fxcore/cosmovisor/genesis $HOME/.fxcore/cosmovisor/current -f
sudo ln -s $HOME/.fxcore/cosmovisor/current/bin/fxcored /usr/local/bin/fxcored -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/functionx.service > /dev/null << EOF
[Unit]
Description=functionx 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
# Reload Daemon
sudo systemctl daemon-reload
sudo systemctl enable functionx.service
Initialize Node & Configuring Node Port
# Set node configuration
fxcored init $MONIKER --chain-id fxcore
fxcored config node tcp://localhost:24257
fxcored config keyring-backend file
# Set custom ports in client.toml
sed -i.bak -e "s%:26457%:${functionx_PORT}57%g" $HOME/.fxcore/config/client.toml
# Set custom ports in app.toml
sed -i.bak -e "s%:1317%:${functionx_PORT}17%g;
s%:8080%:${functionx_PORT}80%g;
s%:9090%:${functionx_PORT}90%g;
s%:9091%:${functionx_PORT}91%g;
s%:8545%:${functionx_PORT}45%g;
s%:8546%:${functionx_PORT}46%g;
s%:6065%:${functionx_PORT}65%g" $HOME/.fxcore/config/app.toml
# Set custom ports in config.toml file
sed -i.bak -e "s%:26658%:${functionx_PORT}58%g;
s%:26657%:${functionx_PORT}57%g;
s%:6060%:${functionx_PORT}60%g;
s%:26656%:${functionx_PORT}56%g;
s%^external_address = \"\"%external_address = \"$(wget -qO- eth0.me):${functionx_PORT}56\"%;
s%:26660%:${functionx_PORT}60%g" $HOME/.fxcore/config/config.toml
# Download genesis and addrbook
wget -O $HOME/.fxcore/config/genesis.json https://files.nodeshub.online/mainnet/functionx/genesis.json
wget -O $HOME/.fxcore/config/addrbook.json https://files.nodeshub.online/mainnet/functionx/addrbook.json
# Add Seeds and Peers
SEEDS="https://functionx.seeds.nodeshub.online:24256"
PEERS=""
sed -i -e "s/^seeds *=.*/seeds = \"$SEEDS\"/; s/^persistent_peers *=.*/persistent_peers = \"$PEERS\"/" $HOME/.fxcore/config/config.toml
# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"8000000000000\"|" $HOME/.fxcore/config/app.toml
# Set pruning and indexer to Null
sed -i -e "s/^pruning =./pruning = "custom"/" $HOME/.fxcore/config/app.toml sed -i -e "s/^pruning-keep-recent =./pruning-keep-recent = "100"/"
$HOME/.fxcore/config/app.toml sed -i -e "s/^pruning-interval =./pruning-interval = "50"/" $HOME/.fxcore/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.fxcore/config/config.toml
Download Snapshot
# Back up priv_validator_state.json if needed
cp ~/.fxcore/data/priv_validator_state.json ~/.fxcore/priv_validator_state.json
# On some tendermint chains
fxcored unsafe-reset-all --home $HOME/.fxcore --keep-addr-book
# On other tendermint chains
fxcored tendermint unsafe-reset-all --home $HOME/.fxcore --keep-addr-book
curl https://files.nodeshub.online/mainnet/functionx/snapshot/functionx_snap.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/.fxcore
mv $HOME/.fxcore/priv_validator_state.json.backup $HOME/.fxcore/data/priv_validator_state.json
sudo systemctl restart functionx && sudo journalctl -u functionx -f -o cat
Start service and check the logs
sudo systemctl start functionx.service && sudo journalctl -u functionx -f -o cat
Last updated