git.delta.rocks / unique-network / refs/commits / b69992369f0e

difftreelog

Add first draft of Properties

Daniel Shiposha2022-04-29parent: #c01b00c.patch.diff
in: master

14 files changed

modifiedpallets/common/src/lib.rsdiffbeforeafterboth
--- a/pallets/common/src/lib.rs
+++ b/pallets/common/src/lib.rs
@@ -18,7 +18,7 @@
 
 use core::ops::{Deref, DerefMut};
 use pallet_evm_coder_substrate::{SubstrateRecorder, WithRecorder};
-use sp_std::vec::Vec;
+use sp_std::{vec::Vec, collections::btree_map::BTreeMap};
 use pallet_evm::account::CrossAccountId;
 use frame_support::{
 	dispatch::{DispatchErrorWithPostInfo, DispatchResultWithPostInfo, Weight, PostDispatchInfo},
@@ -35,7 +35,8 @@
 	FUNGIBLE_SPONSOR_TRANSFER_TIMEOUT, REFUNGIBLE_SPONSOR_TRANSFER_TIMEOUT, MAX_SPONSOR_TIMEOUT,
 	CUSTOM_DATA_LIMIT, CollectionLimits, CustomDataLimit, CreateCollectionData, SponsorshipState,
 	CreateItemExData, SponsoringRateLimit, budget::Budget, COLLECTION_FIELD_LIMIT, CollectionField,
-	PhantomType,
+	PhantomType, Property, Properties, PropertiesPermissionMap, PropertyKey, PropertyPermission,
+	PropertiesError,
 };
 pub use pallet::*;
 use sp_core::H160;
@@ -288,6 +289,10 @@
 			T::CrossAccountId,
 			u128,
 		),
+
+		CollectionPropertySet(CollectionId, Property),
+
+		TokenPropertySet(CollectionId, TokenId, Property),
 	}
 
 	#[pallet::error]
@@ -319,7 +324,6 @@
 		CollectionLimitBoundsExceeded,
 		/// Tried to enable permissions which are only permitted to be disabled
 		OwnerPermissionsCantBeReverted,
-
 		/// Collection settings not allowing items transferring
 		TransferNotAllowed,
 		/// Account token limit exceeded per collection
@@ -372,6 +376,25 @@
 		QueryKind = OptionQuery,
 	>;
 
+	/// Collection properties
+	#[pallet::storage]
+	pub type CollectionProperties<T> = StorageMap<
+		Hasher = Blake2_128Concat,
+		Key = CollectionId,
+		Value = Properties,
+		QueryKind = ValueQuery,
+		OnEmpty = up_data_structs::CollectionProperties,
+	>;
+
+	#[pallet::storage]
+	#[pallet::getter(fn property_permission)]
+	pub type CollectionPropertyPermissions<T> = StorageMap<
+		Hasher = Blake2_128Concat,
+		Key = CollectionId,
+		Value = PropertiesPermissionMap,
+		QueryKind = ValueQuery,
+	>;
+
 	/// Large variable-size collection fields are extracted here
 	#[pallet::storage]
 	pub type CollectionData<T> = StorageNMap<
@@ -538,6 +561,7 @@
 			sponsorship,
 			limits,
 			meta_update_permission,
+			..
 		} = <CollectionById<T>>::get(collection)?;
 		Some(RpcCollection {
 			name: name.into_inner(),
@@ -615,8 +639,25 @@
 				.map(|limits| Self::clamp_limits(data.mode.clone(), &Default::default(), limits))
 				.unwrap_or_else(|| Ok(CollectionLimits::default()))?,
 			meta_update_permission: data.meta_update_permission.unwrap_or_default(),
+			// token_property_permissions: data.token_property_permissions.unwrap_or_default(),
+			// properties: Properties::from_collection_props_vec(data.properties)?
 		};
 
+		CollectionProperties::<T>::insert(
+			id,
+			Properties::from_collection_props_vec(data.properties)?,
+		);
+
+		let token_props_permissions: PropertiesPermissionMap = data
+			.token_property_permissions
+			.into_iter()
+			.map(|property| (property.key, property.permission))
+			.collect::<BTreeMap<_, _>>()
+			.try_into()
+			.map_err(|_| PropertiesError::PropertyLimitReached)?;
+
+		CollectionPropertyPermissions::<T>::insert(id, token_props_permissions);
+
 		// Take a (non-refundable) deposit of collection creation
 		{
 			let mut imbalance =
@@ -688,6 +729,34 @@
 		Ok(())
 	}
 
+	pub fn change_collection_property(
+		collection: &CollectionHandle<T>,
+		sender: &T::CrossAccountId,
+		property: Property,
+	) -> DispatchResult {
+		collection.check_is_owner_or_admin(sender)?;
+
+		CollectionProperties::<T>::get(collection.id).try_change_property(property)?;
+
+		Ok(())
+	}
+
+	pub fn change_property_permission(
+		collection: &CollectionHandle<T>,
+		sender: &T::CrossAccountId,
+		property_key: PropertyKey,
+		permission: PropertyPermission,
+	) -> DispatchResult {
+		collection.check_is_owner_or_admin(sender)?;
+
+		CollectionPropertyPermissions::<T>::try_mutate(collection.id, |permissions| {
+			permissions.try_insert(property_key, permission)
+		})
+		.map_err(|_| PropertiesError::PropertyLimitReached)?;
+
+		Ok(())
+	}
+
 	fn set_field_raw(
 		collection_id: CollectionId,
 		field: CollectionField,
@@ -840,6 +909,7 @@
 	fn create_multiple_items(amount: u32) -> Weight;
 	fn create_multiple_items_ex(cost: &CreateItemExData<CrossAccountId>) -> Weight;
 	fn burn_item() -> Weight;
+	fn set_property() -> Weight;
 	fn transfer() -> Weight;
 	fn approve() -> Weight;
 	fn transfer_from() -> Weight;
@@ -875,6 +945,19 @@
 		amount: u128,
 	) -> DispatchResultWithPostInfo;
 
+	fn change_collection_property(
+		&self,
+		sender: T::CrossAccountId,
+		property: Property,
+	) -> DispatchResultWithPostInfo;
+
+	fn change_token_property(
+		&self,
+		sender: T::CrossAccountId,
+		token_id: TokenId,
+		property: Property,
+	) -> DispatchResultWithPostInfo;
+
 	fn transfer(
 		&self,
 		sender: T::CrossAccountId,
modifiedpallets/fungible/src/common.rsdiffbeforeafterboth
--- a/pallets/fungible/src/common.rs
+++ b/pallets/fungible/src/common.rs
@@ -21,7 +21,7 @@
 use pallet_common::{CommonCollectionOperations, CommonWeightInfo, with_weight};
 use sp_runtime::ArithmeticError;
 use sp_std::{vec::Vec, vec};
-use up_data_structs::CustomDataLimit;
+use up_data_structs::{CustomDataLimit, Property};
 
 use crate::{
 	Allowance, Balance, Config, Error, FungibleHandle, Pallet, SelfWeightOf, weights::WeightInfo,
@@ -50,6 +50,10 @@
 		<SelfWeightOf<T>>::burn_item()
 	}
 
+	fn set_property() -> Weight {
+		<SelfWeightOf<T>>::set_property()
+	}
+
 	fn transfer() -> Weight {
 		<SelfWeightOf<T>>::transfer()
 	}
@@ -225,6 +229,23 @@
 		)
 	}
 
+	fn change_collection_property(
+		&self,
+		_sender: T::CrossAccountId,
+		_property: Property,
+	) -> DispatchResultWithPostInfo {
+		fail!(<Error<T>>::PropertiesNotAllowed)
+	}
+
+	fn change_token_property(
+		&self,
+		_sender: T::CrossAccountId,
+		_token_id: TokenId,
+		_property: Property,
+	) -> DispatchResultWithPostInfo {
+		fail!(<Error<T>>::PropertiesNotAllowed)
+	}
+
 	fn set_variable_metadata(
 		&self,
 		_sender: T::CrossAccountId,
modifiedpallets/fungible/src/lib.rsdiffbeforeafterboth
--- a/pallets/fungible/src/lib.rs
+++ b/pallets/fungible/src/lib.rs
@@ -61,6 +61,8 @@
 		FungibleItemsDontHaveData,
 		/// Fungible token does not support nested
 		FungibleDisallowsNesting,
+		/// Item properties are not allowed
+		PropertiesNotAllowed,
 	}
 
 	#[pallet::config]
modifiedpallets/fungible/src/weights.rsdiffbeforeafterboth
--- a/pallets/fungible/src/weights.rs
+++ b/pallets/fungible/src/weights.rs
@@ -35,6 +35,7 @@
 	fn create_item() -> Weight;
 	fn create_multiple_items_ex(b: u32, ) -> Weight;
 	fn burn_item() -> Weight;
+	fn set_property() -> Weight;
 	fn transfer() -> Weight;
 	fn approve() -> Weight;
 	fn transfer_from() -> Weight;
@@ -69,6 +70,12 @@
 			.saturating_add(T::DbWeight::get().reads(2 as Weight))
 			.saturating_add(T::DbWeight::get().writes(2 as Weight))
 	}
+
+	fn set_property() -> Weight {
+		// Error
+		0
+	}
+
 	// Storage: Fungible Balance (r:2 w:2)
 	fn transfer() -> Weight {
 		(17_713_000 as Weight)
@@ -126,6 +133,12 @@
 			.saturating_add(RocksDbWeight::get().reads(2 as Weight))
 			.saturating_add(RocksDbWeight::get().writes(2 as Weight))
 	}
