Enum pallet_society::pallet::Call  
source · pub enum Call<T: Config<I>, I: 'static = ()> {
Show 20 variants
    bid {
        value: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
    },
    unbid {},
    vouch {
        who: <<T as Config>::Lookup as StaticLookup>::Source,
        value: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
        tip: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
    },
    unvouch {},
    vote {
        candidate: <<T as Config>::Lookup as StaticLookup>::Source,
        approve: bool,
    },
    defender_vote {
        approve: bool,
    },
    payout {},
    waive_repay {
        amount: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
    },
    found_society {
        founder: <<T as Config>::Lookup as StaticLookup>::Source,
        max_members: u32,
        max_intake: u32,
        max_strikes: u32,
        candidate_deposit: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
        rules: Vec<u8>,
    },
    dissolve {},
    judge_suspended_member {
        who: <<T as Config>::Lookup as StaticLookup>::Source,
        forgive: bool,
    },
    set_parameters {
        max_members: u32,
        max_intake: u32,
        max_strikes: u32,
        candidate_deposit: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
    },
    punish_skeptic {},
    claim_membership {},
    bestow_membership {
        candidate: T::AccountId,
    },
    kick_candidate {
        candidate: T::AccountId,
    },
    resign_candidacy {},
    drop_candidate {
        candidate: T::AccountId,
    },
    cleanup_candidacy {
        candidate: T::AccountId,
        max: u32,
    },
    cleanup_challenge {
        challenge_round: RoundIndex,
        max: u32,
    },
    // some variants omitted
}Expand description
Contains a variant per dispatchable extrinsic that this pallet has.
Variants§
bid
See Pallet::bid.
unbid
Fields
See Pallet::unbid.
vouch
Fields
who: <<T as Config>::Lookup as StaticLookup>::SourceSee Pallet::vouch.
unvouch
Fields
See Pallet::unvouch.
vote
See Pallet::vote.
defender_vote
payout
Fields
See Pallet::payout.
waive_repay
See Pallet::waive_repay.
found_society
Fields
founder: <<T as Config>::Lookup as StaticLookup>::Sourcedissolve
Fields
See Pallet::dissolve.
judge_suspended_member
set_parameters
Fields
punish_skeptic
Fields
claim_membership
Fields
bestow_membership
kick_candidate
resign_candidacy
Fields
drop_candidate
cleanup_candidacy
cleanup_challenge
Implementations§
source§impl<T: Config<I>, I: 'static> Call<T, I>
 
impl<T: Config<I>, I: 'static> Call<T, I>
sourcepub fn new_call_variant_bid(
    value: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance
) -> Self
 
pub fn new_call_variant_bid( value: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance ) -> Self
Create a call with the variant bid.
sourcepub fn new_call_variant_unbid() -> Self
 
pub fn new_call_variant_unbid() -> Self
Create a call with the variant unbid.
sourcepub fn new_call_variant_vouch(
    who: <<T as Config>::Lookup as StaticLookup>::Source,
    value: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
    tip: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance
) -> Self
 
pub fn new_call_variant_vouch( who: <<T as Config>::Lookup as StaticLookup>::Source, value: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance, tip: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance ) -> Self
Create a call with the variant vouch.
sourcepub fn new_call_variant_unvouch() -> Self
 
pub fn new_call_variant_unvouch() -> Self
Create a call with the variant unvouch.
sourcepub fn new_call_variant_vote(
    candidate: <<T as Config>::Lookup as StaticLookup>::Source,
    approve: bool
) -> Self
 
pub fn new_call_variant_vote( candidate: <<T as Config>::Lookup as StaticLookup>::Source, approve: bool ) -> Self
Create a call with the variant vote.
sourcepub fn new_call_variant_defender_vote(approve: bool) -> Self
 
pub fn new_call_variant_defender_vote(approve: bool) -> Self
Create a call with the variant defender_vote.
sourcepub fn new_call_variant_payout() -> Self
 
pub fn new_call_variant_payout() -> Self
Create a call with the variant payout.
sourcepub fn new_call_variant_waive_repay(
    amount: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance
) -> Self
 
pub fn new_call_variant_waive_repay( amount: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance ) -> Self
Create a call with the variant waive_repay.
sourcepub fn new_call_variant_found_society(
    founder: <<T as Config>::Lookup as StaticLookup>::Source,
    max_members: u32,
    max_intake: u32,
    max_strikes: u32,
    candidate_deposit: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
    rules: Vec<u8>
) -> Self
 
