Mande
How To Install Full Node Mande Chain Testnet 2
Setting up vars
Your Nodename (validator) that will shows in explorer
NODENAME=<Your_Nodename_Moniker>Save variables to system
echo "export NODENAME=$NODENAME" >> $HOME/.bash_profile
if [ ! $WALLET ]; then
echo "export WALLET=wallet" >> $HOME/.bash_profile
fi
echo "export MANDE_CHAIN_ID=mande-testnet-2" >> $HOME/.bash_profile
source $HOME/.bash_profileUpdate packages
sudo apt update && sudo apt upgrade -yInstall dependencies
sudo apt install curl build-essential git wget jq make gcc tmux net-tools -yInstall go
Download and build binaries
Install Wasm Library (Skip this, this is only if you got failed to start mande binary libwasmvm.x86_64.so: cannot open shared)
Init app
Download configuration
Set minimum gas price, seeds and peers
Disable indexing
Update ~/.mande-chain/config/config.toml
Config pruning
Create service
Register and start service
Last updated