pub enum Call<T: Config> {
Show 19 variants propose { proposal: BoundedCallOf<T>, value: <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance, }, second { proposal: PropIndex, }, vote { ref_index: ReferendumIndex, vote: AccountVote<<<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance>, }, emergency_cancel { ref_index: ReferendumIndex, }, external_propose { proposal: BoundedCallOf<T>, }, external_propose_majority { proposal: BoundedCallOf<T>, }, external_propose_default { proposal: BoundedCallOf<T>, }, fast_track { proposal_hash: H256, voting_period: T::BlockNumber, delay: T::BlockNumber, }, veto_external { proposal_hash: H256, }, cancel_referendum { ref_index: ReferendumIndex, }, delegate { to: <<T as Config>::Lookup as StaticLookup>::Source, conviction: Conviction, balance: <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance, }, undelegate {}, clear_public_proposals {}, unlock { target: <<T as Config>::Lookup as StaticLookup>::Source, }, remove_vote { index: ReferendumIndex, }, remove_other_vote { target: <<T as Config>::Lookup as StaticLookup>::Source, index: ReferendumIndex, }, blacklist { proposal_hash: H256, maybe_ref_index: Option<ReferendumIndex>, }, cancel_proposal { prop_index: PropIndex, }, set_metadata { owner: MetadataOwner, maybe_hash: Option<PreimageHash>, }, // some variants omitted
}
Expand description

Contains one variant per dispatchable that can be called by an extrinsic.

Variants§

§

propose

Fields

§proposal: BoundedCallOf<T>
§value: <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance

Propose a sensitive action to be taken.

The dispatch origin of this call must be Signed and the sender must have funds to cover the deposit.

  • proposal_hash: The hash of the proposal preimage.
  • value: The amount of deposit (must be at least MinimumDeposit).

Emits Proposed.

§

second

Fields

§proposal: PropIndex

Signals agreement with a particular proposal.

The dispatch origin of this call must be Signed and the sender must have funds to cover the deposit, equal to the original deposit.

  • proposal: The index of the proposal to second.
§

vote

Fields

§ref_index: ReferendumIndex

Vote in a referendum. If vote.is_aye(), the vote is to enact the proposal; otherwise it is a vote to keep the status quo.

The dispatch origin of this call must be Signed.

  • ref_index: The index of the referendum to vote for.
  • vote: The vote configuration.
§

emergency_cancel

Fields

§ref_index: ReferendumIndex

Schedule an emergency cancellation of a referendum. Cannot happen twice to the same referendum.

The dispatch origin of this call must be CancellationOrigin.

-ref_index: The index of the referendum to cancel.

Weight: O(1).

§

external_propose

Fields

§proposal: BoundedCallOf<T>

Schedule a referendum to be tabled once it is legal to schedule an external referendum.

The dispatch origin of this call must be ExternalOrigin.

  • proposal_hash: The preimage hash of the proposal.
§

external_propose_majority

Fields

§proposal: BoundedCallOf<T>

Schedule a majority-carries referendum to be tabled next once it is legal to schedule an external referendum.

The dispatch of this call must be ExternalMajorityOrigin.

  • proposal_hash: The preimage hash of the proposal.

Unlike external_propose, blacklisting has no effect on this and it may replace a pre-scheduled external_propose call.

Weight: O(1)

§

external_propose_default

Fields

§proposal: BoundedCallOf<T>

Schedule a negative-turnout-bias referendum to be tabled next once it is legal to schedule an external referendum.

The dispatch of this call must be ExternalDefaultOrigin.

  • proposal_hash: The preimage hash of the proposal.

Unlike external_propose, blacklisting has no effect on this and it may replace a pre-scheduled external_propose call.

Weight: O(1)

§

fast_track

Fields

§proposal_hash: H256
§voting_period: T::BlockNumber
§delay: T::BlockNumber

Schedule the currently externally-proposed majority-carries referendum to be tabled immediately. If there is no externally-proposed referendum currently, or if there is one but it is not a majority-carries referendum then it fails.