+
+	fn set_property() -> Weight {
+		// Error
+		0
+	}
+
 	// Storage: Fungible Balance (r:2 w:2)
 	fn transfer() -> Weight {
 		(17_713_000 as Weight)
modifiedpallets/nonfungible/src/common.rsdiffbeforeafterboth
--- a/pallets/nonfungible/src/common.rs
+++ b/pallets/nonfungible/src/common.rs
@@ -17,7 +17,9 @@
 use core::marker::PhantomData;
 
 use frame_support::{dispatch::DispatchResultWithPostInfo, ensure, fail, weights::Weight, BoundedVec};
-use up_data_structs::{TokenId, CustomDataLimit, CreateItemExData, CollectionId, budget::Budget};
+use up_data_structs::{
+	TokenId, CustomDataLimit, CreateItemExData, CollectionId, budget::Budget, Property,
+};
 use pallet_common::{CommonCollectionOperations, CommonWeightInfo, with_weight};
 use sp_runtime::DispatchError;
 use sp_std::vec::Vec;
@@ -48,6 +50,10 @@
 		<SelfWeightOf<T>>::burn_item()
 	}
 
+	fn set_property() -> Weight {
+		<SelfWeightOf<T>>::set_property()
+	}
+
 	fn transfer() -> Weight {
 		<SelfWeightOf<T>>::transfer()
 	}
@@ -235,6 +241,32 @@
 		}
 	}
 
+	fn change_collection_property(
+		&self,
+		sender: T::CrossAccountId,
+		property: Property,
+	) -> DispatchResultWithPostInfo {
+		// let token_id = None;
+		with_weight(
+			// <Pallet<T>>::change_property(self, &sender, token_id, property),
+			Ok(()),
+			<CommonWeights<T>>::set_property(),
+		)
+	}
+
+	fn change_token_property(
+		&self,
+		sender: T::CrossAccountId,
+		token_id: TokenId,
+		property: Property,
+	) -> DispatchResultWithPostInfo {
+		with_weight(
+			// <Pallet<T>>::change_property(self, &sender, Some(token_id), property),
+			Ok(()),
+			<CommonWeights<T>>::set_property(),
+		)
+	}
+
 	fn set_variable_metadata(
 		&self,
 		sender: T::CrossAccountId,
modifiedpallets/nonfungible/src/lib.rsdiffbeforeafterboth
--- a/pallets/nonfungible/src/lib.rs
+++ b/pallets/nonfungible/src/lib.rs
@@ -20,7 +20,7 @@
 use frame_support::{BoundedVec, ensure, fail};
 use up_data_structs::{
 	AccessMode, CollectionId, CustomDataLimit, TokenId, CreateCollectionData, CreateNftExData,
-	mapping::TokenAddressMapping, NestingRule, budget::Budget,
+	mapping::TokenAddressMapping, NestingRule, budget::Budget, Property, PropertyPermission,
 };
 use pallet_evm::account::CrossAccountId;
 use pallet_common::{
@@ -94,6 +94,14 @@
 		QueryKind = OptionQuery,
 	>;
 
+	#[pallet::storage]
+	pub type TokenProperties<T: Config> = StorageNMap<
+		Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),
+		Value = up_data_structs::Properties,
+		QueryKind = ValueQuery,
+		OnEmpty = up_data_structs::TokenProperties,
+	>;
+
 	/// Used to enumerate tokens owned by account
 	#[pallet::storage]
 	pub type Owned<T: Config> = StorageNMap<
@@ -246,6 +254,56 @@
 		Ok(())
 	}
 
+	pub fn change_token_property(
+		collection: &NonfungibleHandle<T>,
+		sender: &T::CrossAccountId,
+		token_id: TokenId,
+		property: Property,
+	) -> DispatchResult {
+		let permission = <PalletCommon<T>>::property_permission(collection.id)
+			.get(&property.key)
+			.map(|p| p.clone())
+			.unwrap_or(PropertyPermission::None);
+
+		let check_token_owner = || -> DispatchResult {
+			let token_data = <TokenData<T>>::get((collection.id, token_id))
+				.ok_or(<CommonError<T>>::TokenNotFound)?;
+
+			ensure!(&token_data.owner == sender, <CommonError<T>>::NoPermission);
+
+			Ok(())
+		};
+
+		let is_property_exists = TokenProperties::<T>::get((collection.id, token_id))
+			.get_property(&property.key)
+			.is_some();
+
+		match (permission, is_property_exists) {
+			(PropertyPermission::AdminConst, false) => {
+				collection.check_is_owner_or_admin(sender)?
+			}
+			(PropertyPermission::Admin, _) => collection.check_is_owner_or_admin(sender)?,
+			(PropertyPermission::ItemOwnerConst, false) => check_token_owner()?,
+			(PropertyPermission::ItemOwner, _) => check_token_owner()?,
+			(PropertyPermission::ItemOwnerOrAdmin, _) => {
+				check_token_owner().or(collection.check_is_owner_or_admin(sender))?;
+			}
+			_ => return Err(<CommonError<T>>::NoPermission.into()),
+		}
+
+		<TokenProperties<T>>::try_mutate((collection.id, token_id), |properties| {
+			properties.try_change_property(property.clone())
+		})?;
+
+		<PalletCommon<T>>::deposit_event(CommonEvent::TokenPropertySet(
+			collection.id,
+			token_id,
+			property,
+		));
+
+		Ok(())
+	}
+
 	pub fn transfer(
 		collection: &NonfungibleHandle<T>,
 		from: &T::CrossAccountId,
modifiedpallets/nonfungible/src/weights.rsdiffbeforeafterboth
--- a/pallets/nonfungible/src/weights.rs
+++ b/pallets/nonfungible/src/weights.rs
@@ -36,6 +36,7 @@
 	fn create_multiple_items(b: u32, ) -> Weight;
 	fn create_multiple_items_ex(b: u32, ) -> Weight;
 	fn burn_item() -> Weight;
+	fn set_property() -> Weight;
 	fn transfer() -> Weight;
 	fn approve() -> Weight;
 	fn transfer_from() -> Weight;
@@ -90,6 +91,12 @@
 			.saturating_add(T::DbWeight::get().reads(4 as Weight))
 			.saturating_add(T::DbWeight::get().writes(4 as Weight))
 	}
+
+	fn set_property() -> Weight {
+		// TODO calculate appropriate weight
+		50_000_000 as Weight
+	}
+
 	// Storage: Nonfungible TokenData (r:1 w:1)
 	// Storage: Nonfungible AccountBalance (r:2 w:2)
 	// Storage: Nonfungible Allowance (r:1 w:0)
@@ -179,6 +186,12 @@
 			.saturating_add(RocksDbWeight::get().reads(4 as Weight))
 			.saturating_add(RocksDbWeight::get().writes(4 as Weight))
 	}
+
+	fn set_property() -> Weight {
+		// TODO calculate appropriate weight
+		50_000_000 as Weight
+	}
+
 	// Storage: Nonfungible TokenData (r:1 w:1)
 	// Storage: Nonfungible AccountBalance (r:2 w:2)
 	// Storage: Nonfungible Allowance (r:1 w:0)
modifiedpallets/refungible/src/common.rsdiffbeforeafterboth
--- a/pallets/refungible/src/common.rs
+++ b/pallets/refungible/src/common.rs
@@ -20,7 +20,7 @@
 use frame_support::{dispatch::DispatchResultWithPostInfo, fail, weights::Weight, BoundedVec};
 use up_data_structs::{
 	CollectionId, TokenId, CustomDataLimit, CreateItemExData, CreateRefungibleExData,
-	budget::Budget,
+	budget::Budget, Property,
 };
 use pallet_common::{CommonCollectionOperations, CommonWeightInfo, with_weight};
 use sp_runtime::DispatchError;
@@ -66,6 +66,10 @@
 		max_weight_of!(burn_item_partial(), burn_item_fully())
 	}
 
+	fn set_property() -> Weight {
+		<SelfWeightOf<T>>::set_property()
+	}
+
 	fn transfer() -> Weight {
 		max_weight_of!(
 			transfer_normal(),
@@ -244,6 +248,23 @@
 		)
 	}
 
