Wallet Management

Add New Wallet

sided keys add $WALLET

Restore existing wallet

sided keys add $WALLET --recover

List All Wallets

sided keys list

Delete wallet

sided keys delete $WALLET

Check Balance

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

Export Key (save to wallet.backup)

sided keys export $WALLET

View EVM Prived Key

sided keys unsafe-export-eth-key $WALLET

Import Key (restore from wallet.backup)

sided keys import $WALLET wallet.backup

Tokens

Withdraw all rewards

sided tx distribution withdraw-all-rewards --from $WALLET --chain-id sidechain-testnet-5 --gas-prices 0.0006uside --gas-adjustment 1.5 --gas auto -y

Withdraw rewards and commission from your validator

sided tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id sidechain-testnet-5 --gas-prices 0.0006uside --gas-adjustment 1.5 --gas auto -y

Check your balance

sided query bank balances $WALLET_ADDRESS

Delegate to Yourself

sided tx staking delegate $(sided keys show $WALLET --bech val -a) 1000000uside --from $WALLET --chain-id sidechain-testnet-5 --gas-prices 0.0006uside --gas-adjustment 1.5 --gas auto -y

Delegate

sided tx staking delegate <TO_VALOPER_ADDRESS> 1000000uside --from $WALLET --chain-id sidechain-testnet-5 --gas-prices 0.0006uside --gas-adjustment 1.5 --gas auto -y

Redelegate Stake to Another Validator

sided tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000uside --from $WALLET --chain-id sidechain-testnet-5 --gas-prices 0.0006uside --gas-adjustment 1.5 --gas auto -y

Unbond

sided tx staking unbond $(sided keys show $WALLET --bech val -a) 1000000uside --from $WALLET --chain-id sidechain-testnet-5 --gas-prices 0.0006uside --gas-adjustment 1.5 --gas auto -y

Transfer Funds

sided tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000uside --chain-id sidechain-testnet-5 --gas-prices 0.0006uside --gas-adjustment 1.5 --gas auto -y

Last updated