Crate pallet_onboarding
source ·Expand description
Onboarding Pallet
The Onboarding Pallet allows the Seller role to create an asset proposal and submit it for a Review by a Council in the FairSquares framework.
Overview
The Onboarding Pallet the following actions available to the Seller role:
- Create and Submit a proposal
- Create a proposal without submission phase
- Edit unsubmitted proposal price
- Submit an awaiting proposal
And the following actions sent to pallet voting through calls
- Execute NFT & funds transfer
- Reject a proposal for price editing purpose (asset is marked as REJECTED and re-submission is possible)
- Reject a proposal for destruction (NFT is burned, asset is marked as SLASH)
Dispatchable Functions
Role setting
-
do_something
- Used in a Call to initialize the fields of the VotingCalls struct. -
set_price
- Modify the price of an Existing proposal with the status EDIT or REJECTED Proposal price is the only part that can be edited -
do_buy
- Execute the buy/sell transaction. Funds reserved during proposal creation are unreserved. Sent to the voting pallet as a Call. -
reject_edit
- Reject a submitted proposal for price editing, and a portion of the amount reserved during proposal creation is slashed. Sent to the voting pallet as a Call. -
reject_destroy
- Reject a submitted proposal for destruction, and all of the amount reserved during proposal creation is slashed. Sent to the voting pallet as a Call. -
create_and_submit_proposal
- Creation and submission of a proposal. A struct containing Calls for the voting pallet is also created and stored. the proposal submission is optionnal, and can be disabled through the value of the booleansubmit
. A defined amount that will be slashed in case of proposal rejection is also reserved. -
submit_awaiting
- Submit/edit an awaiting proposal for review. This is also used for re-submission of rejected proposals.
Re-exports
pub use pallet_housing_fund as HousingFund;
pub use pallet_nft as Nft;
pub use pallet_roles as Roles;
pub use pallet_sudo as Sudo;
pub use pallet_voting as Votes;
pub use super::*;
pub use pallet::*;
Modules
Macros
$x:expr
and if not true return Err($y:expr)
.Structs
T
.Vec<T>
, short for ‘vector’.Enums
Traits
AtLeast32Bit
], but also bounded to be unsigned.dispatch
method.Lookup
in that it doesn’t (can cannot) require any
context.Self
.Functions
o
represents an unsigned extrinsic. Returns Ok
or an Err
otherwise.o
represents the root. Returns Ok
or an Err
otherwise.o
represents a signed extrinsic (i.e. transaction).
Returns Ok
with the account that signed the extrinsic or an Err
otherwise.o
represents either a signed extrinsic (i.e. transaction) or the root.
Returns Ok
with the account that signed the extrinsic, None
if it was root, or an Err
otherwise.Type Definitions
BlockNumber
associated type of system config.DispatchResultWithPostInfo
that can be returned from
dispatchable functions and is automatically converted to the augmented type. Should be
used whenever the PostDispatchInfo
does not need to be overwritten. As this should
be the common case it is the implicit return type when none is specified.Origin
associated type of system config.