Wallet Management

Add New Wallet

kopid keys add $WALLET

Restore existing wallet

kopid keys add $WALLET --recover

List All Wallets

kopid keys list

Delete wallet

kopid keys delete $WALLET

Check Balance

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

Export Key (save to wallet.backup)

kopid keys export $WALLET

View EVM Prived Key

kopid keys unsafe-export-eth-key $WALLET

Import Key (restore from wallet.backup)

kopid keys import $WALLET wallet.backup

Tokens

Withdraw all rewards

kopid tx distribution withdraw-all-rewards --from $WALLET --chain-id luwak-1 --fees 5000ukopi -y

Withdraw rewards and commission from your validator

kopid tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id luwak-1 --fees 5000ukopi -y

Check your balance

kopid query bank balances $WALLET_ADDRESS

Delegate to Yourself

kopid tx staking delegate $(kopid keys show $WALLET --bech val -a) 1000000ukopi --from $WALLET --chain-id luwak-1 --fees 5000ukopi -y

Delegate

kopid tx staking delegate <TO_VALOPER_ADDRESS> 1000000ukopi --from $WALLET --chain-id luwak-1 --fees 5000ukopi -y

Redelegate Stake to Another Validator

kopid tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000ukopi --from $WALLET --chain-id luwak-1 --fees 5000ukopi -y

Unbond

kopid tx staking unbond $(kopid keys show $WALLET --bech val -a) 1000000ukopi --from $WALLET --chain-id luwak-1 --fees 5000ukopi -y

Transfer Funds

kopid tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000ukopi --chain-id luwak-1 --fees 5000ukopi -y

Last updated