curl
, wget
, and git
installed on your system.Start by downloading and installing the Namada binaries:
# Install dependencies
sudo apt update && sudo apt install -y curl wget git build-essential
# Clone the Namada repository
git clone <https://github.com/anoma/namada.git>
cd namada
# Check out the latest release (replace <latest-version> with the desired tag)
git checkout <latest-version>
# Build the binaries
make build-release
# Add the binaries to your PATH (update with your actual path)
export PATH=$PATH:$(pwd)/target/release
Initialize the Node: This will create the default configuration directory for Namada.
namada node init
This command sets up the required files in the ~/.namada
directory.
Edit the Configuration (Optional):
Open the ~/.namada/config.toml
file and customize parameters such as:
rpc
settings for the API.p2p
settings for peer discovery.Example:
nano ~/.namada/config.toml
Run the full node using the following command:
namada node start
This command will: