Crate pallet_roles

source ·
Expand description

Roles Pallet

The Roles Pallet is used to set a role for a given AccountId in the FairSquares framework

Overview

The Roles Pallet provides roles management capabilities through the following actions:

  • Role setting
  • Role attribution to an AccountId
  • Role attribution approval or rejection During role setting, the user selects a role from the Accounts enum. Each role has access to specific set of actions used in Fairsquares. there are currently 5 kinds of roles available for selection:
  • INVESTOR
  • TENANT
  • SERVICER
  • SELLER The 5th role which is the accounts administrator role is not available during role setting. Sellers and Servicers roles, must be verified/approved by an administrator in order to become active

Dispatchable Functions

Role setting
  • set_role - Create one of the 4 selectable type of role. In the case of Sellers and Servicers, requests are transfered to a Role approval list. Servicer role (and only Servicer role) can also assign roles to a different user account.
Roles management by Administrator
  • account_approval - This function allows the administrator to verify/approve Seller and Servicer role connection to the requesting AccountId. Verified AccountId are activated, i.e., the requesting AccountId is stored into the corresponding role storage.

  • account_rejection - This function allows the administrator to reject Seller and Servicer role connection to the requesting AccountId that are in the approval list, but do not fullfill the FaiSquares guideline.

  • set_manager - This function allows the current manager/Sudo_Account to transfer his Administrative authority to a different user/account. Only the current manager can use this function, and he will lose all administrative power by using this function. The Servicer Role is affected to new manager account during this transfer. Previous manager account Servicer Role is revoked.

Re-exports

pub use pallet_sudo as SUDO;
pub use weights::WeightInfo;
pub use pallet::*;
pub use super::*;

Modules

Operation on runtime child storages.
The module that hosts all the FRAME types needed to add this pallet to a runtime.
Stuff to do with the runtime’s storage.
A contiguous growable array type with heap-allocated contents, written Vec<T>.
Autogenerated weights for pallet_roles

Macros

Panic if an expression doesn’t evaluate to Ok.
Evaluate $x:expr and if not true return Err($y:expr).
Creates a Vec containing the arguments.

Structs

Hash storage keys with blake2 128
Hash storage keys with concat(blake2_128(key), key)
Hash storage keys with blake2 256
A bounded vector.
Const getter for a basic type.
A wrapper around a StorageMap and a StorageValue<Value=u32> to keep track of how many items are in a map, without needing to iterate all the values.
Implement Get by returning Default for any type that implements Default.
Store the key directly.
Inherent data to include in a block.
A type used exclusively by storage maps as their key type.
Implement QueryKindTrait with query being Option<Value>
A pallet identifier. These are per pallet and should be stored in a registry somewhere.
Zero-sized type used to mark things that “act like” they own a T.
Implement QueryKindTrait with query being Result<Value, PalletError>
A type that allow to store values for (key1, key2) couple. Similar to StorageMap but allow to iterate and remove value associated to first key.
A type that allow to store value for given key. Allowing to insert/remove/iterate on values.
A type that allow to store values for an arbitrary number of keys in the form of (Key<Hasher1, key1>, Key<Hasher2, key2>, ..., Key<HasherN, keyN>).
A type that allow to store a value.
The storage version of a pallet.
Hash storage keys with concat(twox64(key), key)
Hash storage keys with twox 128
Hash storage keys with twox 256
Information concerning a valid transaction.
Implement QueryKindTrait with query being Value
A contiguous growable array type, written as Vec<T>, short for ‘vector’.
Reasons for moving funds out of an account.

Enums

This enum contains the roles selectable at account creation
A generalized group of dispatch types.
Reason why a dispatch call failed.
Simple boolean for whether an account needs to be kept in existence.
An invalid transaction validity.
Explicit enum to denote if a transaction pays fee or not.
Origin for the System pallet.
The source of the transaction.
Errors that can occur while checking the validity of a transaction.
An unknown transaction validity.

Constants

The number of bytes of the module-specific error field defined in [ModuleError]. In FRAME, this is the maximum encoded size of a pallet error type.

Traits

This type can be converted into and possibly from an AccountId (which itself is generic).
Abstraction over a fungible assets system.
Trait that allows zero-copy read of value-references from slices in LE format.
A data structure that can be deserialized from any data format supported by Serde.
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.
Some sort of check on the origin is performed by this object.
A trait to define the build function of a genesis config, T and I are placeholder for pallet trait and pallet instance.
A trait for querying a single value from a type.
Provides information about the storage version of a pallet.
Abstraction around hashing
The pallet hooks trait. Implementing this lets you express some logic to execute.
Trait to be used when types are exactly same.
A currency whose accounts can have liquidity restrictions.
Items implementing MaxEncodedLen have a statically known maximum encoded size.
A type that implements Serialize, DeserializeOwned and Debug when in std environment.
A type that can be used in runtime structures.
Provides information about the pallet itself and its setup in the runtime.
A type that can be used as a parameter in a dispatchable function.
A pallet that provides or verifies an inherent extrinsic will implement this trait.
A currency where funds can be reserved from the user.
Saturating arithmetic operations, returning maximum or minimum values instead of overflowing.
A data structure that can be serialized into any data format supported by Serde.
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.
A trait to give information about storage.
Implementors return their meta type information.
A trait for querying a single value from a type defined in the trait.
Something that can validate unsigned extrinsics for the transaction pool.
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.
The return type of a Dispatchable in frame. When returned explicitly from a dispatchable function it allows overriding the default PostDispatchInfo returned from a dispatch.
An identifier for an inherent.
Type alias for the Origin associated type of system config.
Minimum number of blocks a transaction will remain valid for. TransactionLongevity::max_value() means “forever”.
Priority for a transaction. Additive. Higher is better.
Tag for a transaction. No two transactions with the same tag should be placed on-chain.
Information on a transaction’s validity and, if valid, on how it relates to other transactions.

Derive Macros

Derive Clone but do not bound any generic. Docs are at frame_support::CloneNoBound.
Derive Debug but do not bound any generics. Docs are at frame_support::DebugNoBound.
Derive parity_scale_codec::Decode and for struct and enum.
Derive parity_scale_codec::Encode and parity_scale_codec::EncodeLike for struct and enum.
derive Eq but do no bound any generic. Docs are at frame_support::EqNoBound.
Derive parity_scale_codec::MaxEncodedLen for struct and enum.
Derive PartialEq but do not bound any generic. Docs are at frame_support::PartialEqNoBound.
Derive Debug, if std is enabled it uses frame_support::DebugNoBound, if std is not enabled it just returns "<stripped>". This behaviour is useful to prevent bloating the runtime WASM blob from unneeded code.