Network
Cosmos
Initia
Validator

To create a validator at airchain node, you should import the data of your validator to the validator.json file

initiad tx mstaking create-validator \
--amount <amount> \
--from $WALLET \
--commission-rate 0.1 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--pubkey $(initiad tendermint show-validator) \
--moniker $MONIKER \
--identity "" \
--website "" \
--details "a validator blockchain" \
--chain-id $INITIA_CHAIN_ID \
--gas auto \
--gas-adjustment 1.5 \
--gas-prices <amount> \
-y
edit existing validator
initiad tx mstaking edit-validator \
--commission-rate 0.1 \
--new-moniker $MONIKER \
--identity "" \
--details "a validator blockchain" \
--from $WALLET \
--chain-id $INITIA_CHAIN_ID \
--gas auto \
--gas-adjustment 1.5 \
--fees <amount> \
-y 
Unjail validator
initiad tx slashing unjail --from $WALLET --chain-id $INITIA_CHAIN_ID --gas auto --gas-adjustment 1.5 --fees <amount>uinit -y 

Check sync status, once your node is fully synced, the output from above will be "false"

validator status/info
initiad status 2>&1 | jq