> For the complete documentation index, see [llms.txt](https://stavr-team.gitbook.io/nodes-guides/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://stavr-team.gitbook.io/nodes-guides/testnets/dora-t/commands.md).

# Commands

## 📚Useful commands📚

## ⚙️Service

**Info**

```bash
dorad  status 2>&1 | jq .NodeInfo
dorad status 2>&1 | jq .SyncInfo
dorad status 2>&1 | jq .ValidatorInfo
```

**Check node logs**

```bash
sudo journalctl -fu dorad -o cat
```

**Check service status**

```bash
sudo systemctl status dorad 
```

**Restart service**

```bash
sudo systemctl restart dorad 
```

**Stop service**

```bash
sudo systemctl stop dorad 
```

**Start service**

```bash
sudo systemctl start dorad 
```

**reload/disable/enable**

```bash
sudo systemctl daemon-reload
sudo systemctl disable dorad 
sudo systemctl enable dorad 
```

**Your Peer**

```bash
echo $(dorad tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.dora/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')
```

## 🥅Working with keys

**New Key or Recover Key**

```bash
dorad keys add Wallet_Name
      OR
dorad keys add Wallet_Name --recover
```

**Check all keys**

```python
dorad keys list
```

**Check Balance**

```bash
dorad query bank balances dora...addressjkl1yjgn7z09ua9vms259j
```

**Delete Key**

```python
dorad keys delete Wallet_Name
```

**Export Key**

```bash
dorad keys export wallet
```

**Import Key**

```bash
dorad  keys import wallet wallet.backup
```

## 🚀Validator Management

**Edit Validator**

```python
dorad tx staking edit-validator \
--new-moniker "Your_Moniker" \
--identity "Keybase_ID" \
--details "Your_Description" \
--website "Your_Website" \
--security-contact "Your_Email" \
--chain-id vota-bobtail \
--commission-rate 0.05 \
--from Wallet_Name \
--gas 350000 \
--fees 20000000000000000peaka -y
```

**Your Valoper-Address**

```bash
dorad keys show Wallet_Name --bech val
```

**Your Valcons-Address**

```bash
dorad tendermint show-address
```

**Your Validator-Info**

```bash
dorad query staking validator doravaloperaddress......
```

**Jail Info**

<pre class="language-bash"><code class="lang-bash"><strong>dorad query slashing signing-info $(dorad tendermint show-validator)
</strong></code></pre>

**Unjail**

```python
dorad tx slashing unjail --from Wallet_name --chain-id vota-vk --gas 350000 --fees "20000000000000000"peaka  -y
```

**Active Validators List**

```bash
dorad q staking validators -oj --limit=3000 | jq '.validators[] | select(.status=="BOND_STATUS_BONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' | sort -gr | nl
```

**Inactive Validators List**

```bash
dorad  q staking validators -oj --limit=3000 | jq '.validators[] | select(.status=="BOND_STATUS_UNBONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' | sort -gr | nl
```

**Check that your key matches the validator (Win -&#x20;**<mark style="color:green;">**Good**</mark>**. Lose -&#x20;**<mark style="color:red;">**Bad**</mark>**)**

```bash
VALOPER=Enter_Your_valoper_Here
[[ $(dorad q staking validator $VALOPER -oj | jq -r .consensus_pubkey.key) = $(dorad status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "\nYou win\n" || echo -e "\nYou lose\n"
```

**Withdraw all rewards from all validators**

```python
dorad tx distribution withdraw-all-rewards --from Wallet_Name --chain-id vota-vk --gas 350000 --fees "20000000000000000"peaka   -y
```

**Withdraw and commission from your Validator**

```bash
dorad tx distribution withdraw-rewards doravaloper1amxp0k0hg4edrxg85v07t9ka2tfuhamhldgf8e --from Wallet_Name --gas 350000 --fees "20000000000000000"peaka --chain-id=vota-vk --commission -y
```

**Delegate tokens to your validator**

```python
dorad tx staking delegate doravalpoer........ "20000000000000000"peaka --from Wallet_Name --gas 350000 --fees "20000000000000000"peaka  --chain-id=vota-vk -y
```

**Delegate tokens to different validator**

```python
dorad tx staking delegate doravalpoer........ "20000000000000000"peaka --from Wallet_Name --gas 350000 --fees "20000000000000000"peaka  --chain-id=vota-vk -y
```

**Redelegate tokens to another validator**

```python
dorad tx staking redelegate doravalpoer........ doravalpoer........ "20000000000000000"peaka  --from Wallet_Name --gas 350000 --fees "20000000000000000"peaka  --chain-id=vota-vk -y
```

**Unbond tokens from your validator or different validator**

```python
dorad tx staking unbond doravalpoer........ "20000000000000000"peaka  --from Wallet_Name --gas 350000 --fees "20000000000000000"peaka  --chain-id=vota-vk -y
dorad tx staking unbond doravalpoer........ "20000000000000000"peaka  --from Wallet_Name --gas 350000 --fees "20000000000000000"peaka  --chain-id=vota-vk -y
```

**Transfer tokens from wallet to wallet**

```python
dorad tx bank send doraaddress............ doraaddress........... "20000000000000000"peaka  --gas 350000 --fees "20000000000000000"peaka  --chain-id=vota-vk -y
```

## 📝Governance

**View all proposals**

```bash
dorad query gov proposals
```

**View specific proposal**

```bash
dorad query gov proposal 1
```

**Vote yes**

```python
dorad tx gov vote 1 yes --from Wallet_Name --gas 350000 --fees "20000000000000000"peaka --chain-id=vota-vk -y
```

**Vote no**

```python
dorad tx gov vote 1 no --from Wallet_Name --gas 350000 --fees "20000000000000000"peaka --chain-id=vota-vk -y
```

**Vote abstain**

```python
dorad  tx gov vote 1 abstain --from Wallet_Name --gas 350000 --fees "20000000000000000"peaka --chain-id=vota-vk -y
```

**Vote no\_with\_veto**

```python
dorad tx gov vote 1 no_with_veto --from Wallet_Name --gas 350000 --fees "20000000000000000"peaka --chain-id=vota-vk -y
```

## 📡IBC transfer

* for exapmle - Dora -> Osmosis

```python
dorad  tx ibc-transfer transfer transfer channel-2 Your_OSMOaddress............ "20000000000000000"peaka  --from Your_Dora_Wallet_Name ---gas 350000 --fees "20000000000000000"peaka --chain-id=vota-vk -y
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://stavr-team.gitbook.io/nodes-guides/testnets/dora-t/commands.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
