Wallet Management
Add New Wallet
nibid keys add $WALLETRestore existing wallet
nibid keys add $WALLET --recoverList All Wallets
nibid keys listDelete wallet
nibid keys delete $WALLETCheck Balance
nibid q bank balances $(nibid keys show $WALLET -a)Export Key (save to wallet.backup)
nibid keys export $WALLETView EVM Prived Key
nibid keys unsafe-export-eth-key $WALLETImport Key (restore from wallet.backup)
nibid keys import $WALLET wallet.backupTokens
Withdraw all rewards
nibid tx distribution withdraw-all-rewards --from $WALLET --chain-id cataclysm-1 --fees 5000unibi -yWithdraw rewards and commission from your validator
nibid tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id cataclysm-1 --fees 5000unibi -yCheck your balance
nibid query bank balances $WALLET_ADDRESSDelegate to Yourself
nibid tx staking delegate $(nibid keys show $WALLET --bech val -a) 1000000unibi --from $WALLET --chain-id cataclysm-1 --fees 5000unibi -yDelegate
nibid tx staking delegate <TO_VALOPER_ADDRESS> 1000000unibi --from $WALLET --chain-id cataclysm-1 --fees 5000unibi -yRedelegate Stake to Another Validator
nibid tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000unibi --from $WALLET --chain-id cataclysm-1 --fees 5000unibi -yUnbond
nibid tx staking unbond $(nibid keys show $WALLET --bech val -a) 1000000unibi --from $WALLET --chain-id cataclysm-1 --fees 5000unibi -yTransfer Funds
nibid tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000unibi --chain-id cataclysm-1 --fees 5000unibi -yLast updated