Crate pallet_tenancy

source ·
Expand description

Tenancy Pallet

The Tenancy pallet is used by aspiring and active tenants to execute payments and make requests depending on their status.

Overview

Using this pallet, a user with the Tenant role can do the following:

  • Request a lease for a purchased asset
  • Pay a guaranty_deposit to confirm the lease start
  • Pay his rent

Dispatchable Functions

  • request_asset - A prospecting tenant can requestfor a particular asset after providing personal information requested by the Representative.

  • pay_guaranty_deposit - A newly selected tenant pays for a guaranty deposit requested by the asset’s owners, and confirms the start of his contract/lease.

  • pay_rent - The Tenant can pay the monthly rent anytime. He cannot pay more than 12 months, which is the length of the lease/contract.

Re-exports

pub use pallet_asset_management as Assets;
pub use pallet_identity as Ident;
pub use pallet_nft as Nft;
pub use pallet_payment as Payment;
pub use pallet_roles as Roles;
pub use pallet_share_distributor as Share;
pub use weights::WeightInfo;
pub use pallet::*;
pub use super::*;
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_template

Macros

Panic if an expression doesn’t evaluate to Ok.
Evaluate $x:expr and if not true return Err($y:expr).
Creates a String using interpolation of runtime expressions.
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.
A pointer type that uniquely owns a heap allocation of type T.
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.
Information concerning the identity of the controller of an account.
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.
A fixed point representation of a number in the range [0, 1].
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

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.
Defines a multiplicative identity element for Self.
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.
Something that implements a fixed point ration with an arbitrary granularity X, as parts per X.
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.