Token Management
Send token to another address
planqd tx bank send wallet <TO_WALLET_ADDRESS> 1000000aplanq --from wallet --chain-id planq_7070-2
Withdraw rewards
planqd tx distribution withdraw-all-rewards --from wallet --chain-id planq_7070-2 --gas-adjustment 1.15 --gas="1000000" --gas-prices="30000000000aplanq" -y
Withdraw rewards and commission
planqd tx distribution withdraw-rewards $(planqd keys show wallet --bech val -a) --commission --from wallet --chain-id planq_7070-2 --gas-adjustment 1.15 --gas="1000000" --gas-prices="30000000000aplanq" -y
Delegate token to a Validator
planqd tx staking delegate $(planqd keys show wallet --bech val -a) 1000000aplanq --from wallet --chain-id planq_7070-2 --gas-adjustment 1.15 --gas="1000000" --gas-prices="30000000000aplanq" -y
Redelegate token to another Validator
planqd tx staking redelegate $(planqd keys show wallet --bech val -a) <TO_VALOPER_ADDRESS> 1000000aplanq --from wallet --chain-id planq_7070-2 --gas-adjustment 1.15 --gas="1000000" --gas-prices="30000000000aplanq" -y
Unbond token from Validator (it takes 21 days to unlocked)
lanqd tx staking unbond $(planqd keys show wallet --bech val -a) 1000000aplanq --from wallet --chain-id planq_7070-2 --gas-adjustment 1.15 --gas="1000000" --gas-prices="30000000000aplanq" -y
Last updated