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 boolean submit. 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

The module that hosts all the FRAME types needed to add this pallet to a runtime.

Macros

Evaluate $x:expr and if not true return Err($y:expr).

Structs

A bounded vector.
A pointer type that uniquely owns a heap allocation of type T.
A fixed point representation of a number in the range [0, 1].
A contiguous growable array type, written as Vec<T>, short for ‘vector’.

Enums

Status of funds.
Reason why a dispatch call failed.
Simple boolean for whether an account needs to be kept in existence.
Origin for the System pallet.

Traits

This type can be converted into and possibly from an AccountId (which itself is generic).
A meta trait for arithmetic. Same as [AtLeast32Bit ], but also bounded to be unsigned.
Trait for providing the ability to create collections of nonfungible items.
Abstraction over a fungible assets system.
Trait that allows zero-copy read of value-references from slices in LE format.
Trait for providing the ability to destroy collections of nonfungible items.
A lazy call (module function and argument values) that can be executed via its dispatch method.
Trait that allows zero-copy write of value-references to slices in LE format.
A marker trait that tells the compiler that a type encode to the same representation as another type.
A trait for querying a single value from a type.
Trait that tells you if a given type can be encoded/decoded in a compact way.
Trait for providing an interface to many read-only NFT-like sets of items.
Interface for enumerating items in existence or owned by a given account over many collections of NFTs.
Trait for providing an interface for multiple collections of NFT-like items which may be minted, burned and/or have attributes set on them.
A currency where funds can be reserved from the user.
Saturating arithmetic operations, returning maximum or minimum values instead of overflowing.
Means of changing one type into another in a manner dependent on the source type. This variant is different to Lookup in that it doesn’t (can cannot) require any context.
Trait for providing a non-fungible sets of items which can only be transferred.
Defines an additive identity element for Self.

Functions

Ensure that the origin o represents an unsigned extrinsic. Returns Ok or an Err otherwise.
Ensure that the origin o represents the root. Returns Ok or an Err otherwise.
Ensure that the origin o represents a signed extrinsic (i.e. transaction). Returns Ok with the account that signed the extrinsic or an Err otherwise.
Ensure that the origin 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

Type alias for the BlockNumber associated type of system config.
Unaugmented version of 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.
Type alias for the Origin associated type of system config.

Attribute Macros

Execute the annotated function in a new storage transaction.

Derive Macros

Derive parity_scale_codec::Decode and for struct and enum.
Derive parity_scale_codec::Encode and parity_scale_codec::EncodeLike for struct and enum.