# Commands

## 📚Useful commands📚

## ⚙️Service

**Info**

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

**Check node logs**

```bash
sudo journalctl -fu junod -n100 -ocat
```

**Check service status**

```bash
sudo systemctl status junod 
```

**Restart service**

```bash
sudo systemctl restart junod 
```

**Stop service**

```bash
sudo systemctl stop junod 
```

**Start service**

```bash
sudo systemctl start junod 
```

**reload/disable/enable**

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

**Your Peer**

```bash
echo $(junod tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.juno/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
junod keys add Wallet_Name
      OR
junod keys add Wallet_Name --recover
```

**Check all keys**

```python
junod keys list
```

**Check Balance**

```bash
junod query bank balances address....jkl1yjgn7z09ua9vms259j
```

**Delete Key**

```python
junod keys delete Wallet_Name
```

**Export Key**

```bash
junod  keys export wallet
```

**Import Key**

```bash
junod keys import wallet wallet.backup
```

## 🚀Validator Management

**Edit Validator**

```python
junod tx staking edit-validator \
--new-moniker "Your_Moniker" \
--identity "Keybase_ID" \
--details "Your_Description" \
--website "Your_Website" \
--security-contact "Your_Email" \
--chain-id uni-7 \
--commission-rate 0.05 \
--from Wallet_Name \
--gas 350000 -y
```

**Your Valoper-Address**

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

**Your Valcons-Address**

```bash
junod tendermint show-address
```

**Your Validator-Info**

```bash
junod query staking validator valoperaddress......
```

**Jail Info**

```bash
junod  query slashing signing-info $(junod tendermint show-validator)
```

**Unjail**

```python
junod tx slashing unjail --from Wallet_name --chain-id uni-7 --gas 350000 -y
```

**Active Validators List**

```bash
junod  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
junod 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
[[ $(junod q staking validator $VALOPER -oj | jq -r .consensus_pubkey.key) = $(junod status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "\nYou win\n" || echo -e "\nYou lose\n"
```

**Withdraw all rewards from all validators**

```python
junod tx distribution withdraw-all-rewards --from Wallet_Name --chain-id uni-7 --gas 350000 -y
```

**Withdraw and commission from your Validator**

```bash
junod tx distribution withdraw-rewards valoper1amxp0k0hg4edrxg85v07t9ka2tfuhamhldgf8e --from Wallet_Name --gas 350000 --chain-id=uni-7 --commission -y
```

**Delegate tokens to your validator**

```python
junod tx staking delegate Your_valpoer........ "100000000"ujuno --from Wallet_Name --gas 350000 --chain-id=uni-7 -y
```

**Delegate tokens to different validator**

```python
junod tx staking delegate valpoer........ "100000000"ujuno --from Wallet_Name --gas 350000 --chain-id=uni-7 -y
```

**Redelegate tokens to another validator**

```python
junod tx staking redelegate Your_valpoer........ valpoer........ "100000000"ujuno --from Wallet_Name --gas 350000 --chain-id=uni-7 -y
```

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

```python
junod tx staking unbond Your_valpoer........ "100000000"ujuno --from Wallet_Name --gas 350000 --chain-id=uni-7 -y
junod tx staking unbond valpoer........ "100000000"ujuno --from Wallet_Name --gas 350000 --chain-id=uni-7 -y
```

**Transfer tokens from wallet to wallet**

```python
junod  tx bank send Your_address............ address........... "1000000000000000000"ujuno --gas 350000 --fees --chain-id=uni-7 -y
```

## 📝Governance

**View all proposals**

```bash
junod query gov proposals
```

**View specific proposal**

```bash
junod query gov proposal 1
```

**Vote yes**

```python
junod tx gov vote 1 yes --from Wallet_Name --gas 350000 --chain-id=uni-7 -y
```

**Vote no**

```python
junod tx gov vote 1 no --from Wallet_Name --gas 350000 --chain-id=uni-7 -y
```

**Vote abstain**

```python
junod tx gov vote 1 abstain --from Wallet_Name --gas 350000 --chain-id=uni-7 -y
```

**Vote no\_with\_veto**

```python
junod  tx gov vote 1 no_with_veto --from Wallet_Name --gas 350000 --chain-id=uni-7 -y
```

## 📡IBC transfer

* for exapmle - Juno -> Osmosis

```python
junod tx ibc-transfer transfer transfer channel-2 Your_OSMOaddress............ "100000"ujuno --from Your_Juno_Wallet_Name ---gas 350000 --chain-id=uni-7 -y
```