+	fn change_collection_property(
+		&self,
+		_sender: T::CrossAccountId,
+		_property: Property,
+	) -> DispatchResultWithPostInfo {
+		fail!(<Error<T>>::PropertiesNotAllowed)
+	}
+
+	fn change_token_property(
+		&self,
+		_sender: T::CrossAccountId,
+		_token_id: TokenId,
+		_property: Property,
+	) -> DispatchResultWithPostInfo {
+		fail!(<Error<T>>::PropertiesNotAllowed)
+	}
+
 	fn set_variable_metadata(
 		&self,
 		sender: T::CrossAccountId,
modifiedpallets/refungible/src/lib.rsdiffbeforeafterboth
before · pallets/refungible/src/lib.rs
1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// This file is part of Unique Network.34// Unique Network is free software: you can redistribute it and/or modify5// it under the terms of the GNU General Public License as published by6// the Free Software Foundation, either version 3 of the License, or7// (at your option) any later version.89// Unique Network is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the12// GNU General Public License for more details.1314// You should have received a copy of the GNU General Public License15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.1617#![cfg_attr(not(feature = "std"), no_std)]1819use frame_support::{ensure, BoundedVec};20use up_data_structs::{21	AccessMode, CollectionId, CustomDataLimit, MAX_REFUNGIBLE_PIECES, TokenId,22	CreateCollectionData, CreateRefungibleExData, mapping::TokenAddressMapping, budget::Budget,23};24use pallet_evm::account::CrossAccountId;25use pallet_common::{26	Error as CommonError, Event as CommonEvent, Pallet as PalletCommon, CollectionHandle,27	dispatch::CollectionDispatch,28};29use pallet_structure::Pallet as PalletStructure;30use sp_runtime::{ArithmeticError, DispatchError, DispatchResult};31use sp_std::{vec::Vec, vec, collections::btree_map::BTreeMap};32use core::ops::Deref;33use codec::{Encode, Decode, MaxEncodedLen};34use scale_info::TypeInfo;3536pub use pallet::*;37#[cfg(feature = "runtime-benchmarks")]38pub mod benchmarking;39pub mod common;40pub mod erc;41pub mod weights;42pub(crate) type SelfWeightOf<T> = <T as Config>::WeightInfo;4344#[derive(Encode, Decode, Default, TypeInfo, MaxEncodedLen)]45pub struct ItemData {46	pub const_data: BoundedVec<u8, CustomDataLimit>,47	pub variable_data: BoundedVec<u8, CustomDataLimit>,48}4950#[frame_support::pallet]51pub mod pallet {52	use super::*;53	use frame_support::{Blake2_128, Blake2_128Concat, Twox64Concat, pallet_prelude::*, storage::Key};54	use up_data_structs::{CollectionId, TokenId};55	use super::weights::WeightInfo;5657	#[pallet::error]58	pub enum Error<T> {59		/// Not Refungible item data used to mint in Refungible collection.60		NotRefungibleDataUsedToMintFungibleCollectionToken,61		/// Maximum refungibility exceeded62		WrongRefungiblePieces,63		/// Refungible token can't nest other tokens64		RefungibleDisallowsNesting,65	}6667	#[pallet::config]68	pub trait Config:69		frame_system::Config + pallet_common::Config + pallet_structure::Config70	{71		type WeightInfo: WeightInfo;72	}7374	#[pallet::pallet]75	#[pallet::generate_store(pub(super) trait Store)]76	pub struct Pallet<T>(_);7778	#[pallet::storage]79	pub type TokensMinted<T: Config> =80		StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;81	#[pallet::storage]82	pub type TokensBurnt<T: Config> =83		StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;8485	#[pallet::storage]86	pub type TokenData<T: Config> = StorageNMap<87		Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),88		Value = ItemData,89		QueryKind = ValueQuery,90	>;9192	#[pallet::storage]93	pub type TotalSupply<T: Config> = StorageNMap<94		Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),95		Value = u128,96		QueryKind = ValueQuery,97	>;9899	/// Used to enumerate tokens owned by account100	#[pallet::storage]101	pub type Owned<T: Config> = StorageNMap<102		Key = (103			Key<Twox64Concat, CollectionId>,104			Key<Blake2_128Concat, T::CrossAccountId>,105			Key<Twox64Concat, TokenId>,106		),107		Value = bool,108		QueryKind = ValueQuery,109	>;110111	#[pallet::storage]112	pub type AccountBalance<T: Config> = StorageNMap<113		Key = (114			Key<Twox64Concat, CollectionId>,115			// Owner116			Key<Blake2_128Concat, T::CrossAccountId>,117		),118		Value = u32,119		QueryKind = ValueQuery,120	>;121122	#[pallet::storage]123	pub type Balance<T: Config> = StorageNMap<124		Key = (125			Key<Twox64Concat, CollectionId>,126			Key<Twox64Concat, TokenId>,127			// Owner128			Key<Blake2_128Concat, T::CrossAccountId>,129		),130		Value = u128,131		QueryKind = ValueQuery,132	>;133134	#[pallet::storage]135	pub type Allowance<T: Config> = StorageNMap<136		Key = (137			Key<Twox64Concat, CollectionId>,138			Key<Twox64Concat, TokenId>,139			// Owner140			Key<Blake2_128, T::CrossAccountId>,141			// Spender142			Key<Blake2_128Concat, T::CrossAccountId>,143		),144		Value = u128,145		QueryKind = ValueQuery,146	>;147}148149pub struct RefungibleHandle<T: Config>(pallet_common::CollectionHandle<T>);150impl<T: Config> RefungibleHandle<T> {151	pub fn cast(inner: pallet_common::CollectionHandle<T>) -> Self {152		Self(inner)153	}154	pub fn into_inner(self) -> pallet_common::CollectionHandle<T> {155		self.0156	}157}158impl<T: Config> Deref for RefungibleHandle<T> {159	type Target = pallet_common::CollectionHandle<T>;160161	fn deref(&self) -> &Self::Target {162		&self.0163	}164}165166impl<T: Config> Pallet<T> {167	pub fn total_supply(collection: &RefungibleHandle<T>) -> u32 {168		<TokensMinted<T>>::get(collection.id) - <TokensBurnt<T>>::get(collection.id)169	}170	pub fn token_exists(collection: &RefungibleHandle<T>, token: TokenId) -> bool {171		<TotalSupply<T>>::contains_key((collection.id, token))172	}173}174175// unchecked calls skips any permission checks176impl<T: Config> Pallet<T> {177	pub fn init_collection(178		owner: T::AccountId,179		data: CreateCollectionData<T::AccountId>,180	) -> Result<CollectionId, DispatchError> {181		<PalletCommon<T>>::init_collection(owner, data)182	}183	pub fn destroy_collection(184		collection: RefungibleHandle<T>,185		sender: &T::CrossAccountId,186	) -> DispatchResult {187		let id = collection.id;188189		// =========190191		PalletCommon::destroy_collection(collection.0, sender)?;192193		<TokensMinted<T>>::remove(id);194		<TokensBurnt<T>>::remove(id);195		<TokenData<T>>::remove_prefix((id,), None);196		<TotalSupply<T>>::remove_prefix((id,), None);197		<Balance<T>>::remove_prefix((id,), None);198		<Allowance<T>>::remove_prefix((id,), None);199		<Owned<T>>::remove_prefix((id,), None);200		<AccountBalance<T>>::remove_prefix((id,), None);201		Ok(())202	}203204	pub fn burn_token(collection: &RefungibleHandle<T>, token_id: TokenId) -> DispatchResult {205		let burnt = <TokensBurnt<T>>::get(collection.id)206			.checked_add(1)207			.ok_or(ArithmeticError::Overflow)?;208209		<TokensBurnt<T>>::insert(collection.id, burnt);210		<TokenData<T>>::remove((collection.id, token_id));211		<TotalSupply<T>>::remove((collection.id, token_id));212		<Balance<T>>::remove_prefix((collection.id, token_id), None);213		<Allowance<T>>::remove_prefix((collection.id, token_id), None);214		// TODO: ERC721 transfer event215		Ok(())216	}217218	pub fn burn(219		collection: &RefungibleHandle<T>,220		owner: &T::CrossAccountId,221		token: TokenId,222		amount: u128,223	) -> DispatchResult {224		let total_supply = <TotalSupply<T>>::get((collection.id, token))225			.checked_sub(amount)226			.ok_or(<CommonError<T>>::TokenValueTooLow)?;227228		// This was probally last owner of this token?229		if total_supply == 0 {230			// Ensure user actually owns this amount231			ensure!(232				<Balance<T>>::get((collection.id, token, owner)) == amount,233				<CommonError<T>>::TokenValueTooLow234			);235			let account_balance = <AccountBalance<T>>::get((collection.id, owner))236				.checked_sub(1)237				// Should not occur238				.ok_or(ArithmeticError::Underflow)?;239240			// =========241242			<Owned<T>>::remove((collection.id, owner, token));243			<AccountBalance<T>>::insert((collection.id, owner), account_balance);244			Self::burn_token(collection, token)?;245			<PalletCommon<T>>::deposit_event(CommonEvent::ItemDestroyed(246				collection.id,247				token,248				owner.clone(),249				amount,250			));251			return Ok(());252		}253254		let balance = <Balance<T>>::get((collection.id, token, owner))255			.checked_sub(amount)256			.ok_or(<CommonError<T>>::TokenValueTooLow)?;257		let account_balance = if balance == 0 {258			<AccountBalance<T>>::get((collection.id, owner))259				.checked_sub(1)260				// Should not occur261				.ok_or(ArithmeticError::Underflow)?262		} else {263			0264		};265266		// =========267268		if balance == 0 {269			<Owned<T>>::remove((collection.id, owner, token));270			<Balance<T>>::remove((collection.id, token, owner));271			<AccountBalance<T>>::insert((collection.id, owner), account_balance);272		} else {273			<Balance<T>>::insert((collection.id, token, owner), balance);274		}275		<TotalSupply<T>>::insert((collection.id, token), total_supply);276		// TODO: ERC20 transfer event277		<PalletCommon<T>>::deposit_event(CommonEvent::ItemDestroyed(278			collection.id,279			token,280			owner.clone(),281			amount,282		));283		Ok(())284	}285286	pub fn transfer(287		collection: &RefungibleHandle<T>,288		from: &T::CrossAccountId,289		to: &T::CrossAccountId,290		token: TokenId,291		amount: u128,292		nesting_budget: &dyn Budget,293	) -> DispatchResult {294		ensure!(295			collection.limits.transfers_enabled(),296			<CommonError<T>>::TransferNotAllowed297		);298299		if collection.access == AccessMode::AllowList {300			collection.check_allowlist(from)?;301			collection.check_allowlist(to)?;302		}303		<PalletCommon<T>>::ensure_correct_receiver(to)?;304305		let balance_from = <Balance<T>>::get((collection.id, token, from))306			.checked_sub(amount)307			.ok_or(<CommonError<T>>::TokenValueTooLow)?;308		let mut create_target = false;309		let from_to_differ = from != to;310		let balance_to = if from != to {311			let old_balance = <Balance<T>>::get((collection.id, token, to));312			if old_balance == 0 {313				create_target = true;314			}315			Some(316				old_balance317					.checked_add(amount)318					.ok_or(ArithmeticError::Overflow)?,319			)320		} else {321			None322		};323324		let account_balance_from = if balance_from == 0 {325			Some(326				<AccountBalance<T>>::get((collection.id, from))327					.checked_sub(1)328					// Should not occur329					.ok_or(ArithmeticError::Underflow)?,330			)331		} else {332			None333		};334		// Account data is created in token, AccountBalance should be increased335		// But only if from != to as we shouldn't check overflow in this case336		let account_balance_to = if create_target && from_to_differ {337			let account_balance_to = <AccountBalance<T>>::get((collection.id, to))338				.checked_add(1)339				.ok_or(ArithmeticError::Overflow)?;340			ensure!(341				account_balance_to < collection.limits.account_token_ownership_limit(),342				<CommonError<T>>::AccountTokenLimitExceeded,343			);344345			Some(account_balance_to)346		} else {347			None348		};349350		if let Some(target) = T::CrossTokenAddressMapping::address_to_token(to) {351			let handle = <CollectionHandle<T>>::try_get(target.0)?;352			let dispatch = T::CollectionDispatch::dispatch(handle);353			let dispatch = dispatch.as_dyn();354355			dispatch.check_nesting(356				from.clone(),357				(collection.id, token),358				target.1,359				nesting_budget,360			)?;361		}362363		// =========364365		if let Some(balance_to) = balance_to {366			// from != to367			if balance_from == 0 {368				<Balance<T>>::remove((collection.id, token, from));369			} else {370				<Balance<T>>::insert((collection.id, token, from), balance_from);371			}372			<Balance<T>>::insert((collection.id, token, to), balance_to);373			if let Some(account_balance_from) = account_balance_from {374				<AccountBalance<T>>::insert((collection.id, from), account_balance_from);375				<Owned<T>>::remove((collection.id, from, token));376			}377			if let Some(account_balance_to) = account_balance_to {378				<AccountBalance<T>>::insert((collection.id, to), account_balance_to);379				<Owned<T>>::insert((collection.id, to, token), true);380			}381		}382383		// TODO: ERC20 transfer event384		<PalletCommon<T>>::deposit_event(CommonEvent::Transfer(385			collection.id,386			token,387			from.clone(),388			to.clone(),389			amount,390		));391		Ok(())392	}393394	pub fn create_multiple_items(395		collection: &RefungibleHandle<T>,396		sender: &T::CrossAccountId,397		data: Vec<CreateRefungibleExData<T::CrossAccountId>>,398		nesting_budget: &dyn Budget,399	) -> DispatchResult {400		if !collection.is_owner_or_admin(sender) {401			ensure!(402				collection.mint_mode,403				<CommonError<T>>::PublicMintingNotAllowed404			);405			collection.check_allowlist(sender)?;406407			for item in data.iter() {408				for user in item.users.keys() {409					collection.check_allowlist(user)?;410				}411			}412		}413414		for item in data.iter() {415			for (owner, _) in item.users.iter() {416				<PalletCommon<T>>::ensure_correct_receiver(owner)?;417			}418		}419420		// Total pieces per tokens421		let totals = data422			.iter()423			.map(|data| {424				Ok(data425					.users426					.iter()427					.map(|u| u.1)428					.try_fold(0u128, |acc, v| acc.checked_add(*v))429					.ok_or(ArithmeticError::Overflow)?)430			})431			.collect::<Result<Vec<_>, DispatchError>>()?;432		for total in &totals {433			ensure!(434				*total <= MAX_REFUNGIBLE_PIECES,435				<Error<T>>::WrongRefungiblePieces436			);437		}438439		let first_token_id = <TokensMinted<T>>::get(collection.id);440		let tokens_minted = first_token_id441			.checked_add(data.len() as u32)442			.ok_or(ArithmeticError::Overflow)?;443		ensure!(444			tokens_minted < collection.limits.token_limit(),445			<CommonError<T>>::CollectionTokenLimitExceeded446		);447448		let mut balances = BTreeMap::new();449		for data in &data {450			for owner in data.users.keys() {451				let balance = balances452					.entry(owner)453					.or_insert_with(|| <AccountBalance<T>>::get((collection.id, owner)));454				*balance = balance.checked_add(1).ok_or(ArithmeticError::Overflow)?;455456				ensure!(457					*balance <= collection.limits.account_token_ownership_limit(),458					<CommonError<T>>::AccountTokenLimitExceeded,459				);460			}461		}462463		for (i, token) in data.iter().enumerate() {464			let token_id = TokenId(first_token_id + i as u32 + 1);465			for (to, _) in token.users.iter() {466				if let Some(target) = T::CrossTokenAddressMapping::address_to_token(to) {467					let handle = <CollectionHandle<T>>::try_get(target.0)?;468					let dispatch = T::CollectionDispatch::dispatch(handle);469					let dispatch = dispatch.as_dyn();470471					dispatch.check_nesting(472						sender.clone(),473						(collection.id, token_id),474						target.1,475						nesting_budget,476					)?;477				}478			}479		}480481		// =========482483		<TokensMinted<T>>::insert(collection.id, tokens_minted);484		for (account, balance) in balances {485			<AccountBalance<T>>::insert((collection.id, account), balance);486		}487		for (i, token) in data.into_iter().enumerate() {488			let token_id = first_token_id + i as u32 + 1;489			<TotalSupply<T>>::insert((collection.id, token_id), totals[i]);490491			<TokenData<T>>::insert(492				(collection.id, token_id),493				ItemData {494					const_data: token.const_data,495					variable_data: token.variable_data,496				},497			);498			for (user, amount) in token.users.into_iter() {499				if amount == 0 {500					continue;501				}502				<Balance<T>>::insert((collection.id, token_id, &user), amount);503				<Owned<T>>::insert((collection.id, &user, TokenId(token_id)), true);504				// TODO: ERC20 transfer event505				<PalletCommon<T>>::deposit_event(CommonEvent::ItemCreated(506					collection.id,507					TokenId(token_id),508					user,509					amount,510				));511			}512		}513		Ok(())514	}515516	pub fn set_allowance_unchecked(517		collection: &RefungibleHandle<T>,518		sender: &T::CrossAccountId,519		spender: &T::CrossAccountId,520		token: TokenId,521		amount: u128,522	) {523		if amount == 0 {524			<Allowance<T>>::remove((collection.id, token, sender, spender));525		} else {526			<Allowance<T>>::insert((collection.id, token, sender, spender), amount);527		}528		// TODO: ERC20 approval event529		<PalletCommon<T>>::deposit_event(CommonEvent::Approved(530			collection.id,531			token,532			sender.clone(),533			spender.clone(),534			amount,535		))536	}537538	pub fn set_allowance(539		collection: &RefungibleHandle<T>,540		sender: &T::CrossAccountId,541		spender: &T::CrossAccountId,542		token: TokenId,543		amount: u128,544	) -> DispatchResult {545		if collection.access == AccessMode::AllowList {546			collection.check_allowlist(sender)?;547			collection.check_allowlist(spender)?;548		}549550		<PalletCommon<T>>::ensure_correct_receiver(spender)?;551552		if <Balance<T>>::get((collection.id, token, sender)) < amount {553			ensure!(554				collection.ignores_owned_amount(sender) && Self::token_exists(collection, token),555				<CommonError<T>>::CantApproveMoreThanOwned556			);557		}558559		// =========560561		Self::set_allowance_unchecked(collection, sender, spender, token, amount);562		Ok(())563	}564565	/// Returns allowance, which should be set after transaction566	fn check_allowed(567		collection: &RefungibleHandle<T>,568		spender: &T::CrossAccountId,569		from: &T::CrossAccountId,570		token: TokenId,571		amount: u128,572		nesting_budget: &dyn Budget,573	) -> Result<Option<u128>, DispatchError> {574		if spender.conv_eq(from) {575			return Ok(None);576		}577		if collection.access == AccessMode::AllowList {578			// `from`, `to` checked in [`transfer`]579			collection.check_allowlist(spender)?;580		}581		if let Some(source) = T::CrossTokenAddressMapping::address_to_token(from) {582			// TODO: should collection owner be allowed to perform this transfer?583			ensure!(584				<PalletStructure<T>>::check_indirectly_owned(585					spender.clone(),586					source.0,587					source.1,588					None,589					nesting_budget590				)?,591				<CommonError<T>>::ApprovedValueTooLow,592			);593			return Ok(None);594		}595		let allowance =596			<Allowance<T>>::get((collection.id, token, from, &spender)).checked_sub(amount);597		if allowance.is_none() {598			ensure!(599				collection.ignores_allowance(spender),600				<CommonError<T>>::ApprovedValueTooLow601			);602		}603		Ok(allowance)604	}605606	pub fn transfer_from(607		collection: &RefungibleHandle<T>,608		spender: &T::CrossAccountId,609		from: &T::CrossAccountId,610		to: &T::CrossAccountId,611		token: TokenId,612		amount: u128,613		nesting_budget: &dyn Budget,614	) -> DispatchResult {615		let allowance =616			Self::check_allowed(collection, spender, from, token, amount, nesting_budget)?;617618		// =========619620		Self::transfer(collection, from, to, token, amount, nesting_budget)?;621		if let Some(allowance) = allowance {622			Self::set_allowance_unchecked(collection, from, spender, token, allowance);623		}624		Ok(())625	}626627	pub fn burn_from(628		collection: &RefungibleHandle<T>,629		spender: &T::CrossAccountId,630		from: &T::CrossAccountId,631		token: TokenId,632		amount: u128,633		nesting_budget: &dyn Budget,634	) -> DispatchResult {635		let allowance =636			Self::check_allowed(collection, spender, from, token, amount, nesting_budget)?;637638		// =========639640		Self::burn(collection, from, token, amount)?;641		if let Some(allowance) = allowance {642			Self::set_allowance_unchecked(collection, from, spender, token, allowance);643		}644		Ok(())645	}646647	pub fn set_variable_metadata(648		collection: &RefungibleHandle<T>,649		sender: &T::CrossAccountId,650		token: TokenId,651		data: BoundedVec<u8, CustomDataLimit>,652	) -> DispatchResult {653		collection.check_can_update_meta(654			sender,655			&T::CrossAccountId::from_sub(collection.owner.clone()),656		)?;657658		let token_data = <TokenData<T>>::get((collection.id, token));659660		// =========661662		<TokenData<T>>::insert(663			(collection.id, token),664			ItemData {665				variable_data: data,666				..token_data667			},668		);669		Ok(())670	}671672	/// Delegated to `create_multiple_items`673	pub fn create_item(674		collection: &RefungibleHandle<T>,675		sender: &T::CrossAccountId,676		data: CreateRefungibleExData<T::CrossAccountId>,677		nesting_budget: &dyn Budget,678	) -> DispatchResult {679		Self::create_multiple_items(collection, sender, vec![data], nesting_budget)680	}681}
after · pallets/refungible/src/lib.rs
1// Copyright 2019-2022 Unique Network (Gibraltar) Ltd.2// This file is part of Unique Network.34// Unique Network is free software: you can redistribute it and/or modify5// it under the terms of the GNU General Public License as published by6// the Free Software Foundation, either version 3 of the License, or7// (at your option) any later version.89// Unique Network is distributed in the hope that it will be useful,10// but WITHOUT ANY WARRANTY; without even the implied warranty of11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the12// GNU General Public License for more details.1314// You should have received a copy of the GNU General Public License15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.1617#![cfg_attr(not(feature = "std"), no_std)]1819use frame_support::{ensure, BoundedVec};20use up_data_structs::{21	AccessMode, CollectionId, CustomDataLimit, MAX_REFUNGIBLE_PIECES, TokenId,22	CreateCollectionData, CreateRefungibleExData, mapping::TokenAddressMapping, budget::Budget,23};24use pallet_evm::account::CrossAccountId;25use pallet_common::{26	Error as CommonError, Event as CommonEvent, Pallet as PalletCommon, CollectionHandle,27	dispatch::CollectionDispatch,28};29use pallet_structure::Pallet as PalletStructure;30use sp_runtime::{ArithmeticError, DispatchError, DispatchResult};31use sp_std::{vec::Vec, vec, collections::btree_map::BTreeMap};32use core::ops::Deref;33use codec::{Encode, Decode, MaxEncodedLen};34use scale_info::TypeInfo;3536pub use pallet::*;37#[cfg(feature = "runtime-benchmarks")]38pub mod benchmarking;39pub mod common;40pub mod erc;41pub mod weights;42pub(crate) type SelfWeightOf<T> = <T as Config>::WeightInfo;4344#[derive(Encode, Decode, Default, TypeInfo, MaxEncodedLen)]45pub struct ItemData {46	pub const_data: BoundedVec<u8, CustomDataLimit>,47	pub variable_data: BoundedVec<u8, CustomDataLimit>,48}4950#[frame_support::pallet]51pub mod pallet {52	use super::*;53	use frame_support::{Blake2_128, Blake2_128Concat, Twox64Concat, pallet_prelude::*, storage::Key};54	use up_data_structs::{CollectionId, TokenId};55	use super::weights::WeightInfo;5657	#[pallet::error]58	pub enum Error<T> {59		/// Not Refungible item data used to mint in Refungible collection.60		NotRefungibleDataUsedToMintFungibleCollectionToken,61		/// Maximum refungibility exceeded62		WrongRefungiblePieces,63		/// Refungible token can't nest other tokens64		RefungibleDisallowsNesting,65		/// Item properties are not allowed66		PropertiesNotAllowed,67	}6869	#[pallet::config]70	pub trait Config:71		frame_system::Config + pallet_common::Config + pallet_structure::Config72	{73		type WeightInfo: WeightInfo;74	}7576	#[pallet::pallet]77	#[pallet::generate_store(pub(super) trait Store)]78	pub struct Pallet<T>(_);7980	#[pallet::storage]81	pub type TokensMinted<T: Config> =82		StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;83	#[pallet::storage]84	pub type TokensBurnt<T: Config> =85		StorageMap<Hasher = Twox64Concat, Key = CollectionId, Value = u32, QueryKind = ValueQuery>;8687	#[pallet::storage]88	pub type TokenData<T: Config> = StorageNMap<89		Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),90		Value = ItemData,91		QueryKind = ValueQuery,92	>;9394	#[pallet::storage]95	pub type TotalSupply<T: Config> = StorageNMap<96		Key = (Key<Twox64Concat, CollectionId>, Key<Twox64Concat, TokenId>),97		Value = u128,98		QueryKind = ValueQuery,99	>;100101	/// Used to enumerate tokens owned by account102	#[pallet::storage]103	pub type Owned<T: Config> = StorageNMap<104		Key = (105			Key<Twox64Concat, CollectionId>,106			Key<Blake2_128Concat, T::CrossAccountId>,107			Key<Twox64Concat, TokenId>,108		),109		Value = bool,110		QueryKind = ValueQuery,111	>;112113	#[pallet::storage]114	pub type AccountBalance<T: Config> = StorageNMap<115		Key = (116			Key<Twox64Concat, CollectionId>,117			// Owner118			Key<Blake2_128Concat, T::CrossAccountId>,119		),120		Value = u32,121		QueryKind = ValueQuery,122	>;123124	#[pallet::storage]125	pub type Balance<T: Config> = StorageNMap<126		Key = (127			Key<Twox64Concat, CollectionId>,128			Key<Twox64Concat, TokenId>,129			// Owner130			Key<Blake2_128Concat, T::CrossAccountId>,131		),132		Value = u128,133		QueryKind = ValueQuery,134	>;135136	#[pallet::storage]137	pub type Allowance<T: Config> = StorageNMap<138		Key = (139			Key<Twox64Concat, CollectionId>,140			Key<Twox64Concat, TokenId>,141			// Owner142			Key<Blake2_128, T::CrossAccountId>,143			// Spender144			Key<Blake2_128Concat, T::CrossAccountId>,145		),146		Value = u128,147		QueryKind = ValueQuery,148	>;149}150151pub struct RefungibleHandle<T: Config>(pallet_common::CollectionHandle<T>);152impl<T: Config> RefungibleHandle<T> {153	pub fn cast(inner: pallet_common::CollectionHandle<T>) -> Self {154		Self(inner)155	}156	pub fn into_inner(self) -> pallet_common::CollectionHandle<T> {157		self.0158	}159}160impl<T: Config> Deref for RefungibleHandle<T> {161	type Target = pallet_common::CollectionHandle<T>;162163	fn deref(&self) -> &Self::Target {164		&self.0165	}166}167168impl<T: Config> Pallet<T> {169	pub fn total_supply(collection: &RefungibleHandle<T>) -> u32 {170		<TokensMinted<T>>::get(collection.id) - <TokensBurnt<T>>::get(collection.id)171	}172	pub fn token_exists(collection: &RefungibleHandle<T>, token: TokenId) -> bool {173		<TotalSupply<T>>::contains_key((collection.id, token))174	}175}176177// unchecked calls skips any permission checks178impl<T: Config> Pallet<T> {179	pub fn init_collection(180		owner: T::AccountId,181		data: CreateCollectionData<T::AccountId>,182	) -> Result<CollectionId, DispatchError> {183		<PalletCommon<T>>::init_collection(owner, data)184	}185	pub fn destroy_collection(186		collection: RefungibleHandle<T>,187		sender: &T::CrossAccountId,188	) -> DispatchResult {189		let id = collection.id;190191		// =========192193		PalletCommon::destroy_collection(collection.0, sender)?;194195		<TokensMinted<T>>::remove(id);196		<TokensBurnt<T>>::remove(id);197		<TokenData<T>>::remove_prefix((id,), None);198		<TotalSupply<T>>::remove_prefix((id,), None);199		<Balance<T>>::remove_prefix((id,), None);200		<Allowance<T>>::remove_prefix((id,), None);201		<Owned<T>>::remove_prefix((id,), None);202		<AccountBalance<T>>::remove_prefix((id,), None);203		Ok(())204	}205206	pub fn burn_token(collection: &RefungibleHandle<T>, token_id: TokenId) -> DispatchResult {207		let burnt = <TokensBurnt<T>>::get(collection.id)208			.checked_add(1)209			.ok_or(ArithmeticError::Overflow)?;210211		<TokensBurnt<T>>::insert(collection.id, burnt);212		<TokenData<T>>::remove((collection.id, token_id));213		<TotalSupply<T>>::remove((collection.id, token_id));214		<Balance<T>>::remove_prefix((collection.id, token_id), None);215		<Allowance<T>>::remove_prefix((collection.id, token_id), None);216		// TODO: ERC721 transfer event217		Ok(())218	}219220	pub fn burn(221		collection: &RefungibleHandle<T>,222		owner: &T::CrossAccountId,223		token: TokenId,224		amount: u128,225	) -> DispatchResult {226		let total_supply = <TotalSupply<T>>::get((collection.id, token))227			.checked_sub(amount)228			.ok_or(<CommonError<T>>::TokenValueTooLow)?;229230		// This was probally last owner of this token?231		if total_supply == 0 {232			// Ensure user actually owns this amount233			ensure!(234				<Balance<T>>::get((collection.id, token, owner)) == amount,235				<CommonError<T>>::TokenValueTooLow236			);237			let account_balance = <AccountBalance<T>>::get((collection.id, owner))238				.checked_sub(1)239				// Should not occur240				.ok_or(ArithmeticError::Underflow)?;241242			// =========243244			<Owned<T>>::remove((collection.id, owner, token));245			<AccountBalance<T>>::insert((collection.id, owner), account_balance);246			Self::burn_token(collection, token)?;247			<PalletCommon<T>>::deposit_event(CommonEvent::ItemDestroyed(248				collection.id,249				token,250				owner.clone(),251				amount,252			));253			return Ok(());254		}255256		let balance = <Balance<T>>::get((collection.id, token, owner))257			.checked_sub(amount)258			.ok_or(<CommonError<T>>::TokenValueTooLow)?;259		let account_balance = if balance == 0 {260			<AccountBalance<T>>::get((collection.id, owner))261				.checked_sub(1)262				// Should not occur263				.ok_or(ArithmeticError::Underflow)?264		} else {265			0266		};267268		// =========269270		if balance == 0 {271			<Owned<T>>::remove((collection.id, owner, token));272			<Balance<T>>::remove((collection.id, token, owner));273			<AccountBalance<T>>::insert((collection.id, owner), account_balance);274		} else {275			<Balance<T>>::insert((collection.id, token, owner), balance);276		}277		<TotalSupply<T>>::insert((collection.id, token), total_supply);278		// TODO: ERC20 transfer event279		<PalletCommon<T>>::deposit_event(CommonEvent::ItemDestroyed(280			collection.id,281			token,282			owner.clone(),283			amount,284		));285		Ok(())286	}287288	pub fn transfer(289		collection: &RefungibleHandle<T>,290		from: &T::CrossAccountId,291		to: &T::CrossAccountId,292		token: TokenId,293		amount: u128,294		nesting_budget: &dyn Budget,295	) -> DispatchResult {296		ensure!(297			collection.limits.transfers_enabled(),298			<CommonError<T>>::TransferNotAllowed299		);300301		if collection.access == AccessMode::AllowList {302			collection.check_allowlist(from)?;303			collection.check_allowlist(to)?;304		}305		<PalletCommon<T>>::ensure_correct_receiver(to)?;306307		let balance_from = <Balance<T>>::get((collection.id, token, from))308			.checked_sub(amount)309			.ok_or(<CommonError<T>>::TokenValueTooLow)?;310		let mut create_target = false;311		let from_to_differ = from != to;312		let balance_to = if from != to {313			let old_balance = <Balance<T>>::get((collection.id, token, to));314			if old_balance == 0 {315				create_target = true;316			}317			Some(318				old_balance319					.checked_add(amount)320					.ok_or(ArithmeticError::Overflow)?,321			)322		} else {323			None324		};325326		let account_balance_from = if balance_from == 0 {327			Some(328				<AccountBalance<T>>::get((collection.id, from))329					.checked_sub(1)330					// Should not occur331					.ok_or(ArithmeticError::Underflow)?,332			)333		} else {334			None335		};336		// Account data is created in token, AccountBalance should be increased337		// But only if from != to as we shouldn't check overflow in this case338		let account_balance_to = if create_target && from_to_differ {339			let account_balance_to = <AccountBalance<T>>::get((collection.id, to))340				.checked_add(1)341				.ok_or(ArithmeticError::Overflow)?;342			ensure!(343				account_balance_to < collection.limits.account_token_ownership_limit(),344				<CommonError<T>>::AccountTokenLimitExceeded,345			);346347			Some(account_balance_to)348		} else {349			None350		};351352		if let Some(target) = T::CrossTokenAddressMapping::address_to_token(to) {353			let handle = <CollectionHandle<T>>::try_get(target.0)?;354			let dispatch = T::CollectionDispatch::dispatch(handle);355			let dispatch = dispatch.as_dyn();356357			dispatch.check_nesting(358				from.clone(),359				(collection.id, token),360				target.1,361				nesting_budget,362			)?;363		}364365		// =========366367		if let Some(balance_to) = balance_to {368			// from != to369			if balance_from == 0 {370				<Balance<T>>::remove((collection.id, token, from));371			} else {372				<Balance<T>>::insert((collection.id, token, from), balance_from);373			}374			<Balance<T>>::insert((collection.id, token, to), balance_to);375			if let Some(account_balance_from) = account_balance_from {376				<AccountBalance<T>>::insert((collection.id, from), account_balance_from);377				<Owned<T>>::remove((collection.id, from, token));378			}379			if let Some(account_balance_to) = account_balance_to {380				<AccountBalance<T>>::insert((collection.id, to), account_balance_to);381				<Owned<T>>::insert((collection.id, to, token), true);382			}383		}384385		// TODO: ERC20 transfer event386		<PalletCommon<T>>::deposit_event(CommonEvent::Transfer(387			collection.id,388			token,389			from.clone(),390			to.clone(),391			amount,392		));393		Ok(())394	}395396	pub fn create_multiple_items(397		collection: &RefungibleHandle<T>,398		sender: &T::CrossAccountId,399		data: Vec<CreateRefungibleExData<T::CrossAccountId>>,400		nesting_budget: &dyn Budget,401	) -> DispatchResult {402		if !collection.is_owner_or_admin(sender) {403			ensure!(404				collection.mint_mode,405				<CommonError<T>>::PublicMintingNotAllowed406			);407			collection.check_allowlist(sender)?;408409			for item in data.iter() {410				for user in item.users.keys() {411					collection.check_allowlist(user)?;412				}413			}414		}415416		for item in data.iter() {417			for (owner, _) in item.users.iter() {418				<PalletCommon<T>>::ensure_correct_receiver(owner)?;419			}420		}421422		// Total pieces per tokens423		let totals = data424			.iter()425			.map(|data| {426				Ok(data427					.users428					.iter()429					.map(|u| u.1)430					.try_fold(0u128, |acc, v| acc.checked_add(*v))431					.ok_or(ArithmeticError::Overflow)?)432			})433			.collect::<Result<Vec<_>, DispatchError>>()?;434		for total in &totals {435			ensure!(436				*total <= MAX_REFUNGIBLE_PIECES,437				<Error<T>>::WrongRefungiblePieces438			);439		}440441		let first_token_id = <TokensMinted<T>>::get(collection.id);442		let tokens_minted = first_token_id443			.checked_add(data.len() as u32)444			.ok_or(ArithmeticError::Overflow)?;445		ensure!(446			tokens_minted < collection.limits.token_limit(),447			<CommonError<T>>::CollectionTokenLimitExceeded448		);449450		let mut balances = BTreeMap::new();451		for data in &data {452			for owner in data.users.keys() {453				let balance = balances454					.entry(owner)455					.or_insert_with(|| <AccountBalance<T>>::get((collection.id, owner)));456				*balance = balance.checked_add(1).ok_or(ArithmeticError::Overflow)?;457458				ensure!(459					*balance <= collection.limits.account_token_ownership_limit(),460					<CommonError<T>>::AccountTokenLimitExceeded,461				);462			}463		}464465		for (i, token) in data.iter().enumerate() {466			let token_id = TokenId(first_token_id + i as u32 + 1);467			for (to, _) in token.users.iter() {468				if let Some(target) = T::CrossTokenAddressMapping::address_to_token(to) {469					let handle = <CollectionHandle<T>>::try_get(target.0)?;470					let dispatch = T::CollectionDispatch::dispatch(handle);471					let dispatch = dispatch.as_dyn();472473					dispatch.check_nesting(474						sender.clone(),475						(collection.id, token_id),476						target.1,477						nesting_budget,478					)?;479				}480			}481		}482483		// =========484485		<TokensMinted<T>>::insert(collection.id, tokens_minted);486		for (account, balance) in balances {487			<AccountBalance<T>>::insert((collection.id, account), balance);488		}489		for (i, token) in data.into_iter().enumerate() {490			let token_id = first_token_id + i as u32 + 1;491			<TotalSupply<T>>::insert((collection.id, token_id), totals[i]);492493			<TokenData<T>>::insert(494				(collection.id, token_id),495				ItemData {496					const_data: token.const_data,497					variable_data: token.variable_data,498				},499			);500			for (user, amount) in token.users.into_iter() {501				if amount == 0 {502					continue;503				}504				<Balance<T>>::insert((collection.id, token_id, &user), amount);505				<Owned<T>>::insert((collection.id, &user, TokenId(token_id)), true);506				// TODO: ERC20 transfer event507				<PalletCommon<T>>::deposit_event(CommonEvent::ItemCreated(508					collection.id,509					TokenId(token_id),510					user,511					amount,512				));513			}514		}515		Ok(())516	}517518	pub fn set_allowance_unchecked(519		collection: &RefungibleHandle<T>,520		sender: &T::CrossAccountId,521		spender: &T::CrossAccountId,522		token: TokenId,523		amount: u128,524	) {525		if amount == 0 {526			<Allowance<T>>::remove((collection.id, token, sender, spender));527		} else {528			<Allowance<T>>::insert((collection.id, token, sender, spender), amount);529		}530		// TODO: ERC20 approval event531		<PalletCommon<T>>::deposit_event(CommonEvent::Approved(532			collection.id,533			token,534			sender.clone(),535			spender.clone(),536			amount,537		))538	}539540	pub fn set_allowance(541		collection: &RefungibleHandle<T>,542		sender: &T::CrossAccountId,543		spender: &T::CrossAccountId,544		token: TokenId,545		amount: u128,546	) -> DispatchResult {547		if collection.access == AccessMode::AllowList {548			collection.check_allowlist(sender)?;549			collection.check_allowlist(spender)?;550		}551552		<PalletCommon<T>>::ensure_correct_receiver(spender)?;553554		if <Balance<T>>::get((collection.id, token, sender)) < amount {555			ensure!(556				collection.ignores_owned_amount(sender) && Self::token_exists(collection, token),557				<CommonError<T>>::CantApproveMoreThanOwned558			);559		}560561		// =========562563		Self::set_allowance_unchecked(collection, sender, spender, token, amount);564		Ok(())565	}566567	/// Returns allowance, which should be set after transaction568	fn check_allowed(569		collection: &RefungibleHandle<T>,570		spender: &T::CrossAccountId,571		from: &T::CrossAccountId,572		token: TokenId,573		amount: u128,574		nesting_budget: &dyn Budget,575	) -> Result<Option<u128>, DispatchError> {576		if spender.conv_eq(from) {577			return Ok(None);578		}579		if collection.access == AccessMode::AllowList {580			// `from`, `to` checked in [`transfer`]581			collection.check_allowlist(spender)?;582		}583		if let Some(source) = T::CrossTokenAddressMapping::address_to_token(from) {584			// TODO: should collection owner be allowed to perform this transfer?585			ensure!(586				<PalletStructure<T>>::check_indirectly_owned(587					spender.clone(),588					source.0,589					source.1,590					None,591					nesting_budget592				)?,593				<CommonError<T>>::ApprovedValueTooLow,594			);595			return Ok(None);596		}597		let allowance =598			<Allowance<T>>::get((collection.id, token, from, &spender)).checked_sub(amount);599		if allowance.is_none() {600			ensure!(601				collection.ignores_allowance(spender),602				<CommonError<T>>::ApprovedValueTooLow603			);604		}605		Ok(allowance)606	}607608	pub fn transfer_from(609		collection: &RefungibleHandle<T>,610		spender: &T::CrossAccountId,611		from: &T::CrossAccountId,612		to: &T::CrossAccountId,613		token: TokenId,614		amount: u128,615		nesting_budget: &dyn Budget,616	) -> DispatchResult {617		let allowance =618			Self::check_allowed(collection, spender, from, token, amount, nesting_budget)?;619620		// =========621622		Self::transfer(collection, from, to, token, amount, nesting_budget)?;623		if let Some(allowance) = allowance {624			Self::set_allowance_unchecked(collection, from, spender, token, allowance);625		}626		Ok(())627	}628629	pub fn burn_from(630		collection: &RefungibleHandle<T>,631		spender: &T::CrossAccountId,632		from: &T::CrossAccountId,633		token: TokenId,634		amount: u128,635		nesting_budget: &dyn Budget,636	) -> DispatchResult {637		let allowance =638			Self::check_allowed(collection, spender, from, token, amount, nesting_budget)?;639640		// =========641642		Self::burn(collection, from, token, amount)?;643		if let Some(allowance) = allowance {644			Self::set_allowance_unchecked(collection, from, spender, token, allowance);645		}646		Ok(())647	}648649	pub fn set_variable_metadata(650		collection: &RefungibleHandle<T>,651		sender: &T::CrossAccountId,652		token: TokenId,653		data: BoundedVec<u8, CustomDataLimit>,654	) -> DispatchResult {655		collection.check_can_update_meta(656			sender,657			&T::CrossAccountId::from_sub(collection.owner.clone()),658		)?;659660		let token_data = <TokenData<T>>::get((collection.id, token));661662		// =========663664		<TokenData<T>>::insert(665			(collection.id, token),666			ItemData {667				variable_data: data,668				..token_data669			},670		);671		Ok(())672	}673674	/// Delegated to `create_multiple_items`675	pub fn create_item(676		collection: &RefungibleHandle<T>,677		sender: &T::CrossAccountId,678		data: CreateRefungibleExData<T::CrossAccountId>,679		nesting_budget: &dyn Budget,680	) -> DispatchResult {681		Self::create_multiple_items(collection, sender, vec![data], nesting_budget)682	}683}
modifiedpallets/refungible/src/weights.rsdiffbeforeafterboth
--- a/pallets/refungible/src/weights.rs
+++ b/pallets/refungible/src/weights.rs
@@ -38,6 +38,7 @@
 	fn create_multiple_items_ex_multiple_owners(b: u32, ) -> Weight;
 	fn burn_item_partial() -> Weight;
 	fn burn_item_fully() -> Weight;
+	fn set_property() -> Weight;
 	fn transfer_normal() -> Weight;
 	fn transfer_creating() -> Weight;
 	fn transfer_removing() -> Weight;
@@ -129,6 +130,12 @@
 			.saturating_add(T::DbWeight::get().reads(4 as Weight))
 			.saturating_add(T::DbWeight::get().writes(6 as Weight))
 	}
