Struct pallet_asset_management::pallet::Pallet
source · pub struct Pallet<T>(_);
Expand description
The pallet implementing the on-chain logic.
Implementations§
source§impl<T: Config> Pallet<T>
impl<T: Config> Pallet<T>
pub fn approve_representative_role(
origin: OriginFor<T>,
who: T::AccountId
) -> DispatchResult
pub fn revoke_representative_role(who: T::AccountId) -> DispatchResult
pub fn fetch_house(
collection: T::NftCollectionId,
item: T::NftItemId
) -> Asset<T>
pub fn calculate_guaranty(
collection: T::NftCollectionId,
item: T::NftItemId
) -> u128
pub fn guaranty_payment(
origin: OriginFor<T>,
from: T::AccountId,
collection: T::NftCollectionId,
item: T::NftItemId
) -> DispatchResult
pub fn owners_infos(asset_account: T::AccountId) -> Option<Ownership<T>>
pub fn vote_helper(share: u128, vote: bool) -> Option<Vote>
pub fn tenant_link_asset(
tenant: T::AccountId,
collection: T::NftCollectionId,
item: T::NftItemId,
asset_account: T::AccountId
) -> DispatchResult
pub fn tenant_unlink_asset(
tenant: T::AccountId,
collection: T::NftCollectionId,
item: T::NftItemId
) -> DispatchResult
pub fn create_proposal_hash_and_note(
caller: T::AccountId,
proposal_call: Call<T>
) -> T::Hash
pub fn caller_can_vote(caller: &T::AccountId, ownership: Ownership<T>) -> bool
pub fn manage_bal_to_u128(input: BalanceOf<T>) -> Option<u128>
pub fn assets_bal_to_u128(input: <T as Config>::Balance) -> Option<u128>
pub fn roles_bal_to_u128(input: BalanceOf<T>) -> Option<u128>
pub fn onboarding_bal_to_u128(input: BalanceOf<T>) -> Option<u128>
pub fn blocknumber_to_u128(input: BlockNumberFor<T>) -> Option<u128>
pub fn get_formatted_call(call: <T as Config>::Call) -> <T as Config>::Call
sourcepub fn begin_block(now: T::BlockNumber) -> Weight
pub fn begin_block(now: T::BlockNumber) -> Weight
The function below is monitoring ongoing referendums in order to update the status of corresponding Proposal Logs
sourcepub fn finish_block(now: T::BlockNumber) -> Weight
pub fn finish_block(now: T::BlockNumber) -> Weight
The function below regularly checks (every 15 days) for active Tenants on the blockchain when a tenant is fund, his specific Rent-per-block is first calculated. Next, based on the number of blocks ellapsed since the day of its activation, the amount that should have been paid up to this point is calculated, and compared with the amount that has been actually paid. If the balance of the Tenant is negative, an event is emitted to notify him of his debt, If not, nothing happens. It will also distribute payed rent to the owners, according to their share.
source§impl<T: Config> Pallet<T>
impl<T: Config> Pallet<T>
sourcepub fn execute_call_dispatch(
origin: OriginFor<T>,
account_id: AccountIdOf<T>,
proposal: Box<<T as Config>::Call>
) -> DispatchResultWithPostInfo
pub fn execute_call_dispatch(
origin: OriginFor<T>,
account_id: AccountIdOf<T>,
proposal: Box<<T as Config>::Call>
) -> DispatchResultWithPostInfo
Build the call to be executed when the proposal pass the democracy vote The origin must but root
- account_id : the virtual account of the asset of the proposal
- proposal : call encapsulating the inital proposal
sourcepub fn request_asset_management(
origin: OriginFor<T>,
account_id: AccountIdOf<T>
) -> DispatchResultWithPostInfo
pub fn request_asset_management(
origin: OriginFor<T>,
account_id: AccountIdOf<T>
) -> DispatchResultWithPostInfo
Using the function below, an active Representative can request an additional asset to manage. The origin must be an active Representative.
- account_id: an account with the representative role
sourcepub fn launch_representative_session(
origin: OriginFor<T>,
asset_type: PossibleCollections,
asset_id: T::NftItemId,
representative: T::AccountId,
proposal: VoteProposals
) -> DispatchResultWithPostInfo
pub fn launch_representative_session(
origin: OriginFor<T>,
asset_type: PossibleCollections,
asset_id: T::NftItemId,
representative: T::AccountId,
proposal: VoteProposals
) -> DispatchResultWithPostInfo
Using the function below, an owner triggers a vote session with a proposal for an asset The origin must be an owner of the asset
- asset_type: type of the asset
- asset_id: id of the asset
- representative: an account with the representative role to be designed
- proposal contains the extrinsics to be executed depending on the vote result
sourcepub fn owners_vote(
origin: OriginFor<T>,
referendum_index: ReferendumIndex,
vote: bool
) -> DispatchResult
pub fn owners_vote(
origin: OriginFor<T>,
referendum_index: ReferendumIndex,
vote: bool
) -> DispatchResult
The function below allows the owner to vote. The balance locked and used for vote conviction corresponds to the number of ownership tokens possessed by the voter. The origin must be an owner of the asset
- referendum_index: index of the referendum the voter is taking part in
- vote: aye or nay
sourcepub fn representative_approval(
origin: OriginFor<T>,
rep_account: T::AccountId,
collection: T::NftCollectionId,
item: T::NftItemId
) -> DispatchResult
pub fn representative_approval(
origin: OriginFor<T>,
rep_account: T::AccountId,
collection: T::NftCollectionId,
item: T::NftItemId
) -> DispatchResult
The function below allows the approval of a Representative role request The origin must be the virtual account connected to the asset
- rep_account: account Of the candidate to the representative account
- collection: collection number of the asset.
- item: item number of the asset.
sourcepub fn demote_representative(
origin: OriginFor<T>,
rep_account: T::AccountId,
collection: T::NftCollectionId,
item: T::NftItemId
) -> DispatchResult
pub fn demote_representative(
origin: OriginFor<T>,
rep_account: T::AccountId,
collection: T::NftCollectionId,
item: T::NftItemId
) -> DispatchResult
The function below allows the demotion of a previously elected Representative The origin must be the virtual account connected to the asset
- rep_account: account Of the candidate to the representative account
- collection: collection_id of the asset.
- item: item_id of the asset.
sourcepub fn launch_tenant_session(
origin: OriginFor<T>,
asset_type: PossibleCollections,
asset_id: T::NftItemId,
tenant: T::AccountId,
proposal: VoteProposals,
judgement: Judgement<IdentBalanceOf<T>>
) -> DispatchResult
pub fn launch_tenant_session(
origin: OriginFor<T>,
asset_type: PossibleCollections,
asset_id: T::NftItemId,
tenant: T::AccountId,
proposal: VoteProposals,
judgement: Judgement<IdentBalanceOf<T>>
) -> DispatchResult
Using the function below, a representative triggers a vote session with a proposal for a tenant to be linked with an asset The origin must be a representative
- asset_type: type of the asset
- asset_id: id of the asset
- tenant: an account with the tenant role
sourcepub fn link_tenant_to_asset(
origin: OriginFor<T>,
tenant: T::AccountId,
collection: T::NftCollectionId,
item: T::NftItemId
) -> DispatchResult
pub fn link_tenant_to_asset(
origin: OriginFor<T>,
tenant: T::AccountId,
collection: T::NftCollectionId,
item: T::NftItemId
) -> DispatchResult
The function below links an accepted tenant with an existing asset The origin must be the virtual account connected to the asset
- tenant: an account with the tenant role
- collection: collection_id of the asset
- item: item_id of the asset
sourcepub fn request_guaranty_payment(
origin: OriginFor<T>,
from: T::AccountId,
collection: T::NftCollectionId,
item: T::NftItemId,
_judgement: Judgement<IdentBalanceOf<T>>
) -> DispatchResult
pub fn request_guaranty_payment(
origin: OriginFor<T>,
from: T::AccountId,
collection: T::NftCollectionId,
item: T::NftItemId,
_judgement: Judgement<IdentBalanceOf<T>>
) -> DispatchResult
The function below sends a guaranty deposiy payment request to a tenant. This extrinsic is executed After a positive tenant_session. The origin must be the virtual account connected to the asset
- tenant: an account with the tenant role linked to the asset
- collection: collection_id of the asset
- item: item_id of the asset
- _judgement is provided by the representative while creating a tenant session
sourcepub fn unlink_tenant_to_asset(
origin: OriginFor<T>,
tenant: T::AccountId,
collection: T::NftCollectionId,
item: T::NftItemId
) -> DispatchResult
pub fn unlink_tenant_to_asset(
origin: OriginFor<T>,
tenant: T::AccountId,
collection: T::NftCollectionId,
item: T::NftItemId
) -> DispatchResult
The function below unlinks a tenant with an asset The origin must be the virtual account connected to the asset
- tenant: an account with the tenant role linked to the asset
- collection: collection_id of the asset
- item: item_id of the asset
source§impl<T: Config> Pallet<T>
impl<T: Config> Pallet<T>
pub fn proposals<KArg>(k: KArg) -> Option<ProposalRecord<T>>where
KArg: EncodeLike<ReferendumIndex>,
source§impl<T: Config> Pallet<T>
impl<T: Config> Pallet<T>
pub fn guaranty<KArg1, KArg2>(k1: KArg1, k2: KArg2) -> Option<PaymentDetail<T>>where
KArg1: EncodeLike<T::AccountId>,
KArg2: EncodeLike<T::AccountId>,
Trait Implementations§
source§impl<T: Config> GetStorageVersion for Pallet<T>
impl<T: Config> GetStorageVersion for Pallet<T>
source§fn current_storage_version() -> StorageVersion
fn current_storage_version() -> StorageVersion
source§fn on_chain_storage_version() -> StorageVersion
fn on_chain_storage_version() -> StorageVersion
source§impl<T: Config> Hooks<<T as Config>::BlockNumber> for Pallet<T>
impl<T: Config> Hooks<<T as Config>::BlockNumber> for Pallet<T>
source§fn on_initialize(n: T::BlockNumber) -> Weight
fn on_initialize(n: T::BlockNumber) -> Weight
source§fn on_idle(n: T::BlockNumber, _max_weight: Weight) -> Weight
fn on_idle(n: T::BlockNumber, _max_weight: Weight) -> Weight
on_finalize
).
Implement to have something happen using the remaining weight.
Will not fire if the remaining weight is 0.
Return the weight used, the hook will subtract it from current weight used
and pass the result to the next on_idle
hook if it exists. Read more§fn on_finalize(_n: BlockNumber)
fn on_finalize(_n: BlockNumber)
§fn on_runtime_upgrade() -> Weight
fn on_runtime_upgrade() -> Weight
§fn try_state(_n: BlockNumber) -> Result<(), &'static str>
fn try_state(_n: BlockNumber) -> Result<(), &'static str>
§fn pre_upgrade() -> Result<(), &'static str>
fn pre_upgrade() -> Result<(), &'static str>
§fn post_upgrade() -> Result<(), &'static str>
fn post_upgrade() -> Result<(), &'static str>
§fn offchain_worker(_n: BlockNumber)
fn offchain_worker(_n: BlockNumber)
§fn integrity_test()
fn integrity_test()
source§impl<T: Config> IntegrityTest for Pallet<T>
impl<T: Config> IntegrityTest for Pallet<T>
source§fn integrity_test()
fn integrity_test()
source§impl<T: Config> OffchainWorker<<T as Config>::BlockNumber> for Pallet<T>
impl<T: Config> OffchainWorker<<T as Config>::BlockNumber> for Pallet<T>
source§fn offchain_worker(n: <T as Config>::BlockNumber)
fn offchain_worker(n: <T as Config>::BlockNumber)
source§impl<T: Config> OnFinalize<<T as Config>::BlockNumber> for Pallet<T>
impl<T: Config> OnFinalize<<T as Config>::BlockNumber> for Pallet<T>
source§fn on_finalize(n: <T as Config>::BlockNumber)
fn on_finalize(n: <T as Config>::BlockNumber)
source§impl<T: Config> OnGenesis for Pallet<T>
impl<T: Config> OnGenesis for Pallet<T>
source§fn on_genesis()
fn on_genesis()
source§impl<T: Config> OnIdle<<T as Config>::BlockNumber> for Pallet<T>
impl<T: Config> OnIdle<<T as Config>::BlockNumber> for Pallet<T>
source§fn on_idle(n: <T as Config>::BlockNumber, remaining_weight: Weight) -> Weight
fn on_idle(n: <T as Config>::BlockNumber, remaining_weight: Weight) -> Weight
remaining_weight
to make sure it is high enough to allow for
your pallet’s extra computation. Read moresource§impl<T: Config> OnInitialize<<T as Config>::BlockNumber> for Pallet<T>
impl<T: Config> OnInitialize<<T as Config>::BlockNumber> for Pallet<T>
source§fn on_initialize(n: <T as Config>::BlockNumber) -> Weight
fn on_initialize(n: <T as Config>::BlockNumber) -> Weight
source§impl<T: Config> PalletInfoAccess for Pallet<T>
impl<T: Config> PalletInfoAccess for Pallet<T>
source§fn module_name() -> &'static str
fn module_name() -> &'static str
source§fn crate_version() -> CrateVersion
fn crate_version() -> CrateVersion
source§impl<T: Config> StorageInfoTrait for Pallet<T>
impl<T: Config> StorageInfoTrait for Pallet<T>
fn storage_info() -> Vec<StorageInfo> ⓘ
impl<T> Eq for Pallet<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for Pallet<T>where
T: RefUnwindSafe,
impl<T> Send for Pallet<T>where
T: Send,
impl<T> Sync for Pallet<T>where
T: Sync,
impl<T> Unpin for Pallet<T>where
T: Unpin,
impl<T> UnwindSafe for Pallet<T>where
T: UnwindSafe,
Blanket Implementations§
§impl<T> CheckedConversion for T
impl<T> CheckedConversion for T
§fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
fn checked_from<T>(t: T) -> Option<Self>where
Self: TryFrom<T>,
§fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
fn checked_into<T>(self) -> Option<T>where
Self: TryInto<T>,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
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§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read more§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read more§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read moresource§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
§impl<U> OnRuntimeUpgradeHelpersExt for Uwhere
U: OnRuntimeUpgrade,
impl<U> OnRuntimeUpgradeHelpersExt for Uwhere
U: OnRuntimeUpgrade,
§fn storage_key(ident: &str) -> [u8; 32]
fn storage_key(ident: &str) -> [u8; 32]
§fn get_temp_storage<T>(at: &str) -> Option<T>where
T: Decode,
fn get_temp_storage<T>(at: &str) -> Option<T>where
T: Decode,
Self::set_temp_storage
]. Read more§fn set_temp_storage<T>(data: T, at: &str)where
T: Encode,
fn set_temp_storage<T>(data: T, at: &str)where
T: Encode,
Self::get_temp_storage
]. Read more§impl<T> PalletVersionToStorageVersionHelper for Twhere
T: GetStorageVersion + PalletInfoAccess,
impl<T> PalletVersionToStorageVersionHelper for Twhere
T: GetStorageVersion + PalletInfoAccess,
§impl<T> Pointable for T
impl<T> Pointable for T
§impl<T> SaturatedConversion for T
impl<T> SaturatedConversion for T
§fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
fn saturated_from<T>(t: T) -> Selfwhere
Self: UniqueSaturatedFrom<T>,
§fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
fn saturated_into<T>(self) -> Twhere
Self: UniqueSaturatedInto<T>,
T
. Read more§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.§impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
impl<S, T> UncheckedInto<T> for Swhere
T: UncheckedFrom<S>,
§fn unchecked_into(self) -> T
fn unchecked_into(self) -> T
unchecked_from
.§impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
impl<T, S> UniqueSaturatedInto<T> for Swhere
T: Bounded,
S: TryInto<T>,
§fn unique_saturated_into(self) -> T
fn unique_saturated_into(self) -> T
T
.