# Governance

{% tabs %}
{% tab title="🗳 Governance" %}

#### LIST ALL PROPOSALS

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

```bash
uniond query gov proposals
```

{% endcode %}

#### VIEW PROPOSAL BY ID

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

```bash
uniond query gov proposal 1
```

{% endcode %}

#### VOTE ‘YES’

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

```bash
uniond tx gov vote 1 yes \
--from wallet \
--chain-id union-testnet-8 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.0muno \
-y
```

{% endcode %}

#### VOTE ‘NO’

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

```bash
uniond tx gov vote 1 no \
--from wallet \
--chain-id union-testnet-8 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.0muno \
-y
```

{% endcode %}

#### VOTE ‘ABSTAIN’

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

```bash
uniond tx gov vote 1 abstain \
--from wallet \
--chain-id union-testnet-8 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.0muno \
-y
```

{% endcode %}

#### VOTE ‘NOWITHVETO’

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

```bash
uniond tx gov vote 1 NoWithVeto \
--from wallet \
--chain-id union-testnet-8 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.0muno \
-y
```

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


---

# Agent Instructions: 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:

```
GET https://services.liveraven.net/cosmos-testnets/union/governance.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
