Wallet Management

Add New Wallet

kyved keys add $WALLET

Restore existing wallet

kyved keys add $WALLET --recover

List All Wallets

kyved keys list

Delete wallet

kyved keys delete $WALLET

Check Balance

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

Export Key (save to wallet.backup)

kyved keys export $WALLET

View EVM Prived Key

kyved keys unsafe-export-eth-key $WALLET

Import Key (restore from wallet.backup)

kyved keys import $WALLET wallet.backup

Tokens

Withdraw all rewards

kyved tx distribution withdraw-all-rewards --from $WALLET --chain-id kyve-1 --fees 4306ukyve -y

Withdraw rewards and commission from your validator

kyved tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id kyve-1 --fees 4306ukyve -y

Check your balance

kyved query bank balances $WALLET_ADDRESS

Delegate to Yourself

kyved tx staking delegate $(kyved keys show $WALLET --bech val -a) 1000000ukyve --from $WALLET --chain-id kyve-1 --fees 4306ukyve -y

Delegate

kyved tx staking delegate <TO_VALOPER_ADDRESS> 1000000ukyve --from $WALLET --chain-id kyve-1 --fees 4306ukyve -y

Redelegate Stake to Another Validator

kyved tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000ukyve --from $WALLET --chain-id kyve-1 --fees 4306ukyve -y

Unbond

kyved tx staking unbond $(kyved keys show $WALLET --bech val -a) 1000000ukyve --from $WALLET --chain-id kyve-1 --fees 4306ukyve -y

Transfer Funds

kyved tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000ukyve --chain-id kyve-1 --fees 4306ukyve -y

Last updated