# 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 %}
