Namada is a Proof-of-Stake Layer 1 blockchain protocol that delivers multichain, asset-agnostic privacy. Utilizing advanced zk-SNARKs technology, Namada facilitates indistinguishable transactions for various assets in its unique Multi-Asset Shielded Pool (MASP). Developed by Heliax in the Anoma ecosystem, Namada is working toward a future where digital asset privacy becomes the norm, not the exception.
After the Pull Request that you sent to GitHub is received/merged, the next process is as follows.
Run the following command into the ubuntu terminal:
wget -O install_namada_v0.23.0.sh https://raw.githubusercontent.com/maragung/testnet/main/namada/install_namada_0.23.0_ubuntu.sh && chmod +x install_namada_v0.23.0.sh && ./install_namada_v0.23.0.sh && rm -rf install_namada_v0.23.0.sh
Make sure you have uploaded the pre-genesis
file as in the following example image:
Then set the config (toml) according to what you created on Github:
export ALIAS="YOUR_VALIDATOR_ALIAS"
export CHAIN_ID="public-testnet-14.5d79b6958580"
namada client utils join-network --chain-id $CHAIN_ID --genesis-validator $ALIAS
After everything is successful, run node with the following code:
wget -O create_namada_service.sh https://raw.githubusercontent.com/maragung/testnet/main/namada/create_namada_service.sh && chmod +x create_namada_service.sh && ./create_namada_service.sh && rm create_namada_service.sh
sudo journalctl -u namadad -f -o cat
If the screen appears like the image below, it means you have successfully run the node, just wait for the block genesis to start
With this update, you are required to use Ubuntu 22.04
or later
. Ubuntu below this version is not recommended because Namada requires a minimum of GLIBC_2.33
For update to Namada version 0.23.1:
wget -O update_namada_v0.23.1.sh https://raw.githubusercontent.com/maragung/testnet/main/namada/update_namada_v0.23.1.sh && chmod +x update_namada_v0.23.1.sh && ./update_namada_v0.23.1.sh && rm -rf update_namada_v0.23.1.sh
For update to Namada version 0.23.2:
wget -O update_namada_v0.23.2.sh https://raw.githubusercontent.com/maragung/testnet/main/namada/update_namada_v0.23.2.sh && chmod +x update_namada_v0.23.2.sh && ./update_namada_v0.23.2.sh && rm update_namada_v0.23.2.sh
or Specific updates for Ubuntu 20.04 as follows:
For update to Namada version 0.23.1:
wget -O install_namada_v0.23.0.sh https://raw.githubusercontent.com/maragung/testnet/main/namada/update_namada_v0.23.1_for_ubuntu_20.04.sh && chmod +x install_namada_v0.23.0.sh && ./install_namada_v0.23.0.sh && rm -rf install_namada_v0.23.0.sh
For update to Namada version 0.23.2:
wget -O update_namada_v0.23.2.sh https://raw.githubusercontent.com/maragung/testnet/main/namada/update_namada_v0.23.2_for_ubuntu_20.04.sh && chmod +x update_namada_v0.23.2.sh && ./update_namada_v0.23.2.sh && rm update_namada_v0.23.2.sh
Join the Namada Community Builders Program
Good Luck!!
Website https://namada.net/
Twitter/X https://twitter.com/namada
Discord https://discord.com/invite/namada
Telegram https://t.me/namadaprotocol
maragung