Wallet Management
Add New Wallet
layerd keys add $WALLETRestore existing wallet
layerd keys add $WALLET --recoverList All Wallets
layerd keys listDelete wallet
layerd keys delete $WALLETCheck Balance
layerd q bank balances $(layerd keys show $WALLET -a)Export Key (save to wallet.backup)
layerd keys export $WALLETView EVM Prived Key
layerd keys unsafe-export-eth-key $WALLETImport Key (restore from wallet.backup)
layerd keys import $WALLET wallet.backupTokens
Withdraw all rewards
layerd tx distribution withdraw-all-rewards --from $WALLET --chain-id tellor-1 --fees 5loya -yWithdraw rewards and commission from your validator
layerd tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id tellor-1 --fees 5loya -yCheck your balance
layerd query bank balances $WALLET_ADDRESSDelegate to Yourself
layerd tx staking delegate $(layerd keys show $WALLET --bech val -a) 1000000loya --from $WALLET --chain-id tellor-1 --fees 5loya -yDelegate
layerd tx staking delegate <TO_VALOPER_ADDRESS> 1000000loya --from $WALLET --chain-id tellor-1 --fees 5loya -yRedelegate Stake to Another Validator
layerd tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000loya --from $WALLET --chain-id tellor-1 --fees 5loya -yUnbond
layerd tx staking unbond $(layerd keys show $WALLET --bech val -a) 1000000loya --from $WALLET --chain-id tellor-1 --fees 5loya -yTransfer Funds
layerd tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000loya --chain-id tellor-1 --fees 5loya -yLast updated