echo $(crossfid tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.mineplex-chain/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')
Key management
Add New Wallet
crossfid keys add $WALLET
Restore executing wallet
crossfid keys add $WALLET --recover
List All Wallets
crossfid keys list
Delete wallet
crossfid keys delete $WALLET
Check Balance
crossfid q bank balances $(crossfid keys show $WALLET -a)
Export Key (save to wallet.backup)
crossfid keys export $WALLET
View EVM Prived Key
crossfid keys unsafe-export-eth-key $WALLET
Import Key (restore from wallet.backup)
crossfid keys import $WALLET wallet.backup
Tokens
Withdraw all rewards
crossfid tx distribution withdraw-all-rewards --from $WALLET --chain-id crossfi-evm-testnet-1 --gas auto --gas-adjustment 1.5 --gas-prices 10000000000000mpx
Withdraw rewards and commission from your validator
crossfid tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id crossfi-evm-testnet-1 --gas auto --gas-adjustment 1.5 --gas-prices 10000000000000mpx -y
Check your balance
crossfid query bank balances $WALLET_ADDRESS
Delegate to Yourself
crossfid tx staking delegate $(crossfid keys show $WALLET --bech val -a) 1000000mpx --from $WALLET --chain-id crossfi-evm-testnet-1 --gas auto --gas-adjustment 1.5 --gas-prices 10000000000000mpx -y