Enum pallet_staking::Call
source · pub enum Call<T: Config> {
Show 30 variants
bond {
value: BalanceOf<T>,
payee: RewardDestination<T::AccountId>,
},
bond_extra {
max_additional: BalanceOf<T>,
},
unbond {
value: BalanceOf<T>,
},
withdraw_unbonded {
num_slashing_spans: u32,
},
validate {
prefs: ValidatorPrefs,
},
nominate {
targets: Vec<<<T as Config>::Lookup as StaticLookup>::Source>,
},
chill {},
set_payee {
payee: RewardDestination<T::AccountId>,
},
set_controller {},
set_validator_count {
new: u32,
},
increase_validator_count {
additional: u32,
},
scale_validator_count {
factor: Percent,
},
force_no_eras {},
force_new_era {},
set_invulnerables {
invulnerables: Vec<T::AccountId>,
},
force_unstake {
stash: T::AccountId,
num_slashing_spans: u32,
},
force_new_era_always {},
cancel_deferred_slash {
era: EraIndex,
slash_indices: Vec<u32>,
},
payout_stakers {
validator_stash: T::AccountId,
era: EraIndex,
},
rebond {
value: BalanceOf<T>,
},
reap_stash {
stash: T::AccountId,
num_slashing_spans: u32,
},
kick {
who: Vec<<<T as Config>::Lookup as StaticLookup>::Source>,
},
set_staking_configs {
min_nominator_bond: ConfigOp<BalanceOf<T>>,
min_validator_bond: ConfigOp<BalanceOf<T>>,
max_nominator_count: ConfigOp<u32>,
max_validator_count: ConfigOp<u32>,
chill_threshold: ConfigOp<Percent>,
min_commission: ConfigOp<Perbill>,
max_staked_rewards: ConfigOp<Percent>,
},
chill_other {
stash: T::AccountId,
},
force_apply_min_commission {
validator_stash: T::AccountId,
},
set_min_commission {
new: Perbill,
},
payout_stakers_by_page {
validator_stash: T::AccountId,
era: EraIndex,
page: Page,
},
update_payee {
controller: T::AccountId,
},
deprecate_controller_batch {
controllers: BoundedVec<T::AccountId, T::MaxControllersInDeprecationBatch>,
},
restore_ledger {
stash: T::AccountId,
maybe_controller: Option<T::AccountId>,
maybe_total: Option<BalanceOf<T>>,
maybe_unlocking: Option<BoundedVec<UnlockChunk<BalanceOf<T>>, T::MaxUnlockingChunks>>,
},
// some variants omitted
}
Expand description
Contains a variant per dispatchable extrinsic that this pallet has.
Variants§
bond
Take the origin account as a stash and lock up value
of its balance. controller
will
be the account that controls it.
value
must be more than the minimum_balance
specified by T::Currency
.
The dispatch origin for this call must be Signed by the stash account.
Emits Bonded
.
§Complexity
- Independent of the arguments. Moderate complexity.
- O(1).
- Three extra DB entries.
NOTE: Two of the storage writes (Self::bonded
, Self::payee
) are never cleaned
unless the origin
falls below existential deposit (or equal to 0) and gets removed
as dust.
bond_extra
Add some extra amount that have appeared in the stash free_balance
into the balance up
for staking.
The dispatch origin for this call must be Signed by the stash, not the controller.
Use this if there are additional funds in your stash account that you wish to bond.
Unlike bond
or unbond
this function does not impose
any limitation on the amount that can be added.
Emits Bonded
.
§Complexity
- Independent of the arguments. Insignificant complexity.
- O(1).
unbond
Schedule a portion of the stash to be unlocked ready for transfer out after the bond
period ends. If this leaves an amount actively bonded less than
asset::existential_deposit
, then it is increased to the full amount.
The dispatch origin for this call must be Signed by the controller, not the stash.
Once the unlock period is done, you can call withdraw_unbonded
to actually move
the funds out of management ready for transfer.
No more than a limited number of unlocking chunks (see MaxUnlockingChunks
)
can co-exists at the same time. If there are no unlocking chunks slots available
Call::withdraw_unbonded
is called to remove some of the chunks (if possible).
If a user encounters the InsufficientBond
error when calling this extrinsic,
they should call chill
first in order to free up their bonded funds.
Emits Unbonded
.
See also Call::withdraw_unbonded
.
withdraw_unbonded
Remove any unlocked chunks from the unlocking
queue from our management.
This essentially frees up that balance to be used by the stash account to do whatever it wants.
The dispatch origin for this call must be Signed by the controller.
Emits Withdrawn
.
See also Call::unbond
.
§Parameters
num_slashing_spans
indicates the number of metadata slashing spans to clear when this call results in a complete removal of all the data related to the stash account. In this case, thenum_slashing_spans
must be larger or equal to the number of slashing spans associated with the stash account in theSlashingSpans
storage type, otherwise the call will fail. The call weight is directly proportional tonum_slashing_spans
.
§Complexity
O(S) where S is the number of slashing spans to remove NOTE: Weight annotation is the kill scenario, we refund otherwise.
validate
Declare the desire to validate for the origin controller.
Effects will be felt at the beginning of the next era.
The dispatch origin for this call must be Signed by the controller, not the stash.
Fields
prefs: ValidatorPrefs
nominate
Declare the desire to nominate targets
for the origin controller.
Effects will be felt at the beginning of the next era.
The dispatch origin for this call must be Signed by the controller, not the stash.
§Complexity
- The transaction’s complexity is proportional to the size of
targets
(N) which is capped at CompactAssignments::LIMIT (T::MaxNominations). - Both the reads and writes follow a similar pattern.
chill
Declare no desire to either validate or nominate.
Effects will be felt at the beginning of the next era.
The dispatch origin for this call must be Signed by the controller, not the stash.
§Complexity
- Independent of the arguments. Insignificant complexity.
- Contains one read.
- Writes are limited to the
origin
account key.
set_payee
(Re-)set the payment target for a controller.
Effects will be felt instantly (as soon as this function is completed successfully).
The dispatch origin for this call must be Signed by the controller, not the stash.
§Complexity
- O(1)
- Independent of the arguments. Insignificant complexity.
- Contains a limited number of reads.
- Writes are limited to the
origin
account key.
Fields
payee: RewardDestination<T::AccountId>
set_controller
(Re-)sets the controller of a stash to the stash itself. This function previously
accepted a controller
argument to set the controller to an account other than the
stash itself. This functionality has now been removed, now only setting the controller
to the stash, if it is not already.
Effects will be felt instantly (as soon as this function is completed successfully).
The dispatch origin for this call must be Signed by the stash, not the controller.
§Complexity
O(1)
- Independent of the arguments. Insignificant complexity.
- Contains a limited number of reads.
- Writes are limited to the
origin
account key.
set_validator_count
increase_validator_count
Increments the ideal number of validators up to maximum of
ElectionProviderBase::MaxWinners
.
The dispatch origin must be Root.
§Complexity
Same as Self::set_validator_count
.
scale_validator_count
Scale up the ideal number of validators by a factor up to maximum of
ElectionProviderBase::MaxWinners
.
The dispatch origin must be Root.
§Complexity
Same as Self::set_validator_count
.
Fields
factor: Percent
force_no_eras
Force there to be no new eras indefinitely.
The dispatch origin must be Root.
§Warning
The election process starts multiple blocks before the end of the era. Thus the election process may be ongoing when this is called. In this case the election will continue until the next era is triggered.
§Complexity
- No arguments.
- Weight: O(1)
force_new_era
Force there to be a new era at the end of the next session. After this, it will be reset to normal (non-forced) behaviour.
The dispatch origin must be Root.
§Warning
The election process starts multiple blocks before the end of the era. If this is called just before a new era is triggered, the election process may not have enough blocks to get a result.
§Complexity
- No arguments.
- Weight: O(1)
set_invulnerables
Set the validators who cannot be slashed (if any).
The dispatch origin must be Root.
force_unstake
Force a current staker to become completely unstaked, immediately.
The dispatch origin must be Root.
§Parameters
num_slashing_spans
: Refer to comments onCall::withdraw_unbonded
for more details.
force_new_era_always
Force there to be a new era at the end of sessions indefinitely.
The dispatch origin must be Root.
§Warning
The election process starts multiple blocks before the end of the era. If this is called just before a new era is triggered, the election process may not have enough blocks to get a result.
cancel_deferred_slash
Cancel enactment of a deferred slash.
Can be called by the T::AdminOrigin
.
Parameters: era and indices of the slashes for that era to kill.
payout_stakers
Pay out next page of the stakers behind a validator for the given era.
validator_stash
is the stash account of the validator.era
may be any era between[current_era - history_depth; current_era]
.
The origin of this call must be Signed. Any account can call this function, even if it is not one of the stakers.
The reward payout could be paged in case there are too many nominators backing the
validator_stash
. This call will payout unpaid pages in an ascending order. To claim a
specific page, use payout_stakers_by_page
.`
If all pages are claimed, it returns an error InvalidPage
.
rebond
Rebond a portion of the stash scheduled to be unlocked.
The dispatch origin must be signed by the controller.
§Complexity
- Time complexity: O(L), where L is unlocking chunks
- Bounded by
MaxUnlockingChunks
.
reap_stash
Remove all data structures concerning a staker/stash once it is at a state where it can
be considered dust
in the staking system. The requirements are:
- the
total_balance
of the stash is below existential deposit. - or, the
ledger.total
of the stash is below existential deposit. - or, existential deposit is zero and either
total_balance
orledger.total
is zero.
The former can happen in cases like a slash; the latter when a fully unbonded account
is still receiving staking rewards in RewardDestination::Staked
.
It can be called by anyone, as long as stash
meets the above requirements.
Refunds the transaction fees upon successful execution.
§Parameters
num_slashing_spans
: Refer to comments onCall::withdraw_unbonded
for more details.
kick
Remove the given nominations from the calling validator.
Effects will be felt at the beginning of the next era.
The dispatch origin for this call must be Signed by the controller, not the stash.
who
: A list of nominator stash accounts who are nominating this validator which should no longer be nominating this validator.
Note: Making this call only makes sense if you first set the validator preferences to block any further nominations.
set_staking_configs
Update the various staking configurations .
min_nominator_bond
: The minimum active bond needed to be a nominator.min_validator_bond
: The minimum active bond needed to be a validator.max_nominator_count
: The max number of users who can be a nominator at once. When set toNone
, no limit is enforced.max_validator_count
: The max number of users who can be a validator at once. When set toNone
, no limit is enforced.chill_threshold
: The ratio ofmax_nominator_count
ormax_validator_count
which should be filled in order for thechill_other
transaction to work.min_commission
: The minimum amount of commission that each validators must maintain. This is checked only upon callingvalidate
. Existing validators are not affected.
RuntimeOrigin must be Root to call this function.
NOTE: Existing nominators and validators will not be affected by this update.
to kick people under the new limits, chill_other
should be called.
Fields
chill_other
Declare a controller
to stop participating as either a validator or nominator.
Effects will be felt at the beginning of the next era.
The dispatch origin for this call must be Signed, but can be called by anyone.
If the caller is the same as the controller being targeted, then no further checks are
enforced, and this function behaves just like chill
.
If the caller is different than the controller being targeted, the following conditions must be met:
controller
must belong to a nominator who has become non-decodable,
Or:
- A
ChillThreshold
must be set and checked which defines how close to the max nominators or validators we must reach before users can start chilling one-another. - A
MaxNominatorCount
andMaxValidatorCount
must be set which is used to determine how close we are to the threshold. - A
MinNominatorBond
andMinValidatorBond
must be set and checked, which determines if this is a person that should be chilled because they have not met the threshold bond required.
This can be helpful if bond requirements are updated, and we need to remove old users who do not satisfy these requirements.
Fields
stash: T::AccountId
force_apply_min_commission
Force a validator to have at least the minimum commission. This will not affect a validator who already has a commission greater than or equal to the minimum. Any account can call this.
Fields
validator_stash: T::AccountId
set_min_commission
Sets the minimum amount of commission that each validators must maintain.
This call has lower privilege requirements than set_staking_config
and can be called
by the T::AdminOrigin
. Root can always call this.
Fields
new: Perbill
payout_stakers_by_page
Pay out a page of the stakers behind a validator for the given era and page.
validator_stash
is the stash account of the validator.era
may be any era between[current_era - history_depth; current_era]
.page
is the page index of nominators to pay out with value between 0 andnum_nominators / T::MaxExposurePageSize
.
The origin of this call must be Signed. Any account can call this function, even if it is not one of the stakers.
If a validator has more than Config::MaxExposurePageSize
nominators backing
them, then the list of nominators is paged, with each page being capped at
[Config::MaxExposurePageSize
.] If a validator has more than one page of nominators,
the call needs to be made for each page separately in order for all the nominators
backing a validator to receive the reward. The nominators are not sorted across pages
and so it should not be assumed the highest staker would be on the topmost page and vice
versa. If rewards are not claimed in Config::HistoryDepth
eras, they are lost.
update_payee
Migrates an account’s RewardDestination::Controller
to
RewardDestination::Account(controller)
.
Effects will be felt instantly (as soon as this function is completed successfully).
This will waive the transaction fee if the payee
is successfully migrated.
Fields
controller: T::AccountId
deprecate_controller_batch
Updates a batch of controller accounts to their corresponding stash account if they are not the same. Ignores any controller accounts that do not exist, and does not operate if the stash and controller are already the same.
Effects will be felt instantly (as soon as this function is completed successfully).
The dispatch origin must be T::AdminOrigin
.
Fields
controllers: BoundedVec<T::AccountId, T::MaxControllersInDeprecationBatch>
restore_ledger
Restores the state of a ledger which is in an inconsistent state.
The requirements to restore a ledger are the following:
- The stash is bonded; or
- The stash is not bonded but it has a staking lock left behind; or
- If the stash has an associated ledger and its state is inconsistent; or
- If the ledger is not corrupted but its staking lock is out of sync.
The maybe_*
input parameters will overwrite the corresponding data and metadata of the
ledger associated with the stash. If the input parameters are not set, the ledger will
be reset values from on-chain state.
Implementations§
source§impl<T: Config> Call<T>
impl<T: Config> Call<T>
sourcepub fn new_call_variant_bond(
value: BalanceOf<T>,
payee: RewardDestination<T::AccountId>,
) -> Self
pub fn new_call_variant_bond( value: BalanceOf<T>, payee: RewardDestination<T::AccountId>, ) -> Self
Create a call with the variant bond
.
sourcepub fn new_call_variant_bond_extra(max_additional: BalanceOf<T>) -> Self
pub fn new_call_variant_bond_extra(max_additional: BalanceOf<T>) -> Self
Create a call with the variant bond_extra
.
sourcepub fn new_call_variant_unbond(value: BalanceOf<T>) -> Self
pub fn new_call_variant_unbond(value: BalanceOf<T>) -> Self
Create a call with the variant unbond
.
sourcepub fn new_call_variant_withdraw_unbonded(num_slashing_spans: u32) -> Self
pub fn new_call_variant_withdraw_unbonded(num_slashing_spans: u32) -> Self
Create a call with the variant withdraw_unbonded
.
sourcepub fn new_call_variant_validate(prefs: ValidatorPrefs) -> Self
pub fn new_call_variant_validate(prefs: ValidatorPrefs) -> Self
Create a call with the variant validate
.
sourcepub fn new_call_variant_nominate(
targets: Vec<<<T as Config>::Lookup as StaticLookup>::Source>,
) -> Self
pub fn new_call_variant_nominate( targets: Vec<<<T as Config>::Lookup as StaticLookup>::Source>, ) -> Self
Create a call with the variant nominate
.
sourcepub fn new_call_variant_chill() -> Self
pub fn new_call_variant_chill() -> Self
Create a call with the variant chill
.
sourcepub fn new_call_variant_set_payee(
payee: RewardDestination<T::AccountId>,
) -> Self
pub fn new_call_variant_set_payee( payee: RewardDestination<T::AccountId>, ) -> Self
Create a call with the variant set_payee
.
sourcepub fn new_call_variant_set_controller() -> Self
pub fn new_call_variant_set_controller() -> Self
Create a call with the variant set_controller
.
sourcepub fn new_call_variant_set_validator_count(new: u32) -> Self
pub fn new_call_variant_set_validator_count(new: u32) -> Self
Create a call with the variant set_validator_count
.
sourcepub fn new_call_variant_increase_validator_count(additional: u32) -> Self
pub fn new_call_variant_increase_validator_count(additional: u32) -> Self
Create a call with the variant increase_validator_count
.
sourcepub fn new_call_variant_scale_validator_count(factor: Percent) -> Self
pub fn new_call_variant_scale_validator_count(factor: Percent) -> Self
Create a call with the variant scale_validator_count
.
sourcepub fn new_call_variant_force_no_eras() -> Self
pub fn new_call_variant_force_no_eras() -> Self
Create a call with the variant force_no_eras
.
sourcepub fn new_call_variant_force_new_era() -> Self
pub fn new_call_variant_force_new_era() -> Self
Create a call with the variant force_new_era
.
sourcepub fn new_call_variant_set_invulnerables(
invulnerables: Vec<T::AccountId>,
) -> Self
pub fn new_call_variant_set_invulnerables( invulnerables: Vec<T::AccountId>, ) -> Self
Create a call with the variant set_invulnerables
.
sourcepub fn new_call_variant_force_unstake(
stash: T::AccountId,
num_slashing_spans: u32,
) -> Self
pub fn new_call_variant_force_unstake( stash: T::AccountId, num_slashing_spans: u32, ) -> Self
Create a call with the variant force_unstake
.
sourcepub fn new_call_variant_force_new_era_always() -> Self
pub fn new_call_variant_force_new_era_always() -> Self
Create a call with the variant force_new_era_always
.
sourcepub fn new_call_variant_cancel_deferred_slash(
era: EraIndex,
slash_indices: Vec<u32>,
) -> Self
pub fn new_call_variant_cancel_deferred_slash( era: EraIndex, slash_indices: Vec<u32>, ) -> Self
Create a call with the variant cancel_deferred_slash
.
sourcepub fn new_call_variant_payout_stakers(
validator_stash: T::AccountId,
era: EraIndex,
) -> Self
pub fn new_call_variant_payout_stakers( validator_stash: T::AccountId, era: EraIndex, ) -> Self
Create a call with the variant payout_stakers
.
sourcepub fn new_call_variant_rebond(value: BalanceOf<T>) -> Self
pub fn new_call_variant_rebond(value: BalanceOf<T>) -> Self
Create a call with the variant rebond
.
sourcepub fn new_call_variant_reap_stash(
stash: T::AccountId,
num_slashing_spans: u32,
) -> Self
pub fn new_call_variant_reap_stash( stash: T::AccountId, num_slashing_spans: u32, ) -> Self
Create a call with the variant reap_stash
.
sourcepub fn new_call_variant_kick(
who: Vec<<<T as Config>::Lookup as StaticLookup>::Source>,
) -> Self
pub fn new_call_variant_kick( who: Vec<<<T as Config>::Lookup as StaticLookup>::Source>, ) -> Self
Create a call with the variant kick
.
sourcepub fn new_call_variant_set_staking_configs(
min_nominator_bond: ConfigOp<BalanceOf<T>>,
min_validator_bond: ConfigOp<BalanceOf<T>>,
max_nominator_count: ConfigOp<u32>,
max_validator_count: ConfigOp<u32>,
chill_threshold: ConfigOp<Percent>,
min_commission: ConfigOp<Perbill>,
max_staked_rewards: ConfigOp<Percent>,
) -> Self
pub fn new_call_variant_set_staking_configs( min_nominator_bond: ConfigOp<BalanceOf<T>>, min_validator_bond: ConfigOp<BalanceOf<T>>, max_nominator_count: ConfigOp<u32>, max_validator_count: ConfigOp<u32>, chill_threshold: ConfigOp<Percent>, min_commission: ConfigOp<Perbill>, max_staked_rewards: ConfigOp<Percent>, ) -> Self
Create a call with the variant set_staking_configs
.
sourcepub fn new_call_variant_chill_other(stash: T::AccountId) -> Self
pub fn new_call_variant_chill_other(stash: T::AccountId) -> Self
Create a call with the variant chill_other
.
sourcepub fn new_call_variant_force_apply_min_commission(
validator_stash: T::AccountId,
) -> Self
pub fn new_call_variant_force_apply_min_commission( validator_stash: T::AccountId, ) -> Self
Create a call with the variant force_apply_min_commission
.
sourcepub fn new_call_variant_set_min_commission(new: Perbill) -> Self
pub fn new_call_variant_set_min_commission(new: Perbill) -> Self
Create a call with the variant set_min_commission
.
sourcepub fn new_call_variant_payout_stakers_by_page(
validator_stash: T::AccountId,
era: EraIndex,
page: Page,
) -> Self
pub fn new_call_variant_payout_stakers_by_page( validator_stash: T::AccountId, era: EraIndex, page: Page, ) -> Self
Create a call with the variant payout_stakers_by_page
.
sourcepub fn new_call_variant_update_payee(controller: T::AccountId) -> Self
pub fn new_call_variant_update_payee(controller: T::AccountId) -> Self
Create a call with the variant update_payee
.
sourcepub fn new_call_variant_deprecate_controller_batch(
controllers: BoundedVec<T::AccountId, T::MaxControllersInDeprecationBatch>,
) -> Self
pub fn new_call_variant_deprecate_controller_batch( controllers: BoundedVec<T::AccountId, T::MaxControllersInDeprecationBatch>, ) -> Self
Create a call with the variant deprecate_controller_batch
.
sourcepub fn new_call_variant_restore_ledger(
stash: T::AccountId,
maybe_controller: Option<T::AccountId>,
maybe_total: Option<BalanceOf<T>>,
maybe_unlocking: Option<BoundedVec<UnlockChunk<BalanceOf<T>>, T::MaxUnlockingChunks>>,
) -> Self
pub fn new_call_variant_restore_ledger( stash: T::AccountId, maybe_controller: Option<T::AccountId>, maybe_total: Option<BalanceOf<T>>, maybe_unlocking: Option<BoundedVec<UnlockChunk<BalanceOf<T>>, T::MaxUnlockingChunks>>, ) -> Self
Create a call with the variant restore_ledger
.
Trait Implementations§
source§impl<T: Config> CheckIfFeeless for Call<T>
impl<T: Config> CheckIfFeeless for Call<T>
source§fn is_feeless(&self, origin: &Self::Origin) -> bool
fn is_feeless(&self, origin: &Self::Origin) -> bool
#[pallet::feeless_if]
source§impl<T: Config> Decode for Call<T>
impl<T: Config> Decode for Call<T>
source§fn decode<__CodecInputEdqy: Input>(
__codec_input_edqy: &mut __CodecInputEdqy,
) -> Result<Self, Error>
fn decode<__CodecInputEdqy: Input>( __codec_input_edqy: &mut __CodecInputEdqy, ) -> Result<Self, Error>
§fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
fn decode_into<I>(
input: &mut I,
dst: &mut MaybeUninit<Self>,
) -> Result<DecodeFinished, Error>where
I: Input,
§fn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
fn skip<I>(input: &mut I) -> Result<(), Error>where
I: Input,
§fn encoded_fixed_size() -> Option<usize>
fn encoded_fixed_size() -> Option<usize>
source§impl<T: Config> Encode for Call<T>
impl<T: Config> Encode for Call<T>
source§fn size_hint(&self) -> usize
fn size_hint(&self) -> usize
source§fn encode_to<__CodecOutputEdqy: Output + ?Sized>(
&self,
__codec_dest_edqy: &mut __CodecOutputEdqy,
)
fn encode_to<__CodecOutputEdqy: Output + ?Sized>( &self, __codec_dest_edqy: &mut __CodecOutputEdqy, )
§fn using_encoded<R, F>(&self, f: F) -> R
fn using_encoded<R, F>(&self, f: F) -> R
§fn encoded_size(&self) -> usize
fn encoded_size(&self) -> usize
source§impl<T: Config> GetCallIndex for Call<T>
impl<T: Config> GetCallIndex for Call<T>
source§fn get_call_index(&self) -> u8
fn get_call_index(&self) -> u8
source§fn get_call_indices() -> &'static [u8] ⓘ
fn get_call_indices() -> &'static [u8] ⓘ
GetCallName
].source§impl<T: Config> GetCallName for Call<T>
impl<T: Config> GetCallName for Call<T>
source§fn get_call_name(&self) -> &'static str
fn get_call_name(&self) -> &'static str
source§fn get_call_names() -> &'static [&'static str]
fn get_call_names() -> &'static [&'static str]
GetCallIndex
].source§impl<T: Config> GetDispatchInfo for Call<T>
impl<T: Config> GetDispatchInfo for Call<T>
source§fn get_dispatch_info(&self) -> DispatchInfo
fn get_dispatch_info(&self) -> DispatchInfo
DispatchInfo
, containing relevant information of this dispatch. Read moresource§impl<T: Config> PartialEq for Call<T>
impl<T: Config> PartialEq for Call<T>
source§impl<T> TypeInfo for Call<T>where
PhantomData<(T,)>: TypeInfo + 'static,
BalanceOf<T>: HasCompact,
RewardDestination<T::AccountId>: TypeInfo + 'static,
Vec<<<T as Config>::Lookup as StaticLookup>::Source>: TypeInfo + 'static,
Vec<T::AccountId>: TypeInfo + 'static,
T::AccountId: TypeInfo + 'static,
ConfigOp<BalanceOf<T>>: TypeInfo + 'static,
BoundedVec<T::AccountId, T::MaxControllersInDeprecationBatch>: TypeInfo + 'static,
Option<T::AccountId>: TypeInfo + 'static,
Option<BalanceOf<T>>: TypeInfo + 'static,
Option<BoundedVec<UnlockChunk<BalanceOf<T>>, T::MaxUnlockingChunks>>: TypeInfo + 'static,
T: Config + 'static,
impl<T> TypeInfo for Call<T>where
PhantomData<(T,)>: TypeInfo + 'static,
BalanceOf<T>: HasCompact,
RewardDestination<T::AccountId>: TypeInfo + 'static,
Vec<<<T as Config>::Lookup as StaticLookup>::Source>: TypeInfo + 'static,
Vec<T::AccountId>: TypeInfo + 'static,
T::AccountId: TypeInfo + 'static,
ConfigOp<BalanceOf<T>>: TypeInfo + 'static,
BoundedVec<T::AccountId, T::MaxControllersInDeprecationBatch>: TypeInfo + 'static,
Option<T::AccountId>: TypeInfo + 'static,
Option<BalanceOf<T>>: TypeInfo + 'static,
Option<BoundedVec<UnlockChunk<BalanceOf<T>>, T::MaxUnlockingChunks>>: TypeInfo + 'static,
T: Config + 'static,
source§impl<T: Config> UnfilteredDispatchable for Call<T>
impl<T: Config> UnfilteredDispatchable for Call<T>
§type RuntimeOrigin = <T as Config>::RuntimeOrigin
type RuntimeOrigin = <T as Config>::RuntimeOrigin
frame_system::Config::RuntimeOrigin
).source§fn dispatch_bypass_filter(
self,
origin: Self::RuntimeOrigin,
) -> DispatchResultWithPostInfo
fn dispatch_bypass_filter( self, origin: Self::RuntimeOrigin, ) -> DispatchResultWithPostInfo
impl<T: Config> EncodeLike for Call<T>
impl<T: Config> Eq for Call<T>
Auto Trait Implementations§
impl<T> Freeze for Call<T>
impl<T> RefUnwindSafe for Call<T>where
<T as Config>::CurrencyBalance: RefUnwindSafe,
<T as Config>::AccountId: RefUnwindSafe,
T: RefUnwindSafe,
<T as Config>::MaxControllersInDeprecationBatch: RefUnwindSafe,
<T as Config>::MaxUnlockingChunks: RefUnwindSafe,
<<T as Config>::Lookup as StaticLookup>::Source: RefUnwindSafe,
impl<T> Send for Call<T>where
<T as Config>::CurrencyBalance: Send,
T: Send,
<T as Config>::MaxControllersInDeprecationBatch: Send,
<<T as Config>::Lookup as StaticLookup>::Source: Send,
<T as Config>::MaxUnlockingChunks: Send,
impl<T> Sync for Call<T>where
<T as Config>::CurrencyBalance: Sync,
T: Sync,
<T as Config>::MaxControllersInDeprecationBatch: Sync,
<<T as Config>::Lookup as StaticLookup>::Source: Sync,
<T as Config>::MaxUnlockingChunks: Sync,
impl<T> Unpin for Call<T>where
<T as Config>::CurrencyBalance: Unpin,
<T as Config>::AccountId: Unpin,
T: Unpin,
<T as Config>::MaxControllersInDeprecationBatch: Unpin,
<T as Config>::MaxUnlockingChunks: Unpin,
<<T as Config>::Lookup as StaticLookup>::Source: Unpin,
impl<T> UnwindSafe for Call<T>where
<T as Config>::CurrencyBalance: UnwindSafe,
<T as Config>::AccountId: UnwindSafe,
T: UnwindSafe,
<T as Config>::MaxControllersInDeprecationBatch: UnwindSafe,
<<T as Config>::Lookup as StaticLookup>::Source: UnwindSafe,
<T as Config>::MaxUnlockingChunks: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
§fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
§fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<T> Conv for T
impl<T> Conv for T
§impl<T> DecodeAll for Twhere
T: Decode,
impl<T> DecodeAll for Twhere
T: Decode,
§fn decode_all(input: &mut &[u8]) -> Result<T, Error>
fn decode_all(input: &mut &[u8]) -> Result<T, Error>
Self
and consume all of the given input data. Read more§impl<T> DecodeLimit for Twhere
T: Decode,
impl<T> DecodeLimit for Twhere
T: Decode,
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> Hashable for Twhere
T: Codec,
impl<T> Hashable for Twhere
T: Codec,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<Src, Dest> IntoTuple<Dest> for Srcwhere
Dest: FromTuple<Src>,
impl<Src, Dest> IntoTuple<Dest> for Srcwhere
Dest: FromTuple<Src>,
fn into_tuple(self) -> Dest
§impl<T> IsType<T> for T
impl<T> IsType<T> for T
§impl<T, Outer> IsWrappedBy<Outer> for T
impl<T, Outer> IsWrappedBy<Outer> for T
§impl<T> KeyedVec for Twhere
T: Codec,
impl<T> KeyedVec for Twhere
T: Codec,
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
T
. Read more§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.§impl<T> TryConv for T
impl<T> TryConv for T
§impl<T, U> TryIntoKey<U> for Twhere
U: TryFromKey<T>,
impl<T, U> TryIntoKey<U> for Twhere
U: TryFromKey<T>,
type Error = <U as TryFromKey<T>>::Error
fn try_into_key(self) -> Result<U, <U as TryFromKey<T>>::Error>
§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
unchecked_from
.§impl<T, S> UniqueSaturatedInto<T> for S
impl<T, S> UniqueSaturatedInto<T> for S
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.