The dispatch of this call must be FastTrackOrigin.

  • proposal_hash: The hash of the current external proposal.
  • voting_period: The period that is allowed for voting on this proposal. Increased to Must be always greater than zero. For FastTrackOrigin must be equal or greater than FastTrackVotingPeriod.
  • delay: The number of block after voting has ended in approval and this should be enacted. This doesn’t have a minimum amount.

Emits Started.

Weight: O(1)

§

veto_external

Fields

§proposal_hash: H256

Veto and blacklist the external proposal hash.

The dispatch origin of this call must be VetoOrigin.

  • proposal_hash: The preimage hash of the proposal to veto and blacklist.

Emits Vetoed.

Weight: O(V + log(V)) where V is number of existing vetoers

§

cancel_referendum

Fields

§ref_index: ReferendumIndex

Remove a referendum.

The dispatch origin of this call must be Root.

  • ref_index: The index of the referendum to cancel.

Weight: O(1).

§

delegate

Fields

§to: <<T as Config>::Lookup as StaticLookup>::Source
§conviction: Conviction
§balance: <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance

Delegate the voting power (with some given conviction) of the sending account.

The balance delegated is locked for as long as it’s delegated, and thereafter for the time appropriate for the conviction’s lock period.

The dispatch origin of this call must be Signed, and the signing account must either:

  • be delegating already; or

  • have no voting activity (if there is, then it will need to be removed/consolidated through reap_vote or unvote).

  • to: The account whose voting the target account’s voting power will follow.

  • conviction: The conviction that will be attached to the delegated votes. When the account is undelegated, the funds will be locked for the corresponding period.

  • balance: The amount of the account’s balance to be used in delegating. This must not be more than the account’s current balance.

Emits Delegated.

Weight: O(R) where R is the number of referendums the voter delegating to has voted on. Weight is charged as if maximum votes.

§

undelegate

Fields

Undelegate the voting power of the sending account.

Tokens may be unlocked following once an amount of time consistent with the lock period of the conviction with which the delegation was issued.

The dispatch origin of this call must be Signed and the signing account must be currently delegating.

Emits Undelegated.

Weight: O(R) where R is the number of referendums the voter delegating to has voted on. Weight is charged as if maximum votes.

§

clear_public_proposals

Fields

Clears all public proposals.

The dispatch origin of this call must be Root.

Weight: O(1).

§

unlock

Fields

§target: <<T as Config>::Lookup as StaticLookup>::Source

Unlock tokens that have an expired lock.

The dispatch origin of this call must be Signed.

  • target: The account to remove the lock on.

Weight: O(R) with R number of vote of target.

§

remove_vote

Fields

Remove a vote for a referendum.

If:

  • the referendum was cancelled, or
  • the referendum is ongoing, or
  • the referendum has ended such that
    • the vote of the account was in opposition to the result; or
    • there was no conviction to the account’s vote; or
    • the account made a split vote …then the vote is removed cleanly and a following call to unlock may result in more funds being available.

If, however, the referendum has ended and:

  • it finished corresponding to the vote of the account, and
  • the account made a standard vote with conviction, and
  • the lock period of the conviction is not over …then the lock will be aggregated into the overall account’s lock, which may involve overlocking (where the two locks are combined into a single lock that is the maximum of both the amount locked and the time is it locked for).

The dispatch origin of this call must be Signed, and the signer must have a vote registered for referendum index.

  • index: The index of referendum of the vote to be removed.

Weight: O(R + log R) where R is the number of referenda that target has voted on. Weight is calculated for the maximum number of vote.

§

remove_other_vote

Fields

§target: <<T as Config>::Lookup as StaticLookup>::Source

Remove a vote for a referendum.

If the target is equal to the signer, then this function is exactly equivalent to remove_vote. If not equal to the signer, then the vote must have expired, either because the referendum was cancelled, because the voter lost the referendum or because the conviction period is over.

The dispatch origin of this call must be Signed.

  • target: The account of the vote to be removed; this account must have voted for referendum index.
  • index: The index of referendum of the vote to be removed.

Weight: O(R + log R) where R is the number of referenda that target has voted on. Weight is calculated for the maximum number of vote.

§

blacklist

Fields

