Wallet Management

Add New Wallet

qubeticsd keys add $WALLET

Restore existing wallet

qubeticsd keys add $WALLET --recover

List All Wallets

qubeticsd keys list

Delete wallet

qubeticsd keys delete $WALLET

Check Balance

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

Export Key (save to wallet.backup)

qubeticsd keys export $WALLET

View EVM Prived Key

qubeticsd keys unsafe-export-eth-key $WALLET

Import Key (restore from wallet.backup)

qubeticsd keys import $WALLET wallet.backup

Tokens

Withdraw all rewards

qubeticsd tx distribution withdraw-all-rewards --from $WALLET --chain-id qubetics_9029-1 --gas-prices 7tics --gas auto --gas-adjustment 1.5 -y

Withdraw rewards and commission from your validator

qubeticsd tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id qubetics_9029-1 --gas-prices 7tics --gas auto --gas-adjustment 1.5 -y

Check your balance

qubeticsd query bank balances $WALLET_ADDRESS

Delegate to Yourself

qubeticsd tx staking delegate $(qubeticsd keys show $WALLET --bech val -a) 1000000tics --from $WALLET --chain-id qubetics_9029-1 --gas-prices 7tics --gas auto --gas-adjustment 1.5 -y

Delegate

qubeticsd tx staking delegate <TO_VALOPER_ADDRESS> 1000000tics --from $WALLET --chain-id qubetics_9029-1 --gas-prices 7tics --gas auto --gas-adjustment 1.5 -y

Redelegate Stake to Another Validator

qubeticsd tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000tics --from $WALLET --chain-id qubetics_9029-1 --gas-prices 7tics --gas auto --gas-adjustment 1.5 -y

Unbond

qubeticsd tx staking unbond $(qubeticsd keys show $WALLET --bech val -a) 1000000tics --from $WALLET --chain-id qubetics_9029-1 --gas-prices 7tics --gas auto --gas-adjustment 1.5 -y

Transfer Funds

qubeticsd tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000tics --chain-id qubetics_9029-1 --gas-prices 7tics --gas auto --gas-adjustment 1.5 -y

Last updated