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