§proposal_hash: H256
§maybe_ref_index: Option<ReferendumIndex>

Permanently place a proposal into the blacklist. This prevents it from ever being proposed again.

If called on a queued public or external proposal, then this will result in it being removed. If the ref_index supplied is an active referendum with the proposal hash, then it will be cancelled.

The dispatch origin of this call must be BlacklistOrigin.

  • proposal_hash: The proposal hash to blacklist permanently.
  • ref_index: An ongoing referendum whose hash is proposal_hash, which will be cancelled.

Weight: O(p) (though as this is an high-privilege dispatch, we assume it has a reasonable value).

§

cancel_proposal

Fields

§prop_index: PropIndex

Remove a proposal.

The dispatch origin of this call must be CancelProposalOrigin.

  • prop_index: The index of the proposal to cancel.

Weight: O(p) where p = PublicProps::<T>::decode_len()

§

set_metadata

Fields

§maybe_hash: Option<PreimageHash>

Set or clear a metadata of a proposal or a referendum.

Parameters:

  • origin: Must correspond to the MetadataOwner.
    • ExternalOrigin for an external proposal with the SuperMajorityApprove threshold.
    • ExternalDefaultOrigin for an external proposal with the SuperMajorityAgainst threshold.
    • ExternalMajorityOrigin for an external proposal with the SimpleMajority threshold.
    • Signed by a creator for a public proposal.
    • Signed to clear a metadata for a finished referendum.
    • Root to set a metadata for an ongoing referendum.
  • owner: an identifier of a metadata owner.
  • maybe_hash: The hash of an on-chain stored preimage. None to clear a metadata.

Implementations§

Create a call with the variant propose.

Create a call with the variant second.

Create a call with the variant vote.

Create a call with the variant emergency_cancel.

Create a call with the variant external_propose.

Create a call with the variant external_propose_majority.

Create a call with the variant external_propose_default.

Create a call with the variant fast_track.

Create a call with the variant veto_external.

Create a call with the variant cancel_referendum.

Create a call with the variant delegate.

Create a call with the variant undelegate.

Create a call with the variant clear_public_proposals.

Create a call with the variant unlock.

Create a call with the variant remove_vote.

Create a call with the variant remove_other_vote.

Create a call with the variant blacklist.

Create a call with the variant cancel_proposal.

Create a call with the variant set_metadata.

Trait Implementations§

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Attempt to deserialise the value from input.
Attempt to deserialize the value from input into a pre-allocated piece of memory. Read more
Attempt to skip the encoded value from input. Read more
Returns the fixed encoded size of the type. Read more
If possible give a hint of expected size of the encoding. Read more
Convert self to a slice and append it to the destination.
Convert self to an owned vector.
Convert self to a slice and then invoke the given closure with it.
Calculates the encoded size. Read more
Return the function name of the Call.
Return all function names.
Return a DispatchInfo, containing relevant information of this dispatch. Read more
👎Deprecated: Trait has moved to frame_support::dispatch
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
The type identifying for which type info is provided. Read more
Returns the static type identifier for Self.
The origin type of the runtime, (i.e. frame_system::Config::RuntimeOrigin).
Dispatch this call but do not check the filter in origin.

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Convert from a value of T into an equivalent instance of Option<Self>. Read more
Consume self to return Some equivalent value of Option<T>. Read more
Decode Self and consume all of the given input data. Read more
Decode Self and consume all of the given input data. Read more
Decode Self with the given maximum recursion depth and advance input by the number of bytes consumed. Read more
Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait. Read more
Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait. Read more
Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s. Read more
Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s. Read more
Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait. Read more
Compare self to key and return true if they are equal.
Checks if this value is equivalent to the given key. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Cast reference.
Cast reference.
Cast mutable reference.
Cast mutable reference.

Get a reference to the inner from the outer.

Get a mutable reference to the inner from the outer.

Return an encoding of Self prepended by given slice.
The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. Read more
Dereferences the given pointer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
Should always be Self
Convert from a value of T into an equivalent instance of Self. Read more
Consume self to return an equivalent value of T. Read more
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
The counterpart to unchecked_from.
Consume self to return an equivalent value of T.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more