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.

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.

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:

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:

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

Currently, the migration poll parameters are as below:

3. Authorization Poll

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

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

Currently, the authorization poll parameters are as below:

Last updated