git.delta.rocks / unique-network / refs/commits / 65414d643dd4

difftreelog

feat(app-promo) types for `Currency` trait support has been removed & bench fix

PraetorP2023-06-23parent: #c575769.patch.diff
in: master

8 files changed

modifiedCargo.lockdiffbeforeafterboth
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -6129,13 +6129,12 @@
 
 [[package]]
 name = "pallet-app-promotion"
-version = "0.2.0"
+version = "0.2.1"
 dependencies = [
  "frame-benchmarking",
  "frame-support",
  "frame-system",
  "log",
- "pallet-balances",
  "pallet-common",
  "pallet-configuration",
  "pallet-evm",
modifiedpallets/app-promotion/CHANGELOG.mddiffbeforeafterboth
--- a/pallets/app-promotion/CHANGELOG.md
+++ b/pallets/app-promotion/CHANGELOG.md
@@ -3,6 +3,17 @@
 All notable changes to this project will be documented in this file.
 
 <!-- bureaucrate goes here -->
+
+## [0.2.1] - 2023-06-23
+
+### Changed
+
+- Removed types associated with support for `Currency` trait.
+
+### Fixed
+
+- Benchmarks.
+  
 ## [0.2.0] - 2023-05-19
 
 ### Changed
modifiedpallets/app-promotion/Cargo.tomldiffbeforeafterboth
--- a/pallets/app-promotion/Cargo.toml
+++ b/pallets/app-promotion/Cargo.toml
@@ -9,7 +9,7 @@
 license = 'GPLv3'
 name = 'pallet-app-promotion'
 repository = 'https://github.com/UniqueNetwork/unique-chain'
-version = '0.2.0'
+version = '0.2.1'
 
 [package.metadata.docs.rs]
 targets = ['x86_64-unknown-linux-gnu']
@@ -27,7 +27,6 @@
 	'frame-benchmarking/std',
 	'frame-support/std',
 	'frame-system/std',
-	'pallet-balances/std',
 	'pallet-evm/std',
 	'sp-core/std',
 	'sp-runtime/std',
@@ -48,7 +47,7 @@
 frame-benchmarking = { workspace = true, optional = true }
 frame-support = { workspace = true }
 frame-system = { workspace = true }
-pallet-balances = { features = ["insecure_zero_ed"], workspace = true }
+
 pallet-evm = { workspace = true }
 sp-core = { workspace = true }
 sp-runtime = { workspace = true }
modifiedpallets/app-promotion/src/benchmarking.rsdiffbeforeafterboth
--- a/pallets/app-promotion/src/benchmarking.rs
+++ b/pallets/app-promotion/src/benchmarking.rs
@@ -18,7 +18,7 @@
 
 use super::*;
 use crate::Pallet as PromototionPallet;
-
+use frame_support::traits::fungible::Unbalanced;
 use sp_runtime::traits::Bounded;
 
 use frame_benchmarking::{benchmarks, account};
@@ -63,9 +63,9 @@
 
 		(0..b).try_for_each(|index| {
 			let staker = account::<T::AccountId>("staker", index, SEED);
-			<T as Config>::Currency::set_balance(&staker,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
+			<T as Config>::Currency::write_balance(&staker,  Into::<BalanceOf<T>>::into(10_000u128) * T::Nominal::get())?;
 			PromototionPallet::<T>::stake(RawOrigin::Signed(staker.clone()).into(), Into::<BalanceOf<T>>::into(100u128) * T::Nominal::get())?;
-			PromototionPallet::<T>::unstake_all(RawOrigin::Signed(staker.clone()).into())?;
+			PromototionPallet::<T>::unstake_all(RawOrigin::Signed(staker).into())?;
 			Result::<(), sp_runtime::DispatchError>::Ok(())
 		})?;
 		let block_number = <frame_system::Pallet<T>>::current_block_number() + T::PendingInterval::get();
@@ -82,13 +82,14 @@
 		let pallet_admin = account::<T::AccountId>("admin", 1, SEED);
 		let share = Perbill::from_rational(1u32, 20);
 		PromototionPallet::<T>::set_admin_address(RawOrigin::Root.into(), T::CrossAccountId::from_sub(pallet_admin.clone()))?;
-		<T as Config>::Currency::set_balance(&pallet_admin,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
-		<T as Config>::Currency::set_balance(&<T as pallet::Config>::TreasuryAccountId::get(),  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
+		<T as Config>::Currency::write_balance(&pallet_admin,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value())?;
+		<T as Config>::Currency::write_balance(&<T as pallet::Config>::TreasuryAccountId::get(),  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value())?;
 
 		let stakers: Vec<T::AccountId> = (0..b).map(|index| account("staker", index, SEED)).collect();
-		stakers.iter().for_each(|staker| {
-			<T as Config>::Currency::set_balance(&staker,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
-		});
+		stakers.iter().try_for_each(|staker| {
+			<T as Config>::Currency::write_balance(staker,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value())?;
+			Result::<(), sp_runtime::DispatchError>::Ok(())
+		})?;
 		(1..11).try_for_each(|i| {
 			<frame_system::Pallet<T>>::set_block_number(i.into());
 			T::RelayBlockNumberProvider::set_block_number((2*i).into());
@@ -102,7 +103,7 @@
 			Result::<(), sp_runtime::DispatchError>::Ok(())
 		})?;
 
-		let stakes = Staked::<T>::iter_prefix((&stakers[0],)).into_iter().collect::<Vec<_>>();
+		let stakes = Staked::<T>::iter_prefix((&stakers[0],)).collect::<Vec<_>>();
 		assert_eq!(stakes.len(), 10);
 
 		<frame_system::Pallet<T>>::set_block_number(15_000.into());
@@ -112,13 +113,13 @@
 	stake {
 		let caller = account::<T::AccountId>("caller", 0, SEED);
 		let share = Perbill::from_rational(1u32, 10);
-		let _ = <T as Config>::Currency::set_balance(&caller,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
+		let _ = <T as Config>::Currency::write_balance(&caller,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
 	} : _(RawOrigin::Signed(caller.clone()), share * <T as Config>::Currency::total_balance(&caller))
 
 	unstake_all {
 		let caller = account::<T::AccountId>("caller", 0, SEED);
 		let share = Perbill::from_rational(1u32, 20);
-		let _ = <T as Config>::Currency::set_balance(&caller,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
+		let _ = <T as Config>::Currency::write_balance(&caller,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
 		(1..11).map(|i| {
 			// used to change block number
 			<frame_system::Pallet<T>>::set_block_number(i.into());
@@ -133,7 +134,7 @@
 	unstake_partial {
 		let caller = account::<T::AccountId>("caller", 0, SEED);
 		let share = Perbill::from_rational(1u32, 20);
-		let _ = <T as Config>::Currency::set_balance(&caller,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
+		let _ = <T as Config>::Currency::write_balance(&caller,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
 		(1..11).map(|i| {
 			// used to change block number
 			<frame_system::Pallet<T>>::set_block_number(i.into());
@@ -148,19 +149,19 @@
 	sponsor_collection {
 		let pallet_admin = account::<T::AccountId>("admin", 0, SEED);
 		PromototionPallet::<T>::set_admin_address(RawOrigin::Root.into(), T::CrossAccountId::from_sub(pallet_admin.clone()))?;
-		let _ = <T as Config>::Currency::set_balance(&pallet_admin,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
+		let _ = <T as Config>::Currency::write_balance(&pallet_admin,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
 		let caller: T::AccountId = account("caller", 0, SEED);
-		let _ = <T as Config>::Currency::set_balance(&caller,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
-		let collection = create_nft_collection::<T>(caller.clone())?;
+		let _ = <T as Config>::Currency::write_balance(&caller,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
+		let collection = create_nft_collection::<T>(caller)?;
 	} : _(RawOrigin::Signed(pallet_admin.clone()), collection)
 
 	stop_sponsoring_collection {
 		let pallet_admin = account::<T::AccountId>("admin", 0, SEED);
 		PromototionPallet::<T>::set_admin_address(RawOrigin::Root.into(), T::CrossAccountId::from_sub(pallet_admin.clone()))?;
-		let _ = <T as Config>::Currency::set_balance(&pallet_admin,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
+		let _ = <T as Config>::Currency::write_balance(&pallet_admin,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
 		let caller: T::AccountId = account("caller", 0, SEED);
-		let _ = <T as Config>::Currency::set_balance(&caller,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
-		let collection = create_nft_collection::<T>(caller.clone())?;
+		let _ = <T as Config>::Currency::write_balance(&caller,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
+		let collection = create_nft_collection::<T>(caller)?;
 		PromototionPallet::<T>::sponsor_collection(RawOrigin::Signed(pallet_admin.clone()).into(), collection)?;
 	} : _(RawOrigin::Signed(pallet_admin.clone()), collection)
 
@@ -168,9 +169,9 @@
 		let pallet_admin = account::<T::AccountId>("admin", 0, SEED);
 		PromototionPallet::<T>::set_admin_address(RawOrigin::Root.into(), T::CrossAccountId::from_sub(pallet_admin.clone()))?;
 
-		let _ = <T as Config>::Currency::set_balance(&pallet_admin,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
+		let _ = <T as Config>::Currency::write_balance(&pallet_admin,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
 		let address = H160::from_low_u64_be(SEED as u64);
-		let data: Vec<u8> = (0..20 as u8).collect();
+		let data: Vec<u8> = (0..20).collect();
 		<EvmMigrationPallet<T>>::begin(RawOrigin::Root.into(), address)?;
 		<EvmMigrationPallet<T>>::finish(RawOrigin::Root.into(), address, data)?;
 	} : _(RawOrigin::Signed(pallet_admin.clone()), address)
@@ -179,9 +180,9 @@
 		let pallet_admin = account::<T::AccountId>("admin", 0, SEED);
 		PromototionPallet::<T>::set_admin_address(RawOrigin::Root.into(), T::CrossAccountId::from_sub(pallet_admin.clone()))?;
 
-		let _ = <T as Config>::Currency::set_balance(&pallet_admin,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
+		let _ = <T as Config>::Currency::write_balance(&pallet_admin,  Perbill::from_rational(1u32, 2) * BalanceOf::<T>::max_value());
 		let address = H160::from_low_u64_be(SEED as u64);
-		let data: Vec<u8> = (0..20 as u8).collect();
+		let data: Vec<u8> = (0..20).collect();
 		<EvmMigrationPallet<T>>::begin(RawOrigin::Root.into(), address)?;
 		<EvmMigrationPallet<T>>::finish(RawOrigin::Root.into(), address, data)?;
 		PromototionPallet::<T>::sponsor_contract(RawOrigin::Signed(pallet_admin.clone()).into(), address)?;
modifiedpallets/app-promotion/src/lib.rsdiffbeforeafterboth
--- a/pallets/app-promotion/src/lib.rs
+++ b/pallets/app-promotion/src/lib.rs
@@ -53,16 +53,9 @@
 pub mod types;
 pub mod weights;
 
-use sp_std::{
-	vec::{Vec},
-	vec,
-	iter::Sum,
-	borrow::ToOwned,
-	cell::RefCell,
-};
+use sp_std::{vec::Vec, vec, iter::Sum, borrow::ToOwned, cell::RefCell};
 use sp_core::H160;
 use codec::EncodeLike;
-use pallet_balances::BalanceLock;
 pub use types::*;
 
 use up_data_structs::CollectionId;
@@ -70,7 +63,7 @@
 use frame_support::{
 	dispatch::{DispatchResult},
 	traits::{
-		Get, LockableCurrency,
+		Get,
 		tokens::Balance,
 		fungible::{Inspect, InspectFreeze, Mutate, MutateFreeze},
 	},
@@ -86,8 +79,6 @@
 	traits::{BlockNumberProvider, CheckedAdd, CheckedSub, AccountIdConversion, Zero},
 	ArithmeticError, DispatchError,
 };
-
-pub const LOCK_IDENTIFIER: [u8; 8] = *b"appstake";
 
 const PENDING_LIMIT_PER_BLOCK: u32 = 3;
 
@@ -108,12 +99,7 @@
 		frame_system::Config + pallet_evm::Config + pallet_configuration::Config
 	{
 		/// Type to interact with the native token
-		type Currency: MutateFreeze<Self::AccountId>
-			+ Mutate<Self::AccountId>
-			+ ExtendedLockableCurrency<
-				Self::AccountId,
-				Balance = <<Self as Config>::Currency as Inspect<Self::AccountId>>::Balance,
-			>;
+		type Currency: MutateFreeze<Self::AccountId> + Mutate<Self::AccountId>;
 
 		/// Type for interacting with collections
 		type CollectionHandler: CollectionHandler<
@@ -701,48 +687,7 @@
 				}
 				flush_stake()?;
 			}
-
-			Ok(())
-		}
-
-		///  Migrates lock state into freeze one
-		///
-		/// # Permissions
-		///
-		/// * Sudo
-		///
-		///   # Arguments
-		///
-		/// * `origin`: Must be `Root`.
-		/// * `stakers`: Accounts to be upgraded.
-		#[pallet::call_index(9)]
-		#[pallet::weight(T::DbWeight::get().reads_writes(2, 2) * stakers.len() as u64)]
-		pub fn upgrade_accounts(
-			origin: OriginFor<T>,
-			stakers: Vec<T::AccountId>,
-		) -> DispatchResult {
-			ensure_root(origin)?;
 
-			stakers
-				.into_iter()
-				.try_for_each(|s| -> Result<_, DispatchError> {
-					if let Some(BalanceLock { amount, .. }) = Self::get_locked_balance(&s) {
-						if Self::get_frozen_balance(&s).is_some() {
-							return Err(Error::<T>::InconsistencyState.into());
-						}
-
-						<<T as Config>::Currency as LockableCurrency<T::AccountId>>::remove_lock(
-							LOCK_IDENTIFIER,
-							&s,
-						);
-
-						Self::set_freeze_with_result(&s, amount)?;
-						Ok(())
-					} else {
-						Ok(())
-					}
-				})?;
-
 			Ok(())
 		}
 
@@ -756,7 +701,7 @@
 		///
 		/// * `origin`: Must be `Root`.
 		/// * `pending_blocks`: Block numbers that will be processed.
-		#[pallet::call_index(10)]
+		#[pallet::call_index(9)]
 		#[pallet::weight(<T as Config>::WeightInfo::on_initialize(PENDING_LIMIT_PER_BLOCK*pending_blocks.len() as u32))]
 		pub fn force_unstake(
 			origin: OriginFor<T>,
@@ -933,17 +878,6 @@
 				amount,
 			)
 		}
-	}
-
-	/// Returns the balance locked by the pallet for the staker.
-	///
-	/// - `staker`: staker account.
-	pub fn get_locked_balance(
-		staker: impl EncodeLike<T::AccountId>,
-	) -> Option<BalanceLock<BalanceOf<T>>> {
-		<<T as Config>::Currency as ExtendedLockableCurrency<T::AccountId>>::locks(staker)
-			.into_iter()
-			.find(|l| l.id == LOCK_IDENTIFIER)
 	}
 
 	/// Returns the balance frozen by the pallet for the staker.
modifiedpallets/app-promotion/src/types.rsdiffbeforeafterboth
before · pallets/app-promotion/src/types.rs
1use codec::EncodeLike;2use frame_support::{traits::LockableCurrency, WeakBoundedVec, Parameter, dispatch::DispatchResult};34use pallet_balances::{BalanceLock, Config as BalancesConfig, Pallet as PalletBalances};5use pallet_common::CollectionHandle;67use sp_runtime::{DispatchError, Perbill};8use up_data_structs::{CollectionId};9use sp_std::borrow::ToOwned;10use pallet_evm_contract_helpers::{Pallet as EvmHelpersPallet, Config as EvmHelpersConfig};11use pallet_configuration::{AppPromomotionConfigurationOverride};12use sp_core::Get;1314const MAX_NUMBER_PAYOUTS: u8 = 100;15pub(crate) const DEFAULT_NUMBER_PAYOUTS: u8 = 20;1617/// This trait was defined because `LockableCurrency`18/// has no way to know the state of the lock for an account.19pub trait ExtendedLockableCurrency<AccountId: Parameter>: LockableCurrency<AccountId> {20	/// Returns lock balance for an account. Allows to determine the cause of the lock.21	fn locks<KArg>(who: KArg) -> WeakBoundedVec<BalanceLock<Self::Balance>, Self::MaxLocks>22	where23		KArg: EncodeLike<AccountId>;24}2526impl<T: BalancesConfig<I>, I: 'static> ExtendedLockableCurrency<T::AccountId>27	for PalletBalances<T, I>28{29	fn locks<KArg>(who: KArg) -> WeakBoundedVec<BalanceLock<Self::Balance>, Self::MaxLocks>30	where31		KArg: EncodeLike<T::AccountId>,32	{33		Self::locks(who)34	}35}36/// Trait for interacting with collections.37pub trait CollectionHandler {38	type CollectionId;39	type AccountId;4041	/// Sets sponsor for a collection.42	///43	/// - `sponsor_id`: the account of the sponsor-to-be.44	/// - `collection_id`: ID of the modified collection.45	fn set_sponsor(46		sponsor_id: Self::AccountId,47		collection_id: Self::CollectionId,48	) -> DispatchResult;4950	/// Removes sponsor for a collection.51	///52	/// - `collection_id`: ID of the modified collection.53	fn remove_collection_sponsor(collection_id: Self::CollectionId) -> DispatchResult;5455	/// Retuns the current sponsor for a collection if one is set.56	///57	/// - `collection_id`: ID of the collection.58	fn sponsor(collection_id: Self::CollectionId)59		-> Result<Option<Self::AccountId>, DispatchError>;60}6162impl<T: pallet_unique::Config> CollectionHandler for pallet_unique::Pallet<T> {63	type CollectionId = CollectionId;6465	type AccountId = T::AccountId;6667	fn set_sponsor(68		sponsor_id: Self::AccountId,69		collection_id: Self::CollectionId,70	) -> DispatchResult {71		Self::force_set_sponsor(sponsor_id, collection_id)72	}7374	fn remove_collection_sponsor(collection_id: Self::CollectionId) -> DispatchResult {75		Self::force_remove_collection_sponsor(collection_id)76	}7778	fn sponsor(79		collection_id: Self::CollectionId,80	) -> Result<Option<Self::AccountId>, DispatchError> {81		Ok(<CollectionHandle<T>>::try_get(collection_id)?82			.sponsorship83			.sponsor()84			.map(|acc| acc.to_owned()))85	}86}87/// Trait for interacting with contracts.88pub trait ContractHandler {89	type ContractId;90	type AccountId;9192	/// Sets sponsor for a contract.93	///94	/// - `sponsor_id`: the account of the sponsor-to-be.95	/// - `contract_address`: the address of the modified contract.96	fn set_sponsor(97		sponsor_id: Self::AccountId,98		contract_address: Self::ContractId,99	) -> DispatchResult;100101	/// Removes sponsor for a contract.102	///103	/// - `contract_address`: the address of the modified contract.104	fn remove_contract_sponsor(contract_address: Self::ContractId) -> DispatchResult;105106	/// Retuns the current sponsor for a contract if one is set.107	///108	/// - `contract_address`: the contract address.109	fn sponsor(110		contract_address: Self::ContractId,111	) -> Result<Option<Self::AccountId>, DispatchError>;112}113114impl<T: EvmHelpersConfig> ContractHandler for EvmHelpersPallet<T> {115	type ContractId = sp_core::H160;116117	type AccountId = T::CrossAccountId;118119	fn set_sponsor(120		sponsor_id: Self::AccountId,121		contract_address: Self::ContractId,122	) -> DispatchResult {123		Self::force_set_sponsor(contract_address, &sponsor_id)124	}125126	fn remove_contract_sponsor(contract_address: Self::ContractId) -> DispatchResult {127		Self::force_remove_sponsor(contract_address)128	}129130	fn sponsor(131		contract_address: Self::ContractId,132	) -> Result<Option<Self::AccountId>, DispatchError> {133		Ok(Self::get_sponsor(contract_address))134	}135}136pub(crate) struct PalletConfiguration<T: crate::Config> {137	/// In relay blocks.138	pub recalculation_interval: T::BlockNumber,139	/// In parachain blocks.140	pub pending_interval: T::BlockNumber,141	/// Value for `RecalculationInterval` based on 0.05% per 24h.142	pub interval_income: Perbill,143	/// Maximum allowable number of stakers calculated per call of the `app-promotion::PayoutStakers` extrinsic.144	pub max_stakers_per_calculation: u8,145}146impl<T: crate::Config> PalletConfiguration<T> {147	pub fn get() -> Self {148		let config = <AppPromomotionConfigurationOverride<T>>::get();149		Self {150			recalculation_interval: config151				.recalculation_interval152				.unwrap_or_else(T::RecalculationInterval::get),153			pending_interval: config154				.pending_interval155				.unwrap_or_else(T::PendingInterval::get),156			interval_income: config157				.interval_income158				.unwrap_or_else(T::IntervalIncome::get),159			max_stakers_per_calculation: config160				.max_stakers_per_calculation161				.unwrap_or(MAX_NUMBER_PAYOUTS),162		}163	}164}
after · pallets/app-promotion/src/types.rs
1use frame_support::{dispatch::DispatchResult};23use pallet_common::CollectionHandle;45use sp_runtime::{DispatchError, Perbill};6use up_data_structs::{CollectionId};7use sp_std::borrow::ToOwned;8use pallet_evm_contract_helpers::{Pallet as EvmHelpersPallet, Config as EvmHelpersConfig};9use pallet_configuration::{AppPromomotionConfigurationOverride};10use sp_core::Get;1112const MAX_NUMBER_PAYOUTS: u8 = 100;13pub(crate) const DEFAULT_NUMBER_PAYOUTS: u8 = 20;1415/// Trait for interacting with collections.16pub trait CollectionHandler {17	type CollectionId;18	type AccountId;1920	/// Sets sponsor for a collection.21	///22	/// - `sponsor_id`: the account of the sponsor-to-be.23	/// - `collection_id`: ID of the modified collection.24	fn set_sponsor(25		sponsor_id: Self::AccountId,26		collection_id: Self::CollectionId,27	) -> DispatchResult;2829	/// Removes sponsor for a collection.30	///31	/// - `collection_id`: ID of the modified collection.32	fn remove_collection_sponsor(collection_id: Self::CollectionId) -> DispatchResult;3334	/// Retuns the current sponsor for a collection if one is set.35	///36	/// - `collection_id`: ID of the collection.37	fn sponsor(collection_id: Self::CollectionId)38		-> Result<Option<Self::AccountId>, DispatchError>;39}4041impl<T: pallet_unique::Config> CollectionHandler for pallet_unique::Pallet<T> {42	type CollectionId = CollectionId;4344	type AccountId = T::AccountId;4546	fn set_sponsor(47		sponsor_id: Self::AccountId,48		collection_id: Self::CollectionId,49	) -> DispatchResult {50		Self::force_set_sponsor(sponsor_id, collection_id)51	}5253	fn remove_collection_sponsor(collection_id: Self::CollectionId) -> DispatchResult {54		Self::force_remove_collection_sponsor(collection_id)55	}5657	fn sponsor(58		collection_id: Self::CollectionId,59	) -> Result<Option<Self::AccountId>, DispatchError> {60		Ok(<CollectionHandle<T>>::try_get(collection_id)?61			.sponsorship62			.sponsor()63			.map(|acc| acc.to_owned()))64	}65}66/// Trait for interacting with contracts.67pub trait ContractHandler {68	type ContractId;69	type AccountId;7071	/// Sets sponsor for a contract.72	///73	/// - `sponsor_id`: the account of the sponsor-to-be.74	/// - `contract_address`: the address of the modified contract.75	fn set_sponsor(76		sponsor_id: Self::AccountId,77		contract_address: Self::ContractId,78	) -> DispatchResult;7980	/// Removes sponsor for a contract.81	///82	/// - `contract_address`: the address of the modified contract.83	fn remove_contract_sponsor(contract_address: Self::ContractId) -> DispatchResult;8485	/// Retuns the current sponsor for a contract if one is set.86	///87	/// - `contract_address`: the contract address.88	fn sponsor(89		contract_address: Self::ContractId,90	) -> Result<Option<Self::AccountId>, DispatchError>;91}9293impl<T: EvmHelpersConfig> ContractHandler for EvmHelpersPallet<T> {94	type ContractId = sp_core::H160;9596	type AccountId = T::CrossAccountId;9798	fn set_sponsor(99		sponsor_id: Self::AccountId,100		contract_address: Self::ContractId,101	) -> DispatchResult {102		Self::force_set_sponsor(contract_address, &sponsor_id)103	}104105	fn remove_contract_sponsor(contract_address: Self::ContractId) -> DispatchResult {106		Self::force_remove_sponsor(contract_address)107	}108109	fn sponsor(110		contract_address: Self::ContractId,111	) -> Result<Option<Self::AccountId>, DispatchError> {112		Ok(Self::get_sponsor(contract_address))113	}114}115pub(crate) struct PalletConfiguration<T: crate::Config> {116	/// In relay blocks.117	pub recalculation_interval: T::BlockNumber,118	/// In parachain blocks.119	pub pending_interval: T::BlockNumber,120	/// Value for `RecalculationInterval` based on 0.05% per 24h.121	pub interval_income: Perbill,122	/// Maximum allowable number of stakers calculated per call of the `app-promotion::PayoutStakers` extrinsic.123	pub max_stakers_per_calculation: u8,124}125impl<T: crate::Config> PalletConfiguration<T> {126	pub fn get() -> Self {127		let config = <AppPromomotionConfigurationOverride<T>>::get();128		Self {129			recalculation_interval: config130				.recalculation_interval131				.unwrap_or_else(T::RecalculationInterval::get),132			pending_interval: config133				.pending_interval134				.unwrap_or_else(T::PendingInterval::get),135			interval_income: config136				.interval_income137				.unwrap_or_else(T::IntervalIncome::get),138			max_stakers_per_calculation: config139				.max_stakers_per_calculation140				.unwrap_or(MAX_NUMBER_PAYOUTS),141		}142	}143}
modifiedpallets/nonfungible/src/benchmarking.rsdiffbeforeafterboth
--- a/pallets/nonfungible/src/benchmarking.rs
+++ b/pallets/nonfungible/src/benchmarking.rs
@@ -200,7 +200,7 @@
 			value: property_value(),
 		}).collect::<Vec<_>>();
 		let item = create_max_item(&collection, &owner, owner.clone())?;
-	}: {<Pallet<T>>::set_token_properties(&collection, &owner, item, props.into_iter(), false, &Unlimited)?}
+	}: {<Pallet<T>>::set_token_properties(&collection, &owner, item, props.into_iter(), SetPropertyMode::ExistingToken, &Unlimited)?}
 
 	delete_token_properties {
 		let b in 0..MAX_PROPERTIES_PER_ITEM;
@@ -222,7 +222,7 @@
 			value: property_value(),
 		}).collect::<Vec<_>>();
 		let item = create_max_item(&collection, &owner, owner.clone())?;
-		<Pallet<T>>::set_token_properties(&collection, &owner, item, props.into_iter(), false, &Unlimited)?;
+		<Pallet<T>>::set_token_properties(&collection, &owner, item, props.into_iter(), SetPropertyMode::ExistingToken, &Unlimited)?;
 		let to_delete = (0..b).map(|k| property_key(k as usize)).collect::<Vec<_>>();
 	}: {<Pallet<T>>::delete_token_properties(&collection, &owner, item, to_delete.into_iter(), &Unlimited)?}
 
modifiedpallets/refungible/src/benchmarking.rsdiffbeforeafterboth
--- a/pallets/refungible/src/benchmarking.rs
+++ b/pallets/refungible/src/benchmarking.rs
@@ -257,7 +257,7 @@
 			value: property_value(),
 		}).collect::<Vec<_>>();
 		let item = create_max_item(&collection, &owner, [(owner.clone(), 200)])?;
-	}: {<Pallet<T>>::set_token_properties(&collection, &owner, item, props.into_iter(), false, &Unlimited)?}
+	}: {<Pallet<T>>::set_token_properties(&collection, &owner, item, props.into_iter(), SetPropertyMode::ExistingToken, &Unlimited)?}
 
 	delete_token_properties {
 		let b in 0..MAX_PROPERTIES_PER_ITEM;
@@ -279,7 +279,7 @@
 			value: property_value(),
 		}).collect::<Vec<_>>();
 		let item = create_max_item(&collection, &owner, [(owner.clone(), 200)])?;
-		<Pallet<T>>::set_token_properties(&collection, &owner, item, props.into_iter(), false, &Unlimited)?;
+		<Pallet<T>>::set_token_properties(&collection, &owner, item, props.into_iter(), SetPropertyMode::ExistingToken, &Unlimited)?;
 		let to_delete = (0..b).map(|k| property_key(k as usize)).collect::<Vec<_>>();
 	}: {<Pallet<T>>::delete_token_properties(&collection, &owner, item, to_delete.into_iter(), &Unlimited)?}