TallyParams defines the params for tallying votes on governance proposals.

interface TallyParamsAmino {
    expedited_quorum?: string;
    expedited_threshold?: string;
    quorum?: string;
    threshold?: string;
    veto_threshold?: string;
}

Properties

expedited_quorum?: string

Minimum percentage of total stake needed to vote for expedited proposal to be valid

expedited_threshold?: string

Minimum proportion of Yes votes for an expedited proposal to pass. Default value: 0.67.

quorum?: string

Minimum percentage of total stake needed to vote for a result to be considered valid.

threshold?: string

Minimum proportion of Yes votes for proposal to pass. Default value: 0.5.

veto_threshold?: string

Minimum value of Veto votes to Total votes ratio for proposal to be vetoed. Default value: 1/3.