Add New Wallet
prysmd keys add $WALLET
Restore existing wallet
prysmd keys add $WALLET --recover
List All Wallets
Delete wallet
prysmd keys delete $WALLET
Check Balance
prysmd q bank balances $(prysmd keys show $WALLET -a)
Export Key (save to wallet.backup)
prysmd keys export $WALLET
View EVM Prived Key
prysmd keys unsafe-export-eth-key $WALLET
Import Key (restore from wallet.backup)
prysmd keys import $WALLET wallet.backup
Tokens
Withdraw all rewards
prysmd tx distribution withdraw-all-rewards --from $WALLET --chain-id prysm-devnet-1 --gas auto --gas-adjustment 1.5 -y
Withdraw rewards and commission from your validator
prysmd tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id prysm-devnet-1 --gas auto --gas-adjustment 1.5 -y
Check your balance
prysmd query bank balances $WALLET_ADDRESS
Delegate to Yourself
prysmd tx staking delegate $(prysmd keys show $WALLET --bech val -a) 1000000uprysm --from $WALLET --chain-id prysm-devnet-1 --gas auto --gas-adjustment 1.5 -y
Delegate
prysmd tx staking delegate <TO_VALOPER_ADDRESS> 1000000uprysm --from $WALLET --chain-id prysm-devnet-1 --gas auto --gas-adjustment 1.5 -y
Redelegate Stake to Another Validator
prysmd tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000uprysm --from $WALLET --chain-id prysm-devnet-1 --gas auto --gas-adjustment 1.5 -y
Unbond
prysmd tx staking unbond $(prysmd keys show $WALLET --bech val -a) 1000000uprysm --from $WALLET --chain-id prysm-devnet-1 --gas auto --gas-adjustment 1.5 -y
Transfer Funds
prysmd tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000uprysm --chain-id prysm-devnet-1 --gas auto --gas-adjustment 1.5 -y