> 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/warden-protocol/governance.md).

# Governance

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

#### LIST ALL PROPOSALS

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

```bash
wardend query gov proposals
```

{% endcode %}

#### VIEW PROPOSAL BY ID

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

```bash
wardend query gov proposal 1
```

{% endcode %}

#### VOTE ‘YES’

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

```bash
wardend tx gov vote 1 yes \
--from wallet \
--chain-id buenavista-1 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.0025uward \
-y
```

{% endcode %}

#### VOTE ‘NO’

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

```bash
wardend tx gov vote 1 no \
--from wallet \
--chain-id buenavista-1 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.0025uward \
-y
```

{% endcode %}

#### VOTE ‘ABSTAIN’

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

```bash
wardend tx gov vote 1 abstain \
--from wallet \
--chain-id buenavista-1 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.0025uward \
-y
```

{% endcode %}

#### VOTE ‘NOWITHVETO’

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

```bash
wardend tx gov vote 1 NoWithVeto \
--from wallet \
--chain-id buenavista-1 \
--gas-adjustment 1.4 \
--gas auto \
--gas-prices 0.0025uward \
-y
```

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