pub fn new_call_variant_found_society( founder: <<T as Config>::Lookup as StaticLookup>::Source, max_members: u32, max_intake: u32, max_strikes: u32, candidate_deposit: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance, rules: Vec<u8> ) -> Self
Create a call with the variant found_society.
sourcepub fn new_call_variant_dissolve() -> Self
 
pub fn new_call_variant_dissolve() -> Self
Create a call with the variant dissolve.
sourcepub fn new_call_variant_judge_suspended_member(
    who: <<T as Config>::Lookup as StaticLookup>::Source,
    forgive: bool
) -> Self
 
pub fn new_call_variant_judge_suspended_member( who: <<T as Config>::Lookup as StaticLookup>::Source, forgive: bool ) -> Self
Create a call with the variant judge_suspended_member.
sourcepub fn new_call_variant_set_parameters(
    max_members: u32,
    max_intake: u32,
    max_strikes: u32,
    candidate_deposit: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance
) -> Self
 
pub fn new_call_variant_set_parameters( max_members: u32, max_intake: u32, max_strikes: u32, candidate_deposit: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance ) -> Self
Create a call with the variant set_parameters.
sourcepub fn new_call_variant_punish_skeptic() -> Self
 
pub fn new_call_variant_punish_skeptic() -> Self
Create a call with the variant punish_skeptic.
sourcepub fn new_call_variant_claim_membership() -> Self
 
pub fn new_call_variant_claim_membership() -> Self
Create a call with the variant claim_membership.
sourcepub fn new_call_variant_bestow_membership(candidate: T::AccountId) -> Self
 
pub fn new_call_variant_bestow_membership(candidate: T::AccountId) -> Self
Create a call with the variant bestow_membership.
sourcepub fn new_call_variant_kick_candidate(candidate: T::AccountId) -> Self
 
pub fn new_call_variant_kick_candidate(candidate: T::AccountId) -> Self
Create a call with the variant kick_candidate.
sourcepub fn new_call_variant_resign_candidacy() -> Self
 
pub fn new_call_variant_resign_candidacy() -> Self
Create a call with the variant resign_candidacy.
sourcepub fn new_call_variant_drop_candidate(candidate: T::AccountId) -> Self
 
pub fn new_call_variant_drop_candidate(candidate: T::AccountId) -> Self
Create a call with the variant drop_candidate.
sourcepub fn new_call_variant_cleanup_candidacy(
    candidate: T::AccountId,
    max: u32
) -> Self
 
pub fn new_call_variant_cleanup_candidacy( candidate: T::AccountId, max: u32 ) -> Self
Create a call with the variant cleanup_candidacy.
sourcepub fn new_call_variant_cleanup_challenge(
    challenge_round: RoundIndex,
    max: u32
) -> Self
 
pub fn new_call_variant_cleanup_challenge( challenge_round: RoundIndex, max: u32 ) -> Self
Create a call with the variant cleanup_challenge.
Trait Implementations§
source§impl<T: Config<I>, I: 'static> Decode for Call<T, I>
 
impl<T: Config<I>, I: 'static> Decode for Call<T, I>
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<I>, I: 'static> Encode for Call<T, I>
 
impl<T: Config<I>, I: 'static> Encode for Call<T, I>
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) -> Rwhere
    F: FnOnce(&[u8]) -> R,
 
fn using_encoded<R, F>(&self, f: F) -> Rwhere F: FnOnce(&[u8]) -> R,
§fn encoded_size(&self) -> usize
 
fn encoded_size(&self) -> usize
source§impl<T: Config<I>, I: 'static> GetCallIndex for Call<T, I>
 
impl<T: Config<I>, I: 'static> GetCallIndex for Call<T, I>
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<I>, I: 'static> GetCallName for Call<T, I>
 
impl<T: Config<I>, I: 'static> GetCallName for Call<T, I>
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<I>, I: 'static> GetDispatchInfo for Call<T, I>
 
impl<T: Config<I>, I: 'static> GetDispatchInfo for Call<T, I>
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<I>, I: 'static> PartialEq<Call<T, I>> for Call<T, I>
 
