> For the complete documentation index, see [llms.txt](https://services.liveraven.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://services.liveraven.net/cosmos-testnets/union/management.md).

# Management

{% tabs %}
{% tab title="🔑 Key management" %}

#### ADD NEW KEY

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond keys add wallet
```

{% endcode %}

#### RECOVER EXISTING KEY

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond keys add wallet --recover
```

{% endcode %}

#### LIST ALL KEYS

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond keys list
```

{% endcode %}

#### DELETE KEY

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond keys delete wallet
```

{% endcode %}

#### EXPORT KEY TO A FILE

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond keys export wallet
```

{% endcode %}

#### IMPORT KEY FROM A FILE

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond keys import wallet wallet.backup
```

{% endcode %}

#### QUERY WALLET BALANCE

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond q bank balances $(uniond keys show wallet -a)
```

{% endcode %}
{% endtab %}

{% tab title="👷 Validator management" %}
Please make sure you have adjusted moniker, identity, details and website to match your values.

#### CREATE NEW VALIDATOR

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond tx staking create-validator \
--amount 1000000muno \
--pubkey $(uniond tendermint show-validator) \
--moniker "YOUR_MONIKER_NAME" \
--identity "YOUR_KEYBASE_ID" \
--details "YOUR_DETAILS" \
--website "YOUR_WEBSITE_URL" \
--chain-id union-testnet-8 \
--commission-rate 0.05 \
--commission-max-rate 0.20 \
--commission-max-change-rate 0.05 \
--min-self-delegation 1 \
--from wallet \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.0muno \
-y
```

{% endcode %}

#### EDIT EXISTING VALIDATOR

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond tx staking edit-validator \
--new-moniker "YOUR_MONIKER_NAME" \
--identity "YOUR_KEYBASE_ID" \
--details "YOUR_DETAILS" \
--website "YOUR_WEBSITE_URL" \
--chain-id union-testnet-8 \
--commission-rate 0.05 \
--from wallet \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.0muno \
-y
```

{% endcode %}

#### UNJAIL VALIDATOR

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond tx slashing unjail \
--from wallet \
--chain-id union-testnet-8 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.0muno \
-y
```

{% endcode %}

#### JAIL REASON

{% code overflow="wrap" fullWidth="false" %}

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

{% endcode %}

#### LIST ALL ACTIVE VALIDATORS

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond 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
```

{% endcode %}

#### LIST ALL INACTIVE VALIDATORS

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond 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
```

{% endcode %}

#### VIEW VALIDATOR DETAILS

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond q staking validator $(uniond keys show wallet --bech val -a)
```

{% endcode %}
{% endtab %}

{% tab title="💲 Token management" %}

#### WITHDRAW REWARDS FROM ALL VALIDATORS

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond tx distribution withdraw-all-rewards \
--from wallet \
--chain-id union-testnet-8 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.0muno \
-y
```

{% endcode %}

#### WITHDRAW COMMISSION AND REWARDS FROM YOUR VALIDATOR

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond tx distribution withdraw-rewards $(uniond keys show wallet --bech val -a) \
--commission \
--from wallet \
--chain-id union-testnet-8 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.0muno \
-y
```

{% endcode %}

#### DELEGATE TOKENS TO YOURSELF

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond tx staking delegate $(uniond keys show wallet --bech val -a) 1000000muno \
--from wallet \
--chain-id union-testnet-8 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.0muno \
-y
```

{% endcode %}

#### DELEGATE TOKENS TO VALIDATOR

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond tx staking delegate <TO_VALOPER_ADDRESS> 1000000muno \
--from wallet \
--chain-id union-testnet-8 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.0muno \
-y
```

{% endcode %}

#### REDELEGATE TOKENS TO ANOTHER VALIDATOR

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond tx staking redelegate $(uniond keys show wallet --bech val -a) <TO_VALOPER_ADDRESS> 1000000muno \
--from wallet \
--chain-id union-testnet-8 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.0muno \
-y
```

{% endcode %}

#### UNBOND TOKENS FROM YOUR VALIDATOR

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond tx staking unbond $(uniond keys show wallet --bech val -a) 1000000muno \
--from wallet \
--chain-id union-testnet-8 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.0muno \
-y
```

{% endcode %}

#### SEND TOKENS TO THE WALLET

{% code overflow="wrap" fullWidth="false" %}

```bash
uniond tx bank send wallet <TO_WALLET_ADDRESS> 1000000muno \
--from wallet \
--chain-id union-testnet-8 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.0muno \
-y
```

{% endcode %}
{% endtab %}
{% endtabs %}
