Guides
Install Namada

Quick Installation Guide

Set Up Namada in Just 2 Minutes

The subsequent steps can be completed without the need to build from the source code and run a full node.

Use the Following Script to Download Namada Binaries

The script's source code is accessible on GitHub at gnosed/namada-tools (opens in a new tab).

curl -OL https://namada.info/scripts/install_namada_bin.sh 
chmod +x install_namada_bin.sh
./install_namada_bin.sh 

Initialize the Chain Configuration

export CHAIN_ID="shielded-expedition.88f17d1d14
"
namadac utils join-network --chain-id $CHAIN_ID

You're all set! Let's play!

To execute commands on the chain without syncing a full node, simply include the --node flag in your command, followed by the public RPC with TCP connection at tcp://rpc.namada.info:1337.

For instance:

namadac epoch --node tcp://rpc.namada.info:1337