> For the complete documentation index, see [llms.txt](https://services.thequadblock.com/services/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://services.thequadblock.com/services/mainnet/stride/cli-cheatsheet/token-management.md).

# Token Management

{% hint style="info" %}
before executed any commands,  please change the value below (if any):

* `<wallet>`
* `<TO_WALLET_ADDRESS>`&#x20;
* `<TO_VALOPER_ADDRESS>`
  {% endhint %}

<table><thead><tr><th align="center"></th><th align="center"></th></tr></thead><tbody><tr><td align="center">Send token to another address</td><td align="center"><p></p><pre class="language-plaintext"><code class="lang-plaintext">planqd tx bank send wallet &#x3C;TO_WALLET_ADDRESS> 1000000aplanq --from wallet --chain-id planq_7070-2
</code></pre></td></tr><tr><td align="center">Withdraw rewards</td><td align="center"><p></p><pre class="language-plaintext"><code class="lang-plaintext">planqd tx distribution withdraw-all-rewards --from wallet --chain-id planq_7070-2 --gas-adjustment 1.15 --gas="1000000" --gas-prices="30000000000aplanq" -y
</code></pre></td></tr><tr><td align="center">Withdraw rewards and commission</td><td align="center"><p></p><pre class="language-plaintext"><code class="lang-plaintext">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
</code></pre></td></tr><tr><td align="center">Delegate token to a Validator</td><td align="center"><p></p><pre class="language-plaintext"><code class="lang-plaintext">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
</code></pre></td></tr><tr><td align="center">Redelegate token to another Validator</td><td align="center"><p></p><pre class="language-plaintext"><code class="lang-plaintext">planqd tx staking redelegate $(planqd keys show wallet --bech val -a) &#x3C;TO_VALOPER_ADDRESS> 1000000aplanq --from wallet --chain-id planq_7070-2 --gas-adjustment 1.15 --gas="1000000" --gas-prices="30000000000aplanq" -y
</code></pre></td></tr><tr><td align="center">Unbond token from Validator<br>(it takes 21 days to unlocked)</td><td align="center"><p></p><pre class="language-plaintext"><code class="lang-plaintext">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
</code></pre></td></tr></tbody></table>