+
+	fn set_property() -> Weight {
+		// Error
+		0
+	}
+
 	// Storage: Refungible Balance (r:2 w:2)
 	fn transfer_normal() -> Weight {
 		(19_766_000 as Weight)
@@ -297,6 +304,12 @@
 			.saturating_add(RocksDbWeight::get().reads(4 as Weight))
 			.saturating_add(RocksDbWeight::get().writes(6 as Weight))
 	}
+
+	fn set_property() -> Weight {
+		// Error
+		0
+	}
+
 	// Storage: Refungible Balance (r:2 w:2)
 	fn transfer_normal() -> Weight {
 		(19_766_000 as Weight)
modifiedpallets/unique/src/lib.rsdiffbeforeafterboth
--- a/pallets/unique/src/lib.rs
+++ b/pallets/unique/src/lib.rs
@@ -39,7 +39,7 @@
 	MAX_COLLECTION_NAME_LENGTH, MAX_COLLECTION_DESCRIPTION_LENGTH, MAX_TOKEN_PREFIX_LENGTH,
 	AccessMode, CreateItemData, CollectionLimits, CollectionId, CollectionMode, TokenId,
 	SchemaVersion, SponsorshipState, MetaUpdatePermission, CreateCollectionData, CustomDataLimit,
-	CreateItemExData, budget, CollectionField,
+	CreateItemExData, budget, CollectionField, Property,
 };
 use pallet_evm::account::CrossAccountId;
 use pallet_common::{
modifiedprimitives/data-structs/src/lib.rsdiffbeforeafterboth
--- a/primitives/data-structs/src/lib.rs
+++ b/primitives/data-structs/src/lib.rs
@@ -22,13 +22,14 @@
 };
 use frame_support::{
 	storage::{bounded_btree_map::BoundedBTreeMap, bounded_btree_set::BoundedBTreeSet},
+	traits::Get,
 };
 
 #[cfg(feature = "serde")]
 use serde::{Serialize, Deserialize};
 
 use sp_core::U256;