impl<T: Config<I>, I: 'static> PartialEq<Call<T, I>> for Call<T, I>
source§impl<T, I> TypeInfo for Call<T, I>where
    PhantomData<(T, I)>: TypeInfo + 'static,
    <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: TypeInfo + 'static,
    <<T as Config>::Lookup as StaticLookup>::Source: TypeInfo + 'static,
    T::AccountId: TypeInfo + 'static,
    T: Config<I> + 'static,
    I: 'static,
 
impl<T, I> TypeInfo for Call<T, I>where PhantomData<(T, I)>: TypeInfo + 'static, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: TypeInfo + 'static, <<T as Config>::Lookup as StaticLookup>::Source: TypeInfo + 'static, T::AccountId: TypeInfo + 'static, T: Config<I> + 'static, I: 'static,
source§impl<T: Config<I>, I: 'static> UnfilteredDispatchable for Call<T, I>
 
impl<T: Config<I>, I: 'static> UnfilteredDispatchable for Call<T, I>
§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<I>, I: 'static> EncodeLike<Call<T, I>> for Call<T, I>
impl<T: Config<I>, I: 'static> Eq for Call<T, I>
Auto Trait Implementations§
impl<T, I> RefUnwindSafe for Call<T, I>where I: RefUnwindSafe, T: RefUnwindSafe, <T as Config>::AccountId: RefUnwindSafe, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: RefUnwindSafe, <<T as Config>::Lookup as StaticLookup>::Source: RefUnwindSafe,
impl<T, I> Send for Call<T, I>where I: Send, T: Send, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Send, <<T as Config>::Lookup as StaticLookup>::Source: Send,
impl<T, I> Sync for Call<T, I>where I: Sync, T: Sync, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Sync, <<T as Config>::Lookup as StaticLookup>::Source: Sync,
impl<T, I> Unpin for Call<T, I>where I: Unpin, T: Unpin, <T as Config>::AccountId: Unpin, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: Unpin, <<T as Config>::Lookup as StaticLookup>::Source: Unpin,
impl<T, I> UnwindSafe for Call<T, I>where I: UnwindSafe, T: UnwindSafe, <T as Config>::AccountId: UnwindSafe, <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance: UnwindSafe, <<T as Config>::Lookup as StaticLookup>::Source: UnwindSafe,
Blanket Implementations§
source§impl<T> CheckedConversion for T
 
impl<T> CheckedConversion 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 Qwhere
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized,
 
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
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 Qwhere
    Q: Eq + ?Sized,
    K: Borrow<Q> + ?Sized,
 
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
source§impl<T> Hashable for Twhere
    T: Codec,
 
impl<T> Hashable for Twhere T: Codec,
fn blake2_128(&self) -> [u8; 16]
fn blake2_256(&self) -> [u8; 32]
fn blake2_128_concat(&self) -> Vec<u8, Global> ⓘ
fn twox_128(&self) -> [u8; 16]
fn twox_256(&self) -> [u8; 32]
fn twox_64_concat(&self) -> Vec<u8, Global> ⓘ
fn identity(&self) -> Vec<u8, Global> ⓘ
source§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
source§impl<T, Outer> IsWrappedBy<Outer> for Twhere
    Outer: AsRef<T> + AsMut<T> + From<T>,
    T: From<Outer>,
 
impl<T, Outer> IsWrappedBy<Outer> for Twhere Outer: AsRef<T> + AsMut<T> + From<T>, T: From<Outer>,
§impl<T> KeyedVec for Twhere
    T: Codec,
 
impl<T> KeyedVec for Twhere T: Codec,
§impl<T> Pointable for T
 
impl<T> Pointable for T
source§impl<T> SaturatedConversion for T
 
impl<T> SaturatedConversion for T
source§fn saturated_from<T>(t: T) -> Selfwhere
    Self: UniqueSaturatedFrom<T>,
 
fn saturated_from<T>(t: T) -> Selfwhere Self: UniqueSaturatedFrom<T>,
source§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.source§impl<S, T> UncheckedInto<T> for Swhere
    T: UncheckedFrom<S>,
 
impl<S, T> UncheckedInto<T> for Swhere T: UncheckedFrom<S>,
source§fn unchecked_into(self) -> T
 
fn unchecked_into(self) -> T
unchecked_from.source§impl<T, S> UniqueSaturatedInto<T> for Swhere
    T: Bounded,
    S: TryInto<T>,
 
impl<T, S> UniqueSaturatedInto<T> for Swhere T: Bounded, S: TryInto<T>,
source§fn unique_saturated_into(self) -> T
 
fn unique_saturated_into(self) -> T
T.