[][src]Trait pallet_democracy::Trait

Associated Types

type Proposal: Parameter + Dispatchable<Origin = Self::Origin> + From<Call<Self>>

type Event: From<Event<Self>> + Into<Self::Event>

type Currency: ReservableCurrency<Self::AccountId> + LockableCurrency<Self::AccountId, Moment = Self::BlockNumber>

Currency type for this module.

type EnactmentPeriod: Get<Self::BlockNumber>

The minimum period of locking and the period between a proposal being approved and enacted.

It should generally be a little more than the unstake period to ensure that voting stakers have an opportunity to remove themselves from the system in the case where they are on the losing side of a vote.

type LaunchPeriod: Get<Self::BlockNumber>

How often (in blocks) new public referenda are launched.

type VotingPeriod: Get<Self::BlockNumber>

How often (in blocks) to check for new votes.

type MinimumDeposit: Get<<Self::Currency as Currency<Self::AccountId>>::Balance>

The minimum amount to be used as a deposit for a public referendum proposal.

type ExternalOrigin: EnsureOrigin<Self::Origin>

Origin from which the next tabled referendum may be forced. This is a normal "super-majority-required" referendum.

type ExternalMajorityOrigin: EnsureOrigin<Self::Origin>

Origin from which the next tabled referendum may be forced; this allows for the tabling of a majority-carries referendum.

type ExternalDefaultOrigin: EnsureOrigin<Self::Origin>

Origin from which the next tabled referendum may be forced; this allows for the tabling of a negative-turnout-bias (default-carries) referendum.

type FastTrackOrigin: EnsureOrigin<Self::Origin>

Origin from which the next majority-carries (or more permissive) referendum may be tabled to vote according to the FastTrackVotingPeriod asynchronously in a similar manner to the emergency origin. It retains its threshold method.

type InstantOrigin: EnsureOrigin<Self::Origin>

Origin from which the next majority-carries (or more permissive) referendum may be tabled to vote immediately and asynchronously in a similar manner to the emergency origin. It retains its threshold method.

type InstantAllowed: Get<bool>

Indicator for whether an emergency origin is even allowed to happen. Some chains may want to set this permanently to false, others may want to condition it on things such as an upgrade having happened recently.

type FastTrackVotingPeriod: Get<Self::BlockNumber>

Minimum voting period allowed for a fast-track referendum.

type CancellationOrigin: EnsureOrigin<Self::Origin>

Origin from which any referendum may be cancelled in an emergency.

type VetoOrigin: EnsureOrigin<Self::Origin, Success = Self::AccountId>

Origin for anyone able to veto proposals.

Warning

The number of Vetoers for a proposal must be small, extrinsics are weighted according to MAX_VETOERS

type CooloffPeriod: Get<Self::BlockNumber>

Period in blocks where an external proposal may not be re-submitted after being vetoed.

type PreimageByteDeposit: Get<<Self::Currency as Currency<Self::AccountId>>::Balance>

The amount of balance that must be deposited per byte of preimage stored.

type OperationalPreimageOrigin: EnsureOrigin<Self::Origin, Success = Self::AccountId>

An origin that can provide a preimage using operational extrinsics.

type Slash: OnUnbalanced<<Self::Currency as Currency<Self::AccountId>>::NegativeImbalance>

Handler for the unbalanced reduction when slashing a preimage deposit.

type Scheduler: ScheduleNamed<Self::BlockNumber, Self::Proposal, Self::PalletsOrigin>

The Scheduler.

type PalletsOrigin: From<RawOrigin<Self::AccountId>>

Overarching type of all pallets origins.

type MaxVotes: Get<u32>

The maximum number of votes for an account.

Also used to compute weight, an overly big value can lead to extrinsic with very big weight: see delegate for instance.

type WeightInfo: WeightInfo

Weight information for extrinsics in this pallet.

Loading content...

Implementors

Loading content...