-use sp_runtime::{ArithmeticError, sp_std::prelude::Vec};
+use sp_runtime::{ArithmeticError, sp_std::prelude::Vec, DispatchError};
 use codec::{Decode, Encode, EncodeLike, MaxEncodedLen};
 use frame_support::{BoundedVec, traits::ConstU32};
 use derivative::Derivative;
@@ -85,6 +86,26 @@
 pub const MAX_COLLECTION_DESCRIPTION_LENGTH: u32 = 256;
 pub const MAX_TOKEN_PREFIX_LENGTH: u32 = 16;
 
+pub const MAX_PROPERTY_KEY_LENGTH: u32 = 256;
+pub const MAX_PROPERTY_VALUE_LENGTH: u32 = 32768;
+pub const MAX_PROPERTIES_PER_ITEM: u32 = 64;
+
+// pub const MAX_PROPERTY_KEYS_OVERALL_LENGTH: u32 = MAX_PROPERTY_KEY_LENGTH * MAX_PROPERTIES_PER_ITEM;
+pub const MAX_COLLECTION_PROPERTIES_SIZE: u32 = 40960;
+pub const MAX_TOKEN_PROPERTIES_SIZE: u32 = 32768;
+
+pub const MAX_COLLECTION_PROPERTIES_ENCODE_LEN: u32 =
+	MAX_PROPERTIES_PER_ITEM * MAX_PROPERTY_KEY_LENGTH + MAX_COLLECTION_PROPERTIES_SIZE;
+
+pub struct MaxPropertiesPermissionsEncodeLen;
+
+impl Get<u32> for MaxPropertiesPermissionsEncodeLen {
+	fn get() -> u32 {
+		MAX_PROPERTIES_PER_ITEM * MAX_PROPERTY_KEY_LENGTH
+			+ <PropertyPermission as MaxEncodedLen>::max_encoded_len() as u32
+	}
+}
+
 /// How much items can be created per single
 /// create_many call
 pub const MAX_ITEMS_PER_BATCH: u32 = 200;
