Validator

NOTE

Before you create validator,

Please ensure you have a balances in your wallet

Please check your node was already synced

# check sync status, once your node is fully synced, the output from "catching_up" will print "false"
crossfid status 2>&1 | jq

Create validator

crossfid tx staking create-validator \
--amount 1000000mpx \
--from $WALLET \
--commission-rate 0.1 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--pubkey $(crossfid tendermint show-validator) \
--moniker "your-moniker" \
--identity "" \
--details "" \
--website="" \
--security-contact="" \
--chain-id crossfi-evm-testnet-1 \
--gas auto --gas-adjustment 1.5 --gas-prices 10000000000000mpx \
-y

Last updated