# Modify Poll Parameters

On Mirror Protocol, there are three different types of governance polls:

* **Default Poll**: Polls including text poll, community grants, parameter registration and modification polls and asset whitelisting polls.
* **Migration Poll**: Polls to execute migrations through Mirror governance.
* **Authorization Poll:** Polls to transfer admin key rights to an address specified through Mirror Governance, or to modify governance configurations.

Poll parameter modifications are considered as **Authorization Poll,** and has the same `quorum`, `threshold`, `voting_period` and `proposal deposit`.

{% hint style="warning" %}
Due to sensitivity of **migration** and **authorization** polls, Mirror web application does not provide user interface to submit these polls to modify the configuration of the two polls.
{% endhint %}

### 1. Default Poll Parameter

Default poll parameters can be modified by submitting a poll on Mirror web application. Currently, the default poll parameters are as below:

| Parameter        | Current Value           |
| ---------------- | ----------------------- |
| Proposal Deposit | 1,000 MIR               |
| Voting Period    | 604800 seconds (7 days) |
| Quorum           | 18%                     |
| Threshold        | 50%                     |

### 2. Migration Poll Parameter

The developer wanting to create polls to modify migration poll parameters must include the following message within the `admin_action` parameter of the `CreatePoll` transaction:

```rust
pub enum PollAdminAction {
UpdateConfig {
    migration_poll_config: Option<PollConfig>,
    },
```

Currently, the migration poll parameters are as below:

| Parameter        | Current Value                                                                                                     |
| ---------------- | ----------------------------------------------------------------------------------------------------------------- |
| Proposal Deposit | 2,000 MIR                                                                                                         |
| Voting Period    | 7 days (but if poll reaches quorum and threshold within the voting period, then poll can be executed immediately) |
| Quorum           | 40%                                                                                                               |
| Threshold        | 66.7%                                                                                                             |

### 3. Authorization Poll

The following message has to be included in `admin_action` parameter of `CreatePoll` transaction in order to create Authorization poll:

```rust
pub enum PollAdminAction {
UpdateConfig {
    auth_admin_poll_config: Option<PollConfig>,
    },
```

Currently, the authorization poll parameters are as below:

| Parameter          | Current Value                                                                                                     |
| ------------------ | ----------------------------------------------------------------------------------------------------------------- |
| Proposal Deposit   | 3,000 MIR                                                                                                         |
| Voting Period      | 7 days (but if poll reaches quorum and threshold within the voting period, then poll can be executed immediately) |
| Quorum             | 40%                                                                                                               |
| Threshold          | 66.7%                                                                                                             |
| Admin claim period | 7 days                                                                                                            |


---

# 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://getthemlols-organization.gitbook.io/everest/protocol/governance/modify-poll-parameters.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.