@@ -310,31 +331,32 @@
 	OffchainSchema,
 }
 
-#[derive(Encode, Decode, Clone, PartialEq, TypeInfo, Debug, Derivative, MaxEncodedLen)]
-#[cfg_attr(feature = "serde1", derive(Serialize, Deserialize))]
-#[derivative(Default(bound = ""))]
+#[derive(Encode, Decode, Clone, PartialEq, TypeInfo, Derivative, MaxEncodedLen)]
+#[derivative(Debug, Default(bound = ""))]
 pub struct CreateCollectionData<AccountId> {
 	#[derivative(Default(value = "CollectionMode::NFT"))]
 	pub mode: CollectionMode,
 	pub access: Option<AccessMode>,
-	#[cfg_attr(feature = "serde1", serde(with = "bounded::vec_serde"))]
 	pub name: BoundedVec<u16, ConstU32<MAX_COLLECTION_NAME_LENGTH>>,
-	#[cfg_attr(feature = "serde1", serde(with = "bounded::vec_serde"))]
 	pub description: BoundedVec<u16, ConstU32<MAX_COLLECTION_DESCRIPTION_LENGTH>>,
-	#[cfg_attr(feature = "serde1", serde(with = "bounded::vec_serde"))]
 	pub token_prefix: BoundedVec<u8, ConstU32<MAX_TOKEN_PREFIX_LENGTH>>,
-	#[cfg_attr(feature = "serde1", serde(with = "bounded::vec_serde"))]
 	pub offchain_schema: BoundedVec<u8, ConstU32<OFFCHAIN_SCHEMA_LIMIT>>,
 	pub schema_version: Option<SchemaVersion>,
 	pub pending_sponsor: Option<AccountId>,
 	pub limits: Option<CollectionLimits>,
-	#[cfg_attr(feature = "serde1", serde(with = "bounded::vec_serde"))]
 	pub variable_on_chain_schema: BoundedVec<u8, ConstU32<VARIABLE_ON_CHAIN_SCHEMA_LIMIT>>,
-	#[cfg_attr(feature = "serde1", serde(with = "bounded::vec_serde"))]
 	pub const_on_chain_schema: BoundedVec<u8, ConstU32<CONST_ON_CHAIN_SCHEMA_LIMIT>>,
 	pub meta_update_permission: Option<MetaUpdatePermission>,
+	pub token_property_permissions: CollectionPropertiesPermissionsVec,
+	pub properties: CollectionPropertiesVec,
 }
 
