Installation
Manual node setup
If you want to setup Namada fullnode manually follow the steps below
Update and upgrade
sudo apt update && sudo apt upgrade -yInstall GO
if ! [ -x "$(command -v go)" ]; then
ver="1.20.3"
cd $HOME
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" >> ~/.bash_profile
source ~/.bash_profile
fiInstall rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source $HOME/.cargo/envInstall protobuf
Setting up vars
You should replace values in <> <YOUR_MONIKER> Here you should put name of your moniker (validator) that will be visible in explorer <YOUR_WALLET> Here you shoud put the name of your wallet
Install binaries
Install CometBft
Initialize your Node
Create Service
Enable your Node
Sync node using Snapshot
Starting a validator
1. Add a new key
(OR)
1. Recover your key
2. Create validator
Stake more tokens to your validator
Last updated