export WALLET=set_your_wallet_name
echo $WALLET
celestia-appd keys add $WALLET
WALLET_ADDRESS=$(celestia-appd keys show $WALLET -a)
echo $WALLET_ADDRESS
echo "export WALLET_ADDRESS="$WALLET_ADDRESS >> $HOME/.bash_profile
VALOPER_ADDRESS=$(celestia-appd keys show $WALLET --bech val -a)
echo $VALOPER_ADDRESS
echo "export VALOPER_ADDRESS="$VALOPER_ADDRESS >> $HOME/.bash_profile
source $HOME/.bash_profile
Create validator and delegate
celestia-appd tx staking create-validator \
--amount 1000000utia \
--from $WALLET \
--commission-rate 0.1 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--pubkey $(celestia-appd tendermint show-validator) \
--moniker "your_moniker" \
--identity "your_identity" \
--chain-id celestia \
--gas auto --gas-adjustment 1.5 --gas-prices 0.005utia \
-y
celestia-appd tx staking delegate celestiavaloper1p2and9ehh9rgqmefzwhzq7yhkrkd5wdddx8mgv 1000000utia --from inklbot \
--chain-id celestia \
--gas auto --gas-adjustment 1.5 --gas-prices 0.005utia \
-y