Wallet Management

Add New Wallet

nibid keys add $WALLET

Restore existing wallet

nibid keys add $WALLET --recover

List All Wallets

nibid keys list

Delete wallet

nibid keys delete $WALLET

Check Balance

nibid q bank balances $(nibid keys show $WALLET -a)

Export Key (save to wallet.backup)

nibid keys export $WALLET

View EVM Prived Key

nibid keys unsafe-export-eth-key $WALLET

Import Key (restore from wallet.backup)

nibid keys import $WALLET wallet.backup

Tokens

Withdraw all rewards

nibid tx distribution withdraw-all-rewards --from $WALLET --chain-id cataclysm-1 --fees 5000unibi -y

Withdraw rewards and commission from your validator

nibid tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id cataclysm-1 --fees 5000unibi -y

Check your balance

nibid query bank balances $WALLET_ADDRESS

Delegate to Yourself

nibid tx staking delegate $(nibid keys show $WALLET --bech val -a) 1000000nivea --from $WALLET --chain-id cataclysm-1 --fees 5000unibi -y

Delegate

nibid tx staking delegate <TO_VALOPER_ADDRESS> 1000000nivea --from $WALLET --chain-id cataclysm-1 --fees 5000unibi -y

Redelegate Stake to Another Validator

nibid tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000nivea --from $WALLET --chain-id cataclysm-1 --fees 5000unibi -y

Unbond

nibid tx staking unbond $(nibid keys show $WALLET --bech val -a) 1000000nivea --from $WALLET --chain-id cataclysm-1 --fees 5000unibi -y

Transfer Funds

nibid tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000nivea --chain-id cataclysm-1 --fees 5000unibi -y

Last updated