+pub type CollectionPropertiesPermissionsVec =
+	BoundedVec<PropertyKeyPermission, MaxPropertiesPermissionsEncodeLen>;
+
+pub type CollectionPropertiesVec =
+	BoundedVec<Property, ConstU32<MAX_COLLECTION_PROPERTIES_ENCODE_LEN>>;
+
 #[derive(Encode, Decode, Debug, Clone, PartialEq, TypeInfo)]
 #[cfg_attr(feature = "serde1", derive(Serialize, Deserialize))]
 pub struct NftItemType<AccountId> {
@@ -607,3 +629,128 @@
 		0
 	}
 }
+
+pub type PropertyKey = BoundedVec<u8, ConstU32<MAX_PROPERTY_KEY_LENGTH>>;
+pub type PropertyValue = BoundedVec<u8, ConstU32<MAX_PROPERTY_VALUE_LENGTH>>;
+
+#[derive(Encode, Decode, TypeInfo, Debug, MaxEncodedLen, PartialEq, Clone)]
+pub enum PropertyPermission {
+	None,
+	AdminConst,
+	Admin,
+	ItemOwnerConst,
+	ItemOwner,
+	ItemOwnerOrAdmin,
+}
+
+#[derive(Encode, Decode, Debug, TypeInfo, Clone, PartialEq, MaxEncodedLen)]
+pub struct Property {
+	pub key: PropertyKey,
+	pub value: PropertyValue,
+}
+
+#[derive(Encode, Decode, TypeInfo, Debug, MaxEncodedLen, PartialEq, Clone)]
+pub struct PropertyKeyPermission {
+	pub key: PropertyKey,
+	pub permission: PropertyPermission,
+}
+
+pub enum PropertiesError {
+	NoSpaceForProperty,
+	PropertyLimitReached,
+}
+
+impl From<PropertiesError> for DispatchError {
+	fn from(error: PropertiesError) -> Self {
+		match error {
+			PropertiesError::NoSpaceForProperty => DispatchError::Other("no space for property"),
+			PropertiesError::PropertyLimitReached => {
+				DispatchError::Other("property key limit reached")
+			}
+		}
+	}
+}
+
+pub type PropertiesMap =
+	BoundedBTreeMap<PropertyKey, PropertyValue, ConstU32<MAX_PROPERTIES_PER_ITEM>>;
+pub type PropertiesPermissionMap =
+	BoundedBTreeMap<PropertyKey, PropertyPermission, ConstU32<MAX_PROPERTIES_PER_ITEM>>;
+
+#[derive(Encode, Decode, TypeInfo, Clone, PartialEq, MaxEncodedLen)]
+pub struct Properties {
+	map: PropertiesMap,
+	consumed_space: u32,
+	space_limit: u32,
+}
+
+impl Properties {
+	pub fn new(space_limit: u32) -> Self {
+		Self {
+			map: BoundedBTreeMap::new(),
+			consumed_space: 0,
+			space_limit,
+		}
+	}
+
+	pub fn from_collection_props_vec(
+		data: CollectionPropertiesVec,
+	) -> Result<Self, PropertiesError> {
+		let mut props = Self::new(MAX_COLLECTION_PROPERTIES_SIZE);
+
+		for property in data.into_iter() {
+			props.try_change_property(property)?;
+		}
+
+		Ok(props)
+	}
+
+	pub fn try_change_property(&mut self, property: Property) -> Result<(), PropertiesError> {
+		let value_len = property.value.len();
+
+		if self.consumed_space as usize + value_len > self.space_limit as usize {
+			return Err(PropertiesError::NoSpaceForProperty);
+		}
+
+		self.map
+			.try_insert(property.key, property.value)
+			.map_err(|_| PropertiesError::PropertyLimitReached)?;
+
+		self.consumed_space += value_len as u32;
+
+		Ok(())
+	}
+
+	pub fn get_property(&self, key: &PropertyKey) -> Option<&PropertyValue> {
+		self.map.get(key)
+	}
+}
+
+pub struct CollectionProperties;
+
+impl Get<Properties> for CollectionProperties {
+	fn get() -> Properties {
+		Properties::new(MAX_COLLECTION_PROPERTIES_SIZE)
+	}
+}
+
+pub struct TokenProperties;
+
+impl Get<Properties> for TokenProperties {
+	fn get() -> Properties {
+		Properties::new(MAX_TOKEN_PROPERTIES_SIZE)
+	}
+}
+
+// #[cfg(not(feature = "std"))]
+// fn properties_map_debug(_properties: &PropertiesMap, f: &mut sp_std::fmt::Formatter) -> sp_std::fmt::Result {
+// 	write!(f, "<properties>")
+// }
+
+// #[cfg(not(feature = "std"))]
+// fn opt_properties_permissions_map_debug(properties: &Option<PropertiesPermissionMap>, f: &mut sp_std::fmt::Formatter) -> sp_std::fmt::Result {
+// 	if properties.is_some() {
+// 		write!(f, "Some(<properties permissions>)")
+// 	 } else {
+// 		write!(f, "None")
+// 	}
+// }
modifiedprimitives/rpc/src/lib.rsdiffbeforeafterboth
--- a/primitives/rpc/src/lib.rs
+++ b/primitives/rpc/src/lib.rs
@@ -16,7 +16,9 @@
 
 #![cfg_attr(not(feature = "std"), no_std)]
 
-use up_data_structs::{CollectionId, TokenId, RpcCollection, CollectionStats, CollectionLimits};
+use up_data_structs::{
+	CollectionId, TokenId, RpcCollection, CollectionStats, CollectionLimits, Property,
+};
 use sp_std::vec::Vec;
 use codec::Decode;
 use sp_runtime::DispatchError;
modifiedruntime/common/src/weights.rsdiffbeforeafterboth
--- a/runtime/common/src/weights.rs
+++ b/runtime/common/src/weights.rs
@@ -54,6 +54,10 @@
 		dispatch_weight::<T>() + max_weight_of!(burn_item())
 	}
 
+	fn set_property() -> Weight {
+		dispatch_weight::<T>() + max_weight_of!(set_property())
+	}
+
 	fn transfer() -> Weight {
 		dispatch_weight::<T>() + max_weight_of!(transfer())
 	}