L0vd services
WebsiteTwitter
  • Chain services
  • MAINNETS
    • Archway
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
      • Wallet bot
    • Axelar
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
    • Berachain
      • Snapshot
    • Bitcanna
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
    • Composable
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
    • Cosmos Hub
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
      • Wallet bot
    • Gitopia
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
    • HAQQ
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
    • Iris
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
      • Wallet bot
    • Juno
      • State sync
    • Namada
      • Installation
      • Staking
      • Snapshot
      • Useful commands
    • Nois
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
    • Osmosis
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
      • Wallet bot
    • Stride
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
    • Umee
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
  • TESTNETS
    • Andromeda
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
      • Wallet bot
    • Archway
      • Installation
      • State sync
      • Useful commands
      • Monitoring
      • Wallet bot
    • Arkeo
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
    • Artela
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
    • Babylon
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
      • Wallet bot
    • Berachain v2
      • Snapshot
      • Archive snapshot
    • Bitcanna
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
    • BonusBlock
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
    • Composable
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
    • Defund
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
      • Wallet bot
    • Empower
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
      • Wallet bot
    • Entangle
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
    • HAQQ
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
      • Wallet bot
    • Humans
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
      • Wallet bot
    • Lava
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
      • Wallet bot
    • Mantra
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
    • Namada
      • Installation
      • Snapshot
      • State sync
      • Useful commands
    • Namada-se
      • Installation
      • Staking
      • Snapshot
      • State sync
      • Useful commands
    • Nois
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
      • Wallet bot
    • Noria
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
    • Ojo
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
      • Wallet bot
    • Ollo
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
      • Wallet bot
    • Pryzm
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
    • Selfchain
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
    • Umee
      • Installation
      • State sync
      • Useful commands
      • Monitoring
    • Union
      • Installation
      • Snapshot
      • State sync
      • Useful commands
      • Monitoring
Powered by GitBook
On this page
  • 1. Running own Full node
  • 2. Using Namada Client and Public RPC
  • 2. Namada CLI installation
  • 3. Adding wallets
  • Task: Delegating stake
  • Task: Withdrawing rewards
  1. TESTNETS
  2. Namada-se

Staking

PreviousInstallationNextSnapshot

Last updated 1 year ago

This guide helps Crew Members complete C-class delegating task.

You can complete this tasks with or without running your own node.

1. Running own Full node

Install and sync your node using our guide then move to step

2. Using Namada Client and Public RPC

If you have a VPS/VDS with Linux you can use namada client to delegate (bond) tokens. You are not required to run your own RPC node here, as all txs can be executed via public RPC.

If you don't have a VPS/VDS with Linux, you can rent a cheap server here: , , .

Cheap VPS/VDS might not meet system requirements to run Full node, so if you want to run Full node, see system requirements [here](https://docs.namada.net/operators/hardware)

2. Namada CLI installation

System requirements

Ubuntu must be 22.04 or newer.

2.1 Install prerequisites

Update packages and install dependencies:

sudo apt update && sudo apt upgrade -y
sudo apt-get install -y make git-core libssl-dev pkg-config libclang-12-dev build-essential protobuf-compiler

Install Go:

sudo rm -rf /usr/local/go
curl -Ls https://go.dev/dl/go1.20.10.linux-amd64.tar.gz | sudo tar -xzf - -C /usr/local
eval $(echo 'export PATH=$PATH:/usr/local/go/bin' | sudo tee /etc/profile.d/golang.sh)
eval $(echo 'export PATH=$PATH:$HOME/go/bin' | tee -a $HOME/.profile)

Install Rust:

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
source $HOME/.cargo/env

Install CometBFT:

cd $HOME
rm -rf cometbft
git clone https://github.com/cometbft/cometbft.git
cd cometbft
git checkout v0.37.2
make build
sudo cp $HOME/cometbft/build/cometbft /usr/local/bin/
cometbft version

2.2 Install Namada binary

cd $HOME
rm -rf namada
git clone https://github.com/anoma/namada
cd namada
wget https://github.com/anoma/namada/releases/download/v0.31.4/namada-v0.31.4-Linux-x86_64.tar.gz
tar -xvf namada-v0.31.4-Linux-x86_64.tar.gz
rm namada-v0.31.4-Linux-x86_64.tar.gz
cd namada-v0.31.4-Linux-x86_64
sudo mv namad* /usr/local/bin/
if [ ! -d "$HOME/.local/share/namada" ]; then
    mkdir -p "$HOME/.local/share/namada"
fi

Check namada version:

namada --version

2.3 Initialize the chain configuration

namada client utils join-network --chain-id "shielded-expedition.88f17d1d14"

Check everything works fine (flag --node needs to be added after any transaction):

namadac epoch --node tcp://namada-se.rpc.l0vd.com:80

Output should be like: "Last committed epoch: 150"

3. Adding wallets

WALLET_ALIAS="<SET YOUR WALLET ALIAS>" # Name of your key
VALIDATOR_ALIAS="L0vd" # Name of validator you want to stake to.

Export variables:

echo "export WALLET_ALIAS="$WALLET_ALIAS"" >> $HOME/.bash_profile
echo "export VALIDATOR_ALIAS="$VALIDATOR_ALIAS"" >> $HOME/.bash_profile
source $HOME/.bash_profile

3.1 Add new keypair (or restore)

namada wallet gen --alias $WALLET_ALIAS

or

namada wallet restore --alias $WALLET_ALIAS --hd-path default

3.2 Check keys and balance

namada wallet find --alias $WALLET_ALIAS
namada client balance --owner $WALLET_ALIAS --node tcp://namada-se.rpc.l0vd.com:80

Task: Delegating stake

3.1 Stake (bond) validator

namadac bond --source $WALLET_ALIAS --validator $VALIDATOR_ALIAS --amount 1000 --node tcp://namada-se.rpc.l0vd.com:80

3.2 Check bond status

Wait > 2 epochs and then check bond status.

namada client bonds --owner $WALLET_ALIAS --node tcp://namada-se.rpc.l0vd.com:80

Task: Withdrawing rewards

3.3 Withdraw rewards

namada client claim-rewards --validator $VALIDATOR_ALIAS --node tcp://namada-se.rpc.l0vd.com:80

If you found the guide helpful, please delegate to us, we appreciate it greatly

❤️
Contabo
PQ
Mevspace
Task: Delegating stake
here