Struct pallet_society::Module [−][src]
pub struct Module<T: Config<I>, I: Instance = DefaultInstance>(_);
Expand description
The module declaration.
Implementations
A hash of the rules of this society concerning membership. Can only be set once and only by the founder.
The current set of candidates; bidders that are attempting to become members.
The set of suspended candidates.
Amount of our account balance that is specifically for the next round’s bid(s).
The set of suspended members.
Members currently vouching or banned from vouching again
The max number of members for the society at one time.
Can also be called using Call
.
A user outside of the society can make a bid for entry.
Payment: CandidateDeposit
will be reserved for making a bid. It is returned
when the bid becomes a member, or if the bid calls unbid
.
The dispatch origin for this call must be Signed.
Parameters:
value
: A one time payment the bid would like to receive when joining the society.
Key: B (len of bids), C (len of candidates), M (len of members), X (balance reserve)
- Storage Reads:
- One storage read to check for suspended candidate. O(1)
- One storage read to check for suspended member. O(1)
- One storage read to retrieve all current bids. O(B)
- One storage read to retrieve all current candidates. O(C)
- One storage read to retrieve all members. O(M)
- Storage Writes:
- One storage mutate to add a new bid to the vector O(B) (TODO: possible optimization w/ read)
- Up to one storage removal if bid.len() > MAX_BID_COUNT. O(1)
- Notable Computation:
- O(B + C + log M) search to check user is not already a part of society.
- O(log B) search to insert the new bid sorted.
- External Module Operations:
- One balance reserve operation. O(X)
- Up to one balance unreserve operation if bids.len() > MAX_BID_COUNT.
- Events:
- One event for new bid.
- Up to one event for AutoUnbid if bid.len() > MAX_BID_COUNT.
Total Complexity: O(M + B + C + logM + logB + X)
NOTE: Calling this function will bypass origin filters.
A bidder can remove their bid for entry into society. By doing so, they will have their candidate deposit returned or they will unvouch their voucher.
Payment: The bid deposit is unreserved if the user made a bid.
The dispatch origin for this call must be Signed and a bidder.
Parameters:
pos
: Position in theBids
vector of the bid who wants to unbid.
Key: B (len of bids), X (balance unreserve)
- One storage read and write to retrieve and update the bids. O(B)
- Either one unreserve balance action O(X) or one vouching storage removal. O(1)
- One event.
Total Complexity: O(B + X)
NOTE: Calling this function will bypass origin filters.
As a member, vouch for someone to join society by placing a bid on their behalf.
There is no deposit required to vouch for a new bid, but a member can only vouch for one bid at a time. If the bid becomes a suspended candidate and ultimately rejected by the suspension judgement origin, the member will be banned from vouching again.
As a vouching member, you can claim a tip if the candidate is accepted. This tip will be paid as a portion of the reward the member will receive for joining the society.
The dispatch origin for this call must be Signed and a member.
Parameters:
who
: The user who you would like to vouch for.value
: The total reward to be paid between you and the candidate if they become a member in the society.tip
: Your cut of the totalvalue
payout when the candidate is inducted into the society. Tips larger thanvalue
will be saturated upon payout.
Key: B (len of bids), C (len of candidates), M (len of members)
- Storage Reads:
- One storage read to retrieve all members. O(M)
- One storage read to check member is not already vouching. O(1)
- One storage read to check for suspended candidate. O(1)
- One storage read to check for suspended member. O(1)
- One storage read to retrieve all current bids. O(B)
- One storage read to retrieve all current candidates. O(C)
- Storage Writes:
- One storage write to insert vouching status to the member. O(1)
- One storage mutate to add a new bid to the vector O(B) (TODO: possible optimization w/ read)
- Up to one storage removal if bid.len() > MAX_BID_COUNT. O(1)
- Notable Computation:
- O(log M) search to check sender is a member.
- O(B + C + log M) search to check user is not already a part of society.
- O(log B) search to insert the new bid sorted.
- External Module Operations:
- One balance reserve operation. O(X)
- Up to one balance unreserve operation if bids.len() > MAX_BID_COUNT.
- Events:
- One event for vouch.
- Up to one event for AutoUnbid if bid.len() > MAX_BID_COUNT.
Total Complexity: O(M + B + C + logM + logB + X)
NOTE: Calling this function will bypass origin filters.
As a vouching member, unvouch a bid. This only works while vouched user is only a bidder (and not a candidate).
The dispatch origin for this call must be Signed and a vouching member.
Parameters:
pos
: Position in theBids
vector of the bid who should be unvouched.
Key: B (len of bids)
- One storage read O(1) to check the signer is a vouching member.
- One storage mutate to retrieve and update the bids. O(B)
- One vouching storage removal. O(1)
- One event.
Total Complexity: O(B)
NOTE: Calling this function will bypass origin filters.
pub fn vote(
origin: T::Origin,
candidate: <T::Lookup as StaticLookup>::Source,
approve: bool
) -> DispatchResult
pub fn vote(
origin: T::Origin,
candidate: <T::Lookup as StaticLookup>::Source,
approve: bool
) -> DispatchResult
As a member, vote on a candidate.
The dispatch origin for this call must be Signed and a member.
Parameters:
candidate
: The candidate that the member would like to bid on.approve
: A boolean which says if the candidate should be approved (true
) or rejected (false
).
Key: C (len of candidates), M (len of members)
- One storage read O(M) and O(log M) search to check user is a member.
- One account lookup.
- One storage read O(C) and O(C) search to check that user is a candidate.
- One storage write to add vote to votes. O(1)
- One event.
Total Complexity: O(M + logM + C)
NOTE: Calling this function will bypass origin filters.
As a member, vote on the defender.
The dispatch origin for this call must be Signed and a member.
Parameters:
approve
: A boolean which says if the candidate should be approved (true
) or rejected (false
).
- Key: M (len of members)
- One storage read O(M) and O(log M) search to check user is a member.
- One storage write to add vote to votes. O(1)
- One event.
Total Complexity: O(M + logM)
NOTE: Calling this function will bypass origin filters.
Transfer the first matured payout for the sender and remove it from the records.
NOTE: This extrinsic needs to be called multiple times to claim multiple matured payouts.
Payment: The member will receive a payment equal to their first matured payout to their free balance.
The dispatch origin for this call must be Signed and a member with payouts remaining.
Key: M (len of members), P (number of payouts for a particular member)
- One storage read O(M) and O(log M) search to check signer is a member.
- One storage read O(P) to get all payouts for a member.
- One storage read O(1) to get the current block number.
- One currency transfer call. O(X)
- One storage write or removal to update the member’s payouts. O(P)
Total Complexity: O(M + logM + P + X)
NOTE: Calling this function will bypass origin filters.
Remove a member from the members list, except the Head.
NOTE: This does not correctly clean up a member from storage. It simply removes them from the Members storage item.
The account ID of the treasury pot.
This actually does computation. If you need to keep using it, then make sure you cache the value and only call this once.
The account ID of the payouts pot. This is where payouts are made from.
This actually does computation. If you need to keep using it, then make sure you cache the value and only call this once.
Get a selection of bidding accounts such that the total bids is no greater than Pot
and
the number of bids would not surpass MaxMembers
if all were accepted.
May be empty.
Trait Implementations
Returns the current storage version as supported by the pallet.
Returns the on-chain storage version of the pallet as stored in the storage.
Run integrity test. Read more
impl<T: Config + Config<I>, I: Instance> OffchainWorker<<T as Config>::BlockNumber> for Module<T, I>
impl<T: Config + Config<I>, I: Instance> OffchainWorker<<T as Config>::BlockNumber> for Module<T, I>
This function is being called after every block import (when fully synced). Read more
impl<T: Config + Config<I>, I: Instance> OnFinalize<<T as Config>::BlockNumber> for Module<T, I>
impl<T: Config + Config<I>, I: Instance> OnFinalize<<T as Config>::BlockNumber> for Module<T, I>
The block is being finalized. Implement to have something happen. Read more
Something that should happen at genesis.
impl<T: Config + Config<I>, I: Instance> OnInitialize<<T as Config>::BlockNumber> for Module<T, I>
impl<T: Config + Config<I>, I: Instance> OnInitialize<<T as Config>::BlockNumber> for Module<T, I>
The block is being initialized. Implement to have something happen. Read more
impl<T: Config> OnUnbalanced<<<T as Config<DefaultInstance>>::Currency as Currency<<T as Config>::AccountId>>::NegativeImbalance> for Module<T>
impl<T: Config> OnUnbalanced<<<T as Config<DefaultInstance>>::Currency as Currency<<T as Config>::AccountId>>::NegativeImbalance> for Module<T>
fn on_nonzero_unbalanced(
amount: <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::NegativeImbalance
)
fn on_nonzero_unbalanced(
amount: <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::NegativeImbalance
)
Actually handle a non-zero imbalance. You probably want to implement this rather than
on_unbalanced
. Read more
Handler for some imbalances. The different imbalances might have different origins or meanings, dependent on the context. Will default to simply calling on_unbalanced for all of them. Infallible. Read more
Handler for some imbalance. Infallible.
Auto Trait Implementations
impl<T, I> RefUnwindSafe for Module<T, I> where
I: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, I> UnwindSafe for Module<T, I> where
I: UnwindSafe,
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
impl<T> Downcast for T where
T: Any,
impl<T> Downcast for T where
T: Any,
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
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
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
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
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
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
Generate a storage key unique to this runtime upgrade. Read more
Get temporary storage data written by Self::set_temp_storage
. Read more
Write some temporary data to a specific storage that can be read (potentially in
post-upgrade hook) via Self::get_temp_storage
. Read more
impl<T> PalletVersionToStorageVersionHelper for T where
T: GetStorageVersion + PalletInfoAccess,
impl<T> PalletVersionToStorageVersionHelper for T where
T: GetStorageVersion + PalletInfoAccess,
type Output = T
type Output = T
Should always be Self
The counterpart to unchecked_from
.
Consume self to return an equivalent value of T
.
pub fn vzip(self) -> V
impl<T> MaybeDebug for T where
T: Debug,
impl<T> MaybeDebug for T where
T: Debug,