Wallet Management
Add New Wallet
prysmd keys add $WALLETRestore existing wallet
prysmd keys add $WALLET --recoverList All Wallets
prysmd keys listDelete wallet
prysmd keys delete $WALLETCheck Balance
prysmd q bank balances $(prysmd keys show $WALLET -a)Export Key (save to wallet.backup)
prysmd keys export $WALLETView EVM Prived Key
prysmd keys unsafe-export-eth-key $WALLETImport Key (restore from wallet.backup)
prysmd keys import $WALLET wallet.backupTokens
Withdraw all rewards
prysmd tx distribution withdraw-all-rewards --from $WALLET --chain-id prysm-devnet-1 --gas auto --gas-adjustment 1.5 -yWithdraw 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 -yCheck your balance
prysmd query bank balances $WALLET_ADDRESSDelegate 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 -yDelegate
prysmd tx staking delegate <TO_VALOPER_ADDRESS> 1000000uprysm --from $WALLET --chain-id prysm-devnet-1 --gas auto --gas-adjustment 1.5 -yRedelegate 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 -yUnbond
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 -yTransfer Funds
prysmd tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000uprysm --chain-id prysm-devnet-1 --gas auto --gas-adjustment 1.5 -yLast updated