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

difftreelog

build run benchmarks

Igor Kozyrev2023-02-15parent: #f5be0f5.patch.diff
in: master

10 files changed

modifiedpallets/common/src/weights.rsdiffbeforeafterboth
--- a/pallets/common/src/weights.rs
+++ b/pallets/common/src/weights.rs
@@ -3,7 +3,7 @@
 //! Autogenerated weights for pallet_common
 //!
 //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-01-29, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-02-15, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
 //! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
 
 // Executed Command:
@@ -43,17 +43,17 @@
 impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
 	// Storage: Common CollectionProperties (r:1 w:1)
 	fn set_collection_properties(b: u32, ) -> Weight {
-		Weight::from_ref_time(9_881_000 as u64)
-			// Standard Error: 18_079
-			.saturating_add(Weight::from_ref_time(6_561_011 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(9_293_000 as u64)
+			// Standard Error: 14_275
+			.saturating_add(Weight::from_ref_time(6_172_391 as u64).saturating_mul(b as u64))
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Common CollectionProperties (r:1 w:1)
 	fn delete_collection_properties(b: u32, ) -> Weight {
-		Weight::from_ref_time(9_502_000 as u64)
-			// Standard Error: 67_255
-			.saturating_add(Weight::from_ref_time(22_203_766 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(8_945_000 as u64)
+			// Standard Error: 65_313
+			.saturating_add(Weight::from_ref_time(21_617_763 as u64).saturating_mul(b as u64))
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
@@ -63,17 +63,17 @@
 impl WeightInfo for () {
 	// Storage: Common CollectionProperties (r:1 w:1)
 	fn set_collection_properties(b: u32, ) -> Weight {
-		Weight::from_ref_time(9_881_000 as u64)
-			// Standard Error: 18_079
-			.saturating_add(Weight::from_ref_time(6_561_011 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(9_293_000 as u64)
+			// Standard Error: 14_275
+			.saturating_add(Weight::from_ref_time(6_172_391 as u64).saturating_mul(b as u64))
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Common CollectionProperties (r:1 w:1)
 	fn delete_collection_properties(b: u32, ) -> Weight {
-		Weight::from_ref_time(9_502_000 as u64)
-			// Standard Error: 67_255
-			.saturating_add(Weight::from_ref_time(22_203_766 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(8_945_000 as u64)
+			// Standard Error: 65_313
+			.saturating_add(Weight::from_ref_time(21_617_763 as u64).saturating_mul(b as u64))
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
modifiedpallets/configuration/src/weights.rsdiffbeforeafterboth
before · pallets/configuration/src/weights.rs
1// Template adopted from https://github.com/paritytech/substrate/blob/master/.maintain/frame-weight-template.hbs23//! Autogenerated weights for pallet_configuration4//!5//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev6//! DATE: 2023-01-29, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`7//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 102489// Executed Command:10// target/release/unique-collator11// benchmark12// pallet13// --pallet14// pallet-configuration15// --wasm-execution16// compiled17// --extrinsic18// *19// --template20// .maintain/frame-weight-template.hbs21// --steps=5022// --repeat=8023// --heap-pages=409624// --output=./pallets/configuration/src/weights.rs2526#![cfg_attr(rustfmt, rustfmt_skip)]27#![allow(unused_parens)]28#![allow(unused_imports)]29#![allow(missing_docs)]30#![allow(clippy::unnecessary_cast)]3132use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};33use sp_std::marker::PhantomData;3435/// Weight functions needed for pallet_configuration.36pub trait WeightInfo {37	fn set_weight_to_fee_coefficient_override() -> Weight;38	fn set_min_gas_price_override() -> Weight;39	fn set_xcm_allowed_locations() -> Weight;40	fn set_app_promotion_configuration_override() -> Weight;41	fn set_collator_selection_desired_collators() -> Weight;42	fn set_collator_selection_license_bond() -> Weight;43	fn set_collator_selection_kick_threshold() -> Weight;44}4546/// Weights for pallet_configuration using the Substrate node and recommended hardware.47pub struct SubstrateWeight<T>(PhantomData<T>);48impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {49	// Storage: Configuration WeightToFeeCoefficientOverride (r:0 w:1)50	fn set_weight_to_fee_coefficient_override() -> Weight {51		Weight::from_ref_time(3_865_000 as u64)52			.saturating_add(T::DbWeight::get().writes(1 as u64))53	}54	// Storage: Configuration MinGasPriceOverride (r:0 w:1)55	fn set_min_gas_price_override() -> Weight {56		Weight::from_ref_time(4_221_000 as u64)57			.saturating_add(T::DbWeight::get().writes(1 as u64))58	}59	// Storage: Configuration XcmAllowedLocationsOverride (r:0 w:1)60	fn set_xcm_allowed_locations() -> Weight {61		Weight::from_ref_time(5_329_000 as u64)62			.saturating_add(T::DbWeight::get().writes(1 as u64))63	}64	// Storage: Configuration AppPromomotionConfigurationOverride (r:0 w:1)65	fn set_app_promotion_configuration_override() -> Weight {66		Weight::from_ref_time(5_805_000 as u64)67			.saturating_add(T::DbWeight::get().writes(1 as u64))68	}69	// Storage: Configuration CollatorSelectionDesiredCollatorsOverride (r:0 w:1)70	fn set_collator_selection_desired_collators() -> Weight {71		Weight::from_ref_time(21_590_000 as u64)72			.saturating_add(T::DbWeight::get().writes(1 as u64))73	}74	// Storage: Configuration CollatorSelectionLicenseBondOverride (r:0 w:1)75	fn set_collator_selection_license_bond() -> Weight {76		Weight::from_ref_time(15_141_000 as u64)77			.saturating_add(T::DbWeight::get().writes(1 as u64))78	}79	// Storage: Configuration CollatorSelectionKickThresholdOverride (r:0 w:1)80	fn set_collator_selection_kick_threshold() -> Weight {81		Weight::from_ref_time(12_042_000 as u64)82			.saturating_add(T::DbWeight::get().writes(1 as u64))83	}84}8586// For backwards compatibility and tests87impl WeightInfo for () {88	// Storage: Configuration WeightToFeeCoefficientOverride (r:0 w:1)89	fn set_weight_to_fee_coefficient_override() -> Weight {90		Weight::from_ref_time(3_865_000 as u64)91			.saturating_add(RocksDbWeight::get().writes(1 as u64))92	}93	// Storage: Configuration MinGasPriceOverride (r:0 w:1)94	fn set_min_gas_price_override() -> Weight {95		Weight::from_ref_time(4_221_000 as u64)96			.saturating_add(RocksDbWeight::get().writes(1 as u64))97	}98	// Storage: Configuration XcmAllowedLocationsOverride (r:0 w:1)99	fn set_xcm_allowed_locations() -> Weight {100		Weight::from_ref_time(5_329_000 as u64)101			.saturating_add(RocksDbWeight::get().writes(1 as u64))102	}103	// Storage: Configuration AppPromomotionConfigurationOverride (r:0 w:1)104	fn set_app_promotion_configuration_override() -> Weight {105		Weight::from_ref_time(5_805_000 as u64)106			.saturating_add(RocksDbWeight::get().writes(1 as u64))107	}108	// Storage: Configuration CollatorSelectionDesiredCollatorsOverride (r:0 w:1)109	fn set_collator_selection_desired_collators() -> Weight {110		Weight::from_ref_time(21_590_000 as u64)111			.saturating_add(RocksDbWeight::get().writes(1 as u64))112	}113	// Storage: Configuration CollatorSelectionLicenseBondOverride (r:0 w:1)114	fn set_collator_selection_license_bond() -> Weight {115		Weight::from_ref_time(15_141_000 as u64)116			.saturating_add(RocksDbWeight::get().writes(1 as u64))117	}118	// Storage: Configuration CollatorSelectionKickThresholdOverride (r:0 w:1)119	fn set_collator_selection_kick_threshold() -> Weight {120		Weight::from_ref_time(12_042_000 as u64)121			.saturating_add(RocksDbWeight::get().writes(1 as u64))122	}123}
after · pallets/configuration/src/weights.rs
1// Template adopted from https://github.com/paritytech/substrate/blob/master/.maintain/frame-weight-template.hbs23//! Autogenerated weights for pallet_configuration4//!5//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev6//! DATE: 2023-02-15, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`7//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 102489// Executed Command:10// target/release/unique-collator11// benchmark12// pallet13// --pallet14// pallet-configuration15// --wasm-execution16// compiled17// --extrinsic18// *19// --template20// .maintain/frame-weight-template.hbs21// --steps=5022// --repeat=8023// --heap-pages=409624// --output=./pallets/configuration/src/weights.rs2526#![cfg_attr(rustfmt, rustfmt_skip)]27#![allow(unused_parens)]28#![allow(unused_imports)]29#![allow(missing_docs)]30#![allow(clippy::unnecessary_cast)]3132use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};33use sp_std::marker::PhantomData;3435/// Weight functions needed for pallet_configuration.36pub trait WeightInfo {37	fn set_weight_to_fee_coefficient_override() -> Weight;38	fn set_min_gas_price_override() -> Weight;39	fn set_xcm_allowed_locations() -> Weight;40	fn set_app_promotion_configuration_override() -> Weight;41	fn set_collator_selection_desired_collators() -> Weight;42	fn set_collator_selection_license_bond() -> Weight;43	fn set_collator_selection_kick_threshold() -> Weight;44}4546/// Weights for pallet_configuration using the Substrate node and recommended hardware.47pub struct SubstrateWeight<T>(PhantomData<T>);48impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {49	// Storage: Configuration WeightToFeeCoefficientOverride (r:0 w:1)50	fn set_weight_to_fee_coefficient_override() -> Weight {51		Weight::from_ref_time(3_732_000 as u64)52			.saturating_add(T::DbWeight::get().writes(1 as u64))53	}54	// Storage: Configuration MinGasPriceOverride (r:0 w:1)55	fn set_min_gas_price_override() -> Weight {56		Weight::from_ref_time(3_625_000 as u64)57			.saturating_add(T::DbWeight::get().writes(1 as u64))58	}59	// Storage: Configuration XcmAllowedLocationsOverride (r:0 w:1)60	fn set_xcm_allowed_locations() -> Weight {61		Weight::from_ref_time(3_975_000 as u64)62			.saturating_add(T::DbWeight::get().writes(1 as u64))63	}64	// Storage: Configuration AppPromomotionConfigurationOverride (r:0 w:1)65	fn set_app_promotion_configuration_override() -> Weight {66		Weight::from_ref_time(4_759_000 as u64)67			.saturating_add(T::DbWeight::get().writes(1 as u64))68	}69	// Storage: Configuration CollatorSelectionDesiredCollatorsOverride (r:0 w:1)70	fn set_collator_selection_desired_collators() -> Weight {71		Weight::from_ref_time(18_296_000 as u64)72			.saturating_add(T::DbWeight::get().writes(1 as u64))73	}74	// Storage: Configuration CollatorSelectionLicenseBondOverride (r:0 w:1)75	fn set_collator_selection_license_bond() -> Weight {76		Weight::from_ref_time(14_397_000 as u64)77			.saturating_add(T::DbWeight::get().writes(1 as u64))78	}79	// Storage: Configuration CollatorSelectionKickThresholdOverride (r:0 w:1)80	fn set_collator_selection_kick_threshold() -> Weight {81		Weight::from_ref_time(13_951_000 as u64)82			.saturating_add(T::DbWeight::get().writes(1 as u64))83	}84}8586// For backwards compatibility and tests87impl WeightInfo for () {88	// Storage: Configuration WeightToFeeCoefficientOverride (r:0 w:1)89	fn set_weight_to_fee_coefficient_override() -> Weight {90		Weight::from_ref_time(3_732_000 as u64)91			.saturating_add(RocksDbWeight::get().writes(1 as u64))92	}93	// Storage: Configuration MinGasPriceOverride (r:0 w:1)94	fn set_min_gas_price_override() -> Weight {95		Weight::from_ref_time(3_625_000 as u64)96			.saturating_add(RocksDbWeight::get().writes(1 as u64))97	}98	// Storage: Configuration XcmAllowedLocationsOverride (r:0 w:1)99	fn set_xcm_allowed_locations() -> Weight {100		Weight::from_ref_time(3_975_000 as u64)101			.saturating_add(RocksDbWeight::get().writes(1 as u64))102	}103	// Storage: Configuration AppPromomotionConfigurationOverride (r:0 w:1)104	fn set_app_promotion_configuration_override() -> Weight {105		Weight::from_ref_time(4_759_000 as u64)106			.saturating_add(RocksDbWeight::get().writes(1 as u64))107	}108	// Storage: Configuration CollatorSelectionDesiredCollatorsOverride (r:0 w:1)109	fn set_collator_selection_desired_collators() -> Weight {110		Weight::from_ref_time(18_296_000 as u64)111			.saturating_add(RocksDbWeight::get().writes(1 as u64))112	}113	// Storage: Configuration CollatorSelectionLicenseBondOverride (r:0 w:1)114	fn set_collator_selection_license_bond() -> Weight {115		Weight::from_ref_time(14_397_000 as u64)116			.saturating_add(RocksDbWeight::get().writes(1 as u64))117	}118	// Storage: Configuration CollatorSelectionKickThresholdOverride (r:0 w:1)119	fn set_collator_selection_kick_threshold() -> Weight {120		Weight::from_ref_time(13_951_000 as u64)121			.saturating_add(RocksDbWeight::get().writes(1 as u64))122	}123}
modifiedpallets/evm-migration/src/weights.rsdiffbeforeafterboth
--- a/pallets/evm-migration/src/weights.rs
+++ b/pallets/evm-migration/src/weights.rs
@@ -3,7 +3,7 @@
 //! Autogenerated weights for pallet_evm_migration
 //!
 //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-01-29, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-02-15, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
 //! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
 
 // Executed Command:
@@ -48,35 +48,37 @@
 	// Storage: System Account (r:1 w:0)
 	// Storage: EVM AccountCodes (r:1 w:0)
 	fn begin() -> Weight {
-		Weight::from_ref_time(16_189_000 as u64)
+		Weight::from_ref_time(16_052_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(3 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: EvmMigration MigrationPending (r:1 w:0)
 	// Storage: EVM AccountStorages (r:0 w:1)
 	fn set_data(b: u32, ) -> Weight {
-		Weight::from_ref_time(7_829_947 as u64)
-			// Standard Error: 687
-			.saturating_add(Weight::from_ref_time(968_768 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(9_257_564 as u64)
+			// Standard Error: 1_384
+			.saturating_add(Weight::from_ref_time(939_454 as u64).saturating_mul(b as u64))
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(b as u64)))
 	}
 	// Storage: EvmMigration MigrationPending (r:1 w:1)
 	// Storage: EVM AccountCodes (r:0 w:1)
-	fn finish(_b: u32, ) -> Weight {
-		Weight::from_ref_time(9_559_086 as u64)
+	fn finish(b: u32, ) -> Weight {
+		Weight::from_ref_time(9_832_338 as u64)
+			// Standard Error: 351
+			.saturating_add(Weight::from_ref_time(415 as u64).saturating_mul(b as u64))
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(2 as u64))
 	}
 	fn insert_eth_logs(b: u32, ) -> Weight {
-		Weight::from_ref_time(7_535_186 as u64)
-			// Standard Error: 1_440
-			.saturating_add(Weight::from_ref_time(699_517 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(7_589_210 as u64)
+			// Standard Error: 864
+			.saturating_add(Weight::from_ref_time(688_444 as u64).saturating_mul(b as u64))
 	}
 	fn insert_events(b: u32, ) -> Weight {
-		Weight::from_ref_time(10_612_317 as u64)
-			// Standard Error: 999
-			.saturating_add(Weight::from_ref_time(1_296_893 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(11_531_726 as u64)
+			// Standard Error: 580
+			.saturating_add(Weight::from_ref_time(1_271_608 as u64).saturating_mul(b as u64))
 	}
 }
 
@@ -86,34 +88,36 @@
 	// Storage: System Account (r:1 w:0)
 	// Storage: EVM AccountCodes (r:1 w:0)
 	fn begin() -> Weight {
-		Weight::from_ref_time(16_189_000 as u64)
+		Weight::from_ref_time(16_052_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(3 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: EvmMigration MigrationPending (r:1 w:0)
 	// Storage: EVM AccountStorages (r:0 w:1)
 	fn set_data(b: u32, ) -> Weight {
-		Weight::from_ref_time(7_829_947 as u64)
-			// Standard Error: 687
-			.saturating_add(Weight::from_ref_time(968_768 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(9_257_564 as u64)
+			// Standard Error: 1_384
+			.saturating_add(Weight::from_ref_time(939_454 as u64).saturating_mul(b as u64))
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes((1 as u64).saturating_mul(b as u64)))
 	}
 	// Storage: EvmMigration MigrationPending (r:1 w:1)
 	// Storage: EVM AccountCodes (r:0 w:1)
-	fn finish(_b: u32, ) -> Weight {
-		Weight::from_ref_time(9_559_086 as u64)
+	fn finish(b: u32, ) -> Weight {
+		Weight::from_ref_time(9_832_338 as u64)
+			// Standard Error: 351
+			.saturating_add(Weight::from_ref_time(415 as u64).saturating_mul(b as u64))
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(2 as u64))
 	}
 	fn insert_eth_logs(b: u32, ) -> Weight {
-		Weight::from_ref_time(7_535_186 as u64)
-			// Standard Error: 1_440
-			.saturating_add(Weight::from_ref_time(699_517 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(7_589_210 as u64)
+			// Standard Error: 864
+			.saturating_add(Weight::from_ref_time(688_444 as u64).saturating_mul(b as u64))
 	}
 	fn insert_events(b: u32, ) -> Weight {
-		Weight::from_ref_time(10_612_317 as u64)
-			// Standard Error: 999
-			.saturating_add(Weight::from_ref_time(1_296_893 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(11_531_726 as u64)
+			// Standard Error: 580
+			.saturating_add(Weight::from_ref_time(1_271_608 as u64).saturating_mul(b as u64))
 	}
 }
modifiedpallets/foreign-assets/src/weights.rsdiffbeforeafterboth
--- a/pallets/foreign-assets/src/weights.rs
+++ b/pallets/foreign-assets/src/weights.rs
@@ -3,7 +3,7 @@
 //! Autogenerated weights for pallet_foreign_assets
 //!
 //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-01-29, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-02-15, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
 //! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
 
 // Executed Command:
@@ -53,14 +53,14 @@
 	// Storage: Common CollectionProperties (r:0 w:1)
 	// Storage: Common CollectionById (r:0 w:1)
 	fn register_foreign_asset() -> Weight {
-		Weight::from_ref_time(50_058_000 as u64)
+		Weight::from_ref_time(49_269_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(9 as u64))
 			.saturating_add(T::DbWeight::get().writes(11 as u64))
 	}
 	// Storage: ForeignAssets ForeignAssetLocations (r:1 w:1)
 	// Storage: ForeignAssets AssetMetadatas (r:1 w:1)
 	fn update_foreign_asset() -> Weight {
-		Weight::from_ref_time(22_669_000 as u64)
+		Weight::from_ref_time(21_973_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(2 as u64))
 			.saturating_add(T::DbWeight::get().writes(2 as u64))
 	}
@@ -80,14 +80,14 @@
 	// Storage: Common CollectionProperties (r:0 w:1)
 	// Storage: Common CollectionById (r:0 w:1)
 	fn register_foreign_asset() -> Weight {
-		Weight::from_ref_time(50_058_000 as u64)
+		Weight::from_ref_time(49_269_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(9 as u64))
 			.saturating_add(RocksDbWeight::get().writes(11 as u64))
 	}
 	// Storage: ForeignAssets ForeignAssetLocations (r:1 w:1)
 	// Storage: ForeignAssets AssetMetadatas (r:1 w:1)
 	fn update_foreign_asset() -> Weight {
-		Weight::from_ref_time(22_669_000 as u64)
+		Weight::from_ref_time(21_973_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(2 as u64))
 			.saturating_add(RocksDbWeight::get().writes(2 as u64))
 	}
modifiedpallets/fungible/src/weights.rsdiffbeforeafterboth
--- a/pallets/fungible/src/weights.rs
+++ b/pallets/fungible/src/weights.rs
@@ -3,7 +3,7 @@
 //! Autogenerated weights for pallet_fungible
 //!
 //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-01-29, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-02-15, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
 //! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
 
 // Executed Command:
@@ -50,16 +50,16 @@
 	// Storage: Fungible TotalSupply (r:1 w:1)
 	// Storage: Fungible Balance (r:1 w:1)
 	fn create_item() -> Weight {
-		Weight::from_ref_time(20_606_000 as u64)
+		Weight::from_ref_time(19_423_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(2 as u64))
 			.saturating_add(T::DbWeight::get().writes(2 as u64))
 	}
 	// Storage: Fungible TotalSupply (r:1 w:1)
 	// Storage: Fungible Balance (r:4 w:4)
 	fn create_multiple_items_ex(b: u32, ) -> Weight {
-		Weight::from_ref_time(21_771_237 as u64)
-			// Standard Error: 10_207
-			.saturating_add(Weight::from_ref_time(3_627_533 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(23_426_461 as u64)
+			// Standard Error: 1_942
+			.saturating_add(Weight::from_ref_time(3_459_389 as u64).saturating_mul(b as u64))
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(b as u64)))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
@@ -68,34 +68,34 @@
 	// Storage: Fungible TotalSupply (r:1 w:1)
 	// Storage: Fungible Balance (r:1 w:1)
 	fn burn_item() -> Weight {
-		Weight::from_ref_time(22_468_000 as u64)
+		Weight::from_ref_time(22_600_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(2 as u64))
 			.saturating_add(T::DbWeight::get().writes(2 as u64))
 	}
 	// Storage: Fungible Balance (r:2 w:2)
 	fn transfer() -> Weight {
-		Weight::from_ref_time(23_377_000 as u64)
+		Weight::from_ref_time(24_015_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(2 as u64))
 			.saturating_add(T::DbWeight::get().writes(2 as u64))
 	}
 	// Storage: Fungible Balance (r:1 w:0)
 	// Storage: Fungible Allowance (r:0 w:1)
 	fn approve() -> Weight {
-		Weight::from_ref_time(22_704_000 as u64)
+		Weight::from_ref_time(22_478_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Fungible Balance (r:1 w:0)
 	// Storage: Fungible Allowance (r:0 w:1)
 	fn approve_from() -> Weight {
-		Weight::from_ref_time(22_777_000 as u64)
+		Weight::from_ref_time(22_522_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Fungible Allowance (r:1 w:1)
 	// Storage: Fungible Balance (r:2 w:2)
 	fn transfer_from() -> Weight {
-		Weight::from_ref_time(32_568_000 as u64)
+		Weight::from_ref_time(32_061_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(3 as u64))
 			.saturating_add(T::DbWeight::get().writes(3 as u64))
 	}
@@ -103,7 +103,7 @@
 	// Storage: Fungible TotalSupply (r:1 w:1)
 	// Storage: Fungible Balance (r:1 w:1)
 	fn burn_from() -> Weight {
-		Weight::from_ref_time(32_838_000 as u64)
+		Weight::from_ref_time(32_115_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(3 as u64))
 			.saturating_add(T::DbWeight::get().writes(3 as u64))
 	}
@@ -114,16 +114,16 @@
 	// Storage: Fungible TotalSupply (r:1 w:1)
 	// Storage: Fungible Balance (r:1 w:1)
 	fn create_item() -> Weight {
-		Weight::from_ref_time(20_606_000 as u64)
+		Weight::from_ref_time(19_423_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(2 as u64))
 			.saturating_add(RocksDbWeight::get().writes(2 as u64))
 	}
 	// Storage: Fungible TotalSupply (r:1 w:1)
 	// Storage: Fungible Balance (r:4 w:4)
 	fn create_multiple_items_ex(b: u32, ) -> Weight {
-		Weight::from_ref_time(21_771_237 as u64)
-			// Standard Error: 10_207
-			.saturating_add(Weight::from_ref_time(3_627_533 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(23_426_461 as u64)
+			// Standard Error: 1_942
+			.saturating_add(Weight::from_ref_time(3_459_389 as u64).saturating_mul(b as u64))
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(b as u64)))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
@@ -132,34 +132,34 @@
 	// Storage: Fungible TotalSupply (r:1 w:1)
 	// Storage: Fungible Balance (r:1 w:1)
 	fn burn_item() -> Weight {
-		Weight::from_ref_time(22_468_000 as u64)
+		Weight::from_ref_time(22_600_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(2 as u64))
 			.saturating_add(RocksDbWeight::get().writes(2 as u64))
 	}
 	// Storage: Fungible Balance (r:2 w:2)
 	fn transfer() -> Weight {
-		Weight::from_ref_time(23_377_000 as u64)
+		Weight::from_ref_time(24_015_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(2 as u64))
 			.saturating_add(RocksDbWeight::get().writes(2 as u64))
 	}
 	// Storage: Fungible Balance (r:1 w:0)
 	// Storage: Fungible Allowance (r:0 w:1)
 	fn approve() -> Weight {
-		Weight::from_ref_time(22_704_000 as u64)
+		Weight::from_ref_time(22_478_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Fungible Balance (r:1 w:0)
 	// Storage: Fungible Allowance (r:0 w:1)
 	fn approve_from() -> Weight {
-		Weight::from_ref_time(22_777_000 as u64)
+		Weight::from_ref_time(22_522_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Fungible Allowance (r:1 w:1)
 	// Storage: Fungible Balance (r:2 w:2)
 	fn transfer_from() -> Weight {
-		Weight::from_ref_time(32_568_000 as u64)
+		Weight::from_ref_time(32_061_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(3 as u64))
 			.saturating_add(RocksDbWeight::get().writes(3 as u64))
 	}
@@ -167,7 +167,7 @@
 	// Storage: Fungible TotalSupply (r:1 w:1)
 	// Storage: Fungible Balance (r:1 w:1)
 	fn burn_from() -> Weight {
-		Weight::from_ref_time(32_838_000 as u64)
+		Weight::from_ref_time(32_115_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(3 as u64))
 			.saturating_add(RocksDbWeight::get().writes(3 as u64))
 	}
modifiedpallets/nonfungible/src/weights.rsdiffbeforeafterboth
--- a/pallets/nonfungible/src/weights.rs
+++ b/pallets/nonfungible/src/weights.rs
@@ -3,7 +3,7 @@
 //! Autogenerated weights for pallet_nonfungible
 //!
 //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-01-29, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-02-15, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
 //! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
 
 // Executed Command:
@@ -64,7 +64,7 @@
 	// Storage: Nonfungible TokenData (r:0 w:1)
 	// Storage: Nonfungible Owned (r:0 w:1)
 	fn create_item() -> Weight {
-		Weight::from_ref_time(34_313_000 as u64)
+		Weight::from_ref_time(35_333_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(4 as u64))
 			.saturating_add(T::DbWeight::get().writes(5 as u64))
 	}
@@ -75,9 +75,9 @@
 	// Storage: Nonfungible TokenData (r:0 w:4)
 	// Storage: Nonfungible Owned (r:0 w:4)
 	fn create_multiple_items(b: u32, ) -> Weight {
-		Weight::from_ref_time(19_201_665 as u64)
-			// Standard Error: 4_780
-			.saturating_add(Weight::from_ref_time(7_373_591 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(19_091_371 as u64)
+			// Standard Error: 3_221
+			.saturating_add(Weight::from_ref_time(7_304_849 as u64).saturating_mul(b as u64))
 			.saturating_add(T::DbWeight::get().reads(3 as u64))
 			.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(b as u64)))
 			.saturating_add(T::DbWeight::get().writes(2 as u64))
@@ -90,9 +90,9 @@
 	// Storage: Nonfungible TokenData (r:0 w:4)
 	// Storage: Nonfungible Owned (r:0 w:4)
 	fn create_multiple_items_ex(b: u32, ) -> Weight {
-		Weight::from_ref_time(13_021_971 as u64)
-			// Standard Error: 5_117
-			.saturating_add(Weight::from_ref_time(9_163_935 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(12_655_339 as u64)
+			// Standard Error: 3_655
+			.saturating_add(Weight::from_ref_time(9_051_919 as u64).saturating_mul(b as u64))
 			.saturating_add(T::DbWeight::get().reads(2 as u64))
 			.saturating_add(T::DbWeight::get().reads((2 as u64).saturating_mul(b as u64)))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
@@ -106,7 +106,7 @@
 	// Storage: Nonfungible Owned (r:0 w:1)
 	// Storage: Nonfungible TokenProperties (r:0 w:1)
 	fn burn_item() -> Weight {
-		Weight::from_ref_time(35_727_000 as u64)
+		Weight::from_ref_time(34_068_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(5 as u64))
 			.saturating_add(T::DbWeight::get().writes(5 as u64))
 	}
@@ -118,7 +118,7 @@
 	// Storage: Nonfungible Owned (r:0 w:1)
 	// Storage: Nonfungible TokenProperties (r:0 w:1)
 	fn burn_recursively_self_raw() -> Weight {
-		Weight::from_ref_time(44_618_000 as u64)
+		Weight::from_ref_time(44_840_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(5 as u64))
 			.saturating_add(T::DbWeight::get().writes(5 as u64))
 	}
@@ -131,9 +131,9 @@
 	// Storage: Nonfungible TokenProperties (r:0 w:1)
 	// Storage: Common CollectionById (r:1 w:0)
 	fn burn_recursively_breadth_plus_self_plus_self_per_each_raw(b: u32, ) -> Weight {
-		Weight::from_ref_time(45_095_000 as u64)
-			// Standard Error: 1_034_807
-			.saturating_add(Weight::from_ref_time(215_008_105 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(44_567_000 as u64)
+			// Standard Error: 1_014_743
+			.saturating_add(Weight::from_ref_time(209_619_240 as u64).saturating_mul(b as u64))
 			.saturating_add(T::DbWeight::get().reads(7 as u64))
 			.saturating_add(T::DbWeight::get().reads((4 as u64).saturating_mul(b as u64)))
 			.saturating_add(T::DbWeight::get().writes(6 as u64))
@@ -144,21 +144,21 @@
 	// Storage: Nonfungible Allowance (r:1 w:0)
 	// Storage: Nonfungible Owned (r:0 w:2)
 	fn transfer() -> Weight {
-		Weight::from_ref_time(29_636_000 as u64)
+		Weight::from_ref_time(29_508_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(4 as u64))
 			.saturating_add(T::DbWeight::get().writes(5 as u64))
 	}
 	// Storage: Nonfungible TokenData (r:1 w:0)
 	// Storage: Nonfungible Allowance (r:1 w:1)
 	fn approve() -> Weight {
-		Weight::from_ref_time(22_440_000 as u64)
+		Weight::from_ref_time(22_168_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(2 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Nonfungible TokenData (r:1 w:0)
 	// Storage: Nonfungible Allowance (r:1 w:1)
 	fn approve_from() -> Weight {
-		Weight::from_ref_time(22_519_000 as u64)
+		Weight::from_ref_time(22_063_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(2 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
@@ -167,7 +167,7 @@
 	// Storage: Nonfungible AccountBalance (r:2 w:2)
 	// Storage: Nonfungible Owned (r:0 w:2)
 	fn transfer_from() -> Weight {
-		Weight::from_ref_time(36_354_000 as u64)
+		Weight::from_ref_time(36_386_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(4 as u64))
 			.saturating_add(T::DbWeight::get().writes(6 as u64))
 	}
@@ -179,54 +179,54 @@
 	// Storage: Nonfungible Owned (r:0 w:1)
 	// Storage: Nonfungible TokenProperties (r:0 w:1)
 	fn burn_from() -> Weight {
-		Weight::from_ref_time(42_533_000 as u64)
+		Weight::from_ref_time(42_499_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(5 as u64))
 			.saturating_add(T::DbWeight::get().writes(6 as u64))
 	}
 	// Storage: Common CollectionPropertyPermissions (r:1 w:1)
 	fn set_token_property_permissions(b: u32, ) -> Weight {
-		Weight::from_ref_time(5_189_000 as u64)
-			// Standard Error: 45_637
-			.saturating_add(Weight::from_ref_time(12_760_623 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(5_317_000 as u64)
+			// Standard Error: 42_045
+			.saturating_add(Weight::from_ref_time(12_179_871 as u64).saturating_mul(b as u64))
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Nonfungible TokenProperties (r:1 w:1)
 	// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	fn set_token_properties(b: u32, ) -> Weight {
-		Weight::from_ref_time(22_023_308 as u64)
-			// Standard Error: 10_490
-			.saturating_add(Weight::from_ref_time(6_199_746 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(15_428_000 as u64)
+			// Standard Error: 58_002
+			.saturating_add(Weight::from_ref_time(7_195_842 as u64).saturating_mul(b as u64))
 			.saturating_add(T::DbWeight::get().reads(2 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Nonfungible TokenProperties (r:1 w:1)
 	// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	fn delete_token_properties(b: u32, ) -> Weight {
-		Weight::from_ref_time(15_064_000 as u64)
-			// Standard Error: 70_297
-			.saturating_add(Weight::from_ref_time(22_826_857 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(15_498_000 as u64)
+			// Standard Error: 68_276
+			.saturating_add(Weight::from_ref_time(22_441_281 as u64).saturating_mul(b as u64))
 			.saturating_add(T::DbWeight::get().reads(2 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Nonfungible TokenData (r:1 w:0)
 	fn token_owner() -> Weight {
-		Weight::from_ref_time(6_837_000 as u64)
+		Weight::from_ref_time(7_006_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 	}
 	// Storage: Nonfungible CollectionAllowance (r:0 w:1)
 	fn set_allowance_for_all() -> Weight {
-		Weight::from_ref_time(16_618_000 as u64)
+		Weight::from_ref_time(16_761_000 as u64)
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Nonfungible CollectionAllowance (r:1 w:0)
 	fn allowance_for_all() -> Weight {
-		Weight::from_ref_time(5_430_000 as u64)
+		Weight::from_ref_time(5_577_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 	}
 	// Storage: Nonfungible TokenProperties (r:1 w:1)
 	fn repair_item() -> Weight {
-		Weight::from_ref_time(7_776_000 as u64)
+		Weight::from_ref_time(7_670_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
@@ -241,7 +241,7 @@
 	// Storage: Nonfungible TokenData (r:0 w:1)
 	// Storage: Nonfungible Owned (r:0 w:1)
 	fn create_item() -> Weight {
-		Weight::from_ref_time(34_313_000 as u64)
+		Weight::from_ref_time(35_333_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(4 as u64))
 			.saturating_add(RocksDbWeight::get().writes(5 as u64))
 	}
@@ -252,9 +252,9 @@
 	// Storage: Nonfungible TokenData (r:0 w:4)
 	// Storage: Nonfungible Owned (r:0 w:4)
 	fn create_multiple_items(b: u32, ) -> Weight {
-		Weight::from_ref_time(19_201_665 as u64)
-			// Standard Error: 4_780
-			.saturating_add(Weight::from_ref_time(7_373_591 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(19_091_371 as u64)
+			// Standard Error: 3_221
+			.saturating_add(Weight::from_ref_time(7_304_849 as u64).saturating_mul(b as u64))
 			.saturating_add(RocksDbWeight::get().reads(3 as u64))
 			.saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(b as u64)))
 			.saturating_add(RocksDbWeight::get().writes(2 as u64))
@@ -267,9 +267,9 @@
 	// Storage: Nonfungible TokenData (r:0 w:4)
 	// Storage: Nonfungible Owned (r:0 w:4)
 	fn create_multiple_items_ex(b: u32, ) -> Weight {
-		Weight::from_ref_time(13_021_971 as u64)
-			// Standard Error: 5_117
-			.saturating_add(Weight::from_ref_time(9_163_935 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(12_655_339 as u64)
+			// Standard Error: 3_655
+			.saturating_add(Weight::from_ref_time(9_051_919 as u64).saturating_mul(b as u64))
 			.saturating_add(RocksDbWeight::get().reads(2 as u64))
 			.saturating_add(RocksDbWeight::get().reads((2 as u64).saturating_mul(b as u64)))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
@@ -283,7 +283,7 @@
 	// Storage: Nonfungible Owned (r:0 w:1)
 	// Storage: Nonfungible TokenProperties (r:0 w:1)
 	fn burn_item() -> Weight {
-		Weight::from_ref_time(35_727_000 as u64)
+		Weight::from_ref_time(34_068_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(5 as u64))
 			.saturating_add(RocksDbWeight::get().writes(5 as u64))
 	}
@@ -295,7 +295,7 @@
 	// Storage: Nonfungible Owned (r:0 w:1)
 	// Storage: Nonfungible TokenProperties (r:0 w:1)
 	fn burn_recursively_self_raw() -> Weight {
-		Weight::from_ref_time(44_618_000 as u64)
+		Weight::from_ref_time(44_840_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(5 as u64))
 			.saturating_add(RocksDbWeight::get().writes(5 as u64))
 	}
@@ -308,9 +308,9 @@
 	// Storage: Nonfungible TokenProperties (r:0 w:1)
 	// Storage: Common CollectionById (r:1 w:0)
 	fn burn_recursively_breadth_plus_self_plus_self_per_each_raw(b: u32, ) -> Weight {
-		Weight::from_ref_time(45_095_000 as u64)
-			// Standard Error: 1_034_807
-			.saturating_add(Weight::from_ref_time(215_008_105 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(44_567_000 as u64)
+			// Standard Error: 1_014_743
+			.saturating_add(Weight::from_ref_time(209_619_240 as u64).saturating_mul(b as u64))
 			.saturating_add(RocksDbWeight::get().reads(7 as u64))
 			.saturating_add(RocksDbWeight::get().reads((4 as u64).saturating_mul(b as u64)))
 			.saturating_add(RocksDbWeight::get().writes(6 as u64))
@@ -321,21 +321,21 @@
 	// Storage: Nonfungible Allowance (r:1 w:0)
 	// Storage: Nonfungible Owned (r:0 w:2)
 	fn transfer() -> Weight {
-		Weight::from_ref_time(29_636_000 as u64)
+		Weight::from_ref_time(29_508_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(4 as u64))
 			.saturating_add(RocksDbWeight::get().writes(5 as u64))
 	}
 	// Storage: Nonfungible TokenData (r:1 w:0)
 	// Storage: Nonfungible Allowance (r:1 w:1)
 	fn approve() -> Weight {
-		Weight::from_ref_time(22_440_000 as u64)
+		Weight::from_ref_time(22_168_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(2 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Nonfungible TokenData (r:1 w:0)
 	// Storage: Nonfungible Allowance (r:1 w:1)
 	fn approve_from() -> Weight {
-		Weight::from_ref_time(22_519_000 as u64)
+		Weight::from_ref_time(22_063_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(2 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
@@ -344,7 +344,7 @@
 	// Storage: Nonfungible AccountBalance (r:2 w:2)
 	// Storage: Nonfungible Owned (r:0 w:2)
 	fn transfer_from() -> Weight {
-		Weight::from_ref_time(36_354_000 as u64)
+		Weight::from_ref_time(36_386_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(4 as u64))
 			.saturating_add(RocksDbWeight::get().writes(6 as u64))
 	}
@@ -356,54 +356,54 @@
 	// Storage: Nonfungible Owned (r:0 w:1)
 	// Storage: Nonfungible TokenProperties (r:0 w:1)
 	fn burn_from() -> Weight {
-		Weight::from_ref_time(42_533_000 as u64)
+		Weight::from_ref_time(42_499_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(5 as u64))
 			.saturating_add(RocksDbWeight::get().writes(6 as u64))
 	}
 	// Storage: Common CollectionPropertyPermissions (r:1 w:1)
 	fn set_token_property_permissions(b: u32, ) -> Weight {
-		Weight::from_ref_time(5_189_000 as u64)
-			// Standard Error: 45_637
-			.saturating_add(Weight::from_ref_time(12_760_623 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(5_317_000 as u64)
+			// Standard Error: 42_045
+			.saturating_add(Weight::from_ref_time(12_179_871 as u64).saturating_mul(b as u64))
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Nonfungible TokenProperties (r:1 w:1)
 	// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	fn set_token_properties(b: u32, ) -> Weight {
-		Weight::from_ref_time(22_023_308 as u64)
-			// Standard Error: 10_490
-			.saturating_add(Weight::from_ref_time(6_199_746 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(15_428_000 as u64)
+			// Standard Error: 58_002
+			.saturating_add(Weight::from_ref_time(7_195_842 as u64).saturating_mul(b as u64))
 			.saturating_add(RocksDbWeight::get().reads(2 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Nonfungible TokenProperties (r:1 w:1)
 	// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	fn delete_token_properties(b: u32, ) -> Weight {
-		Weight::from_ref_time(15_064_000 as u64)
-			// Standard Error: 70_297
-			.saturating_add(Weight::from_ref_time(22_826_857 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(15_498_000 as u64)
+			// Standard Error: 68_276
+			.saturating_add(Weight::from_ref_time(22_441_281 as u64).saturating_mul(b as u64))
 			.saturating_add(RocksDbWeight::get().reads(2 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Nonfungible TokenData (r:1 w:0)
 	fn token_owner() -> Weight {
-		Weight::from_ref_time(6_837_000 as u64)
+		Weight::from_ref_time(7_006_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 	}
 	// Storage: Nonfungible CollectionAllowance (r:0 w:1)
 	fn set_allowance_for_all() -> Weight {
-		Weight::from_ref_time(16_618_000 as u64)
+		Weight::from_ref_time(16_761_000 as u64)
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Nonfungible CollectionAllowance (r:1 w:0)
 	fn allowance_for_all() -> Weight {
-		Weight::from_ref_time(5_430_000 as u64)
+		Weight::from_ref_time(5_577_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 	}
 	// Storage: Nonfungible TokenProperties (r:1 w:1)
 	fn repair_item() -> Weight {
-		Weight::from_ref_time(7_776_000 as u64)
+		Weight::from_ref_time(7_670_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
modifiedpallets/refungible/src/weights.rsdiffbeforeafterboth
--- a/pallets/refungible/src/weights.rs
+++ b/pallets/refungible/src/weights.rs
@@ -3,7 +3,7 @@
 //! Autogenerated weights for pallet_refungible
 //!
 //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-01-29, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-02-15, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
 //! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
 
 // Executed Command:
@@ -72,7 +72,7 @@
 	// Storage: Refungible TotalSupply (r:0 w:1)
 	// Storage: Refungible Owned (r:0 w:1)
 	fn create_item() -> Weight {
-		Weight::from_ref_time(39_775_000 as u64)
+		Weight::from_ref_time(39_971_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(4 as u64))
 			.saturating_add(T::DbWeight::get().writes(6 as u64))
 	}
@@ -84,9 +84,9 @@
 	// Storage: Refungible TotalSupply (r:0 w:4)
 	// Storage: Refungible Owned (r:0 w:4)
 	fn create_multiple_items(b: u32, ) -> Weight {
-		Weight::from_ref_time(19_486_095 as u64)
-			// Standard Error: 8_015
-			.saturating_add(Weight::from_ref_time(9_037_181 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(14_049_866 as u64)
+			// Standard Error: 4_015
+			.saturating_add(Weight::from_ref_time(8_984_911 as u64).saturating_mul(b as u64))
 			.saturating_add(T::DbWeight::get().reads(3 as u64))
 			.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(b as u64)))
 			.saturating_add(T::DbWeight::get().writes(2 as u64))
@@ -100,9 +100,9 @@
 	// Storage: Refungible TotalSupply (r:0 w:4)
 	// Storage: Refungible Owned (r:0 w:4)
 	fn create_multiple_items_ex_multiple_items(b: u32, ) -> Weight {
-		Weight::from_ref_time(14_091_538 as u64)
-			// Standard Error: 6_448
-			.saturating_add(Weight::from_ref_time(10_777_780 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(14_893_679 as u64)
+			// Standard Error: 3_571
+			.saturating_add(Weight::from_ref_time(10_611_135 as u64).saturating_mul(b as u64))
 			.saturating_add(T::DbWeight::get().reads(2 as u64))
 			.saturating_add(T::DbWeight::get().reads((2 as u64).saturating_mul(b as u64)))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
@@ -116,9 +116,9 @@
 	// Storage: Refungible Balance (r:0 w:4)
 	// Storage: Refungible Owned (r:0 w:4)
 	fn create_multiple_items_ex_multiple_owners(b: u32, ) -> Weight {
-		Weight::from_ref_time(30_958_687 as u64)
-			// Standard Error: 3_000
-			.saturating_add(Weight::from_ref_time(5_976_114 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(31_075_923 as u64)
+			// Standard Error: 2_118
+			.saturating_add(Weight::from_ref_time(5_829_866 as u64).saturating_mul(b as u64))
 			.saturating_add(T::DbWeight::get().reads(3 as u64))
 			.saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(b as u64)))
 			.saturating_add(T::DbWeight::get().writes(3 as u64))
@@ -129,7 +129,7 @@
 	// Storage: Refungible AccountBalance (r:1 w:1)
 	// Storage: Refungible Owned (r:0 w:1)
 	fn burn_item_partial() -> Weight {
-		Weight::from_ref_time(46_498_000 as u64)
+		Weight::from_ref_time(47_369_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(5 as u64))
 			.saturating_add(T::DbWeight::get().writes(4 as u64))
 	}
@@ -140,14 +140,14 @@
 	// Storage: Refungible Owned (r:0 w:1)
 	// Storage: Refungible TokenProperties (r:0 w:1)
 	fn burn_item_fully() -> Weight {
-		Weight::from_ref_time(42_429_000 as u64)
+		Weight::from_ref_time(41_351_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(4 as u64))
 			.saturating_add(T::DbWeight::get().writes(6 as u64))
 	}
 	// Storage: Refungible Balance (r:2 w:2)
 	// Storage: Refungible TotalSupply (r:1 w:0)
 	fn transfer_normal() -> Weight {
-		Weight::from_ref_time(31_435_000 as u64)
+		Weight::from_ref_time(31_379_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(3 as u64))
 			.saturating_add(T::DbWeight::get().writes(2 as u64))
 	}
@@ -156,7 +156,7 @@
 	// Storage: Refungible TotalSupply (r:1 w:0)
 	// Storage: Refungible Owned (r:0 w:1)
 	fn transfer_creating() -> Weight {
-		Weight::from_ref_time(34_913_000 as u64)
+		Weight::from_ref_time(34_829_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(4 as u64))
 			.saturating_add(T::DbWeight::get().writes(4 as u64))
 	}
@@ -165,7 +165,7 @@
 	// Storage: Refungible TotalSupply (r:1 w:0)
 	// Storage: Refungible Owned (r:0 w:1)
 	fn transfer_removing() -> Weight {
-		Weight::from_ref_time(37_992_000 as u64)
+		Weight::from_ref_time(38_221_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(4 as u64))
 			.saturating_add(T::DbWeight::get().writes(4 as u64))
 	}
@@ -174,21 +174,21 @@
 	// Storage: Refungible TotalSupply (r:1 w:0)
 	// Storage: Refungible Owned (r:0 w:2)
 	fn transfer_creating_removing() -> Weight {
-		Weight::from_ref_time(37_935_000 as u64)
+		Weight::from_ref_time(38_102_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(5 as u64))
 			.saturating_add(T::DbWeight::get().writes(6 as u64))
 	}
 	// Storage: Refungible Balance (r:1 w:0)
 	// Storage: Refungible Allowance (r:0 w:1)
 	fn approve() -> Weight {
-		Weight::from_ref_time(23_900_000 as u64)
+		Weight::from_ref_time(24_217_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Refungible Balance (r:1 w:0)
 	// Storage: Refungible Allowance (r:0 w:1)
 	fn approve_from() -> Weight {
-		Weight::from_ref_time(24_012_000 as u64)
+		Weight::from_ref_time(24_173_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
@@ -196,7 +196,7 @@
 	// Storage: Refungible Balance (r:2 w:2)
 	// Storage: Refungible TotalSupply (r:1 w:0)
 	fn transfer_from_normal() -> Weight {
-		Weight::from_ref_time(40_384_000 as u64)
+		Weight::from_ref_time(40_040_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(4 as u64))
 			.saturating_add(T::DbWeight::get().writes(3 as u64))
 	}
@@ -206,7 +206,7 @@
 	// Storage: Refungible TotalSupply (r:1 w:0)
 	// Storage: Refungible Owned (r:0 w:1)
 	fn transfer_from_creating() -> Weight {
-		Weight::from_ref_time(43_372_000 as u64)
+		Weight::from_ref_time(42_906_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(5 as u64))
 			.saturating_add(T::DbWeight::get().writes(5 as u64))
 	}
@@ -216,7 +216,7 @@
 	// Storage: Refungible TotalSupply (r:1 w:0)
 	// Storage: Refungible Owned (r:0 w:1)
 	fn transfer_from_removing() -> Weight {
-		Weight::from_ref_time(46_470_000 as u64)
+		Weight::from_ref_time(46_112_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(5 as u64))
 			.saturating_add(T::DbWeight::get().writes(5 as u64))
 	}
@@ -226,7 +226,7 @@
 	// Storage: Refungible TotalSupply (r:1 w:0)
 	// Storage: Refungible Owned (r:0 w:2)
 	fn transfer_from_creating_removing() -> Weight {
-		Weight::from_ref_time(46_394_000 as u64)
+		Weight::from_ref_time(45_102_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(6 as u64))
 			.saturating_add(T::DbWeight::get().writes(7 as u64))
 	}
@@ -238,61 +238,61 @@
 	// Storage: Refungible Owned (r:0 w:1)
 	// Storage: Refungible TokenProperties (r:0 w:1)
 	fn burn_from() -> Weight {
-		Weight::from_ref_time(51_957_000 as u64)
+		Weight::from_ref_time(50_573_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(5 as u64))
 			.saturating_add(T::DbWeight::get().writes(7 as u64))
 	}
 	// Storage: Common CollectionPropertyPermissions (r:1 w:1)
 	fn set_token_property_permissions(b: u32, ) -> Weight {
-		Weight::from_ref_time(5_257_000 as u64)
-			// Standard Error: 47_229
-			.saturating_add(Weight::from_ref_time(12_976_974 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(5_349_000 as u64)
+			// Standard Error: 41_409
+			.saturating_add(Weight::from_ref_time(12_216_721 as u64).saturating_mul(b as u64))
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Refungible TokenProperties (r:1 w:1)
 	// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	fn set_token_properties(b: u32, ) -> Weight {
-		Weight::from_ref_time(13_103_140 as u64)
-			// Standard Error: 62_508
-			.saturating_add(Weight::from_ref_time(6_883_577 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(12_947_117 as u64)
+			// Standard Error: 75_487
+			.saturating_add(Weight::from_ref_time(6_809_149 as u64).saturating_mul(b as u64))
 			.saturating_add(T::DbWeight::get().reads(2 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Refungible TokenProperties (r:1 w:1)
 	// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	fn delete_token_properties(b: u32, ) -> Weight {
-		Weight::from_ref_time(15_068_000 as u64)
-			// Standard Error: 70_494
-			.saturating_add(Weight::from_ref_time(22_758_838 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(14_967_000 as u64)
+			// Standard Error: 66_400
+			.saturating_add(Weight::from_ref_time(22_261_821 as u64).saturating_mul(b as u64))
 			.saturating_add(T::DbWeight::get().reads(2 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Refungible TotalSupply (r:1 w:1)
 	// Storage: Refungible Balance (r:1 w:1)
 	fn repartition_item() -> Weight {
-		Weight::from_ref_time(24_640_000 as u64)
+		Weight::from_ref_time(25_823_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(2 as u64))
 			.saturating_add(T::DbWeight::get().writes(2 as u64))
 	}
 	// Storage: Refungible Balance (r:2 w:0)
 	fn token_owner() -> Weight {
-		Weight::from_ref_time(9_634_000 as u64)
+		Weight::from_ref_time(9_445_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(2 as u64))
 	}
 	// Storage: Refungible CollectionAllowance (r:0 w:1)
 	fn set_allowance_for_all() -> Weight {
-		Weight::from_ref_time(17_366_000 as u64)
+		Weight::from_ref_time(17_303_000 as u64)
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Refungible CollectionAllowance (r:1 w:0)
 	fn allowance_for_all() -> Weight {
-		Weight::from_ref_time(5_419_000 as u64)
+		Weight::from_ref_time(5_352_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 	}
 	// Storage: Refungible TokenProperties (r:1 w:1)
 	fn repair_item() -> Weight {
-		Weight::from_ref_time(7_196_000 as u64)
+		Weight::from_ref_time(7_200_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
@@ -308,7 +308,7 @@
 	// Storage: Refungible TotalSupply (r:0 w:1)
 	// Storage: Refungible Owned (r:0 w:1)
 	fn create_item() -> Weight {
-		Weight::from_ref_time(39_775_000 as u64)
+		Weight::from_ref_time(39_971_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(4 as u64))
 			.saturating_add(RocksDbWeight::get().writes(6 as u64))
 	}
@@ -320,9 +320,9 @@
 	// Storage: Refungible TotalSupply (r:0 w:4)
 	// Storage: Refungible Owned (r:0 w:4)
 	fn create_multiple_items(b: u32, ) -> Weight {
-		Weight::from_ref_time(19_486_095 as u64)
-			// Standard Error: 8_015
-			.saturating_add(Weight::from_ref_time(9_037_181 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(14_049_866 as u64)
+			// Standard Error: 4_015
+			.saturating_add(Weight::from_ref_time(8_984_911 as u64).saturating_mul(b as u64))
 			.saturating_add(RocksDbWeight::get().reads(3 as u64))
 			.saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(b as u64)))
 			.saturating_add(RocksDbWeight::get().writes(2 as u64))
@@ -336,9 +336,9 @@
 	// Storage: Refungible TotalSupply (r:0 w:4)
 	// Storage: Refungible Owned (r:0 w:4)
 	fn create_multiple_items_ex_multiple_items(b: u32, ) -> Weight {
-		Weight::from_ref_time(14_091_538 as u64)
-			// Standard Error: 6_448
-			.saturating_add(Weight::from_ref_time(10_777_780 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(14_893_679 as u64)
+			// Standard Error: 3_571
+			.saturating_add(Weight::from_ref_time(10_611_135 as u64).saturating_mul(b as u64))
 			.saturating_add(RocksDbWeight::get().reads(2 as u64))
 			.saturating_add(RocksDbWeight::get().reads((2 as u64).saturating_mul(b as u64)))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
@@ -352,9 +352,9 @@
 	// Storage: Refungible Balance (r:0 w:4)
 	// Storage: Refungible Owned (r:0 w:4)
 	fn create_multiple_items_ex_multiple_owners(b: u32, ) -> Weight {
-		Weight::from_ref_time(30_958_687 as u64)
-			// Standard Error: 3_000
-			.saturating_add(Weight::from_ref_time(5_976_114 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(31_075_923 as u64)
+			// Standard Error: 2_118
+			.saturating_add(Weight::from_ref_time(5_829_866 as u64).saturating_mul(b as u64))
 			.saturating_add(RocksDbWeight::get().reads(3 as u64))
 			.saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(b as u64)))
 			.saturating_add(RocksDbWeight::get().writes(3 as u64))
@@ -365,7 +365,7 @@
 	// Storage: Refungible AccountBalance (r:1 w:1)
 	// Storage: Refungible Owned (r:0 w:1)
 	fn burn_item_partial() -> Weight {
-		Weight::from_ref_time(46_498_000 as u64)
+		Weight::from_ref_time(47_369_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(5 as u64))
 			.saturating_add(RocksDbWeight::get().writes(4 as u64))
 	}
@@ -376,14 +376,14 @@
 	// Storage: Refungible Owned (r:0 w:1)
 	// Storage: Refungible TokenProperties (r:0 w:1)
 	fn burn_item_fully() -> Weight {
-		Weight::from_ref_time(42_429_000 as u64)
+		Weight::from_ref_time(41_351_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(4 as u64))
 			.saturating_add(RocksDbWeight::get().writes(6 as u64))
 	}
 	// Storage: Refungible Balance (r:2 w:2)
 	// Storage: Refungible TotalSupply (r:1 w:0)
 	fn transfer_normal() -> Weight {
-		Weight::from_ref_time(31_435_000 as u64)
+		Weight::from_ref_time(31_379_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(3 as u64))
 			.saturating_add(RocksDbWeight::get().writes(2 as u64))
 	}
@@ -392,7 +392,7 @@
 	// Storage: Refungible TotalSupply (r:1 w:0)
 	// Storage: Refungible Owned (r:0 w:1)
 	fn transfer_creating() -> Weight {
-		Weight::from_ref_time(34_913_000 as u64)
+		Weight::from_ref_time(34_829_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(4 as u64))
 			.saturating_add(RocksDbWeight::get().writes(4 as u64))
 	}
@@ -401,7 +401,7 @@
 	// Storage: Refungible TotalSupply (r:1 w:0)
 	// Storage: Refungible Owned (r:0 w:1)
 	fn transfer_removing() -> Weight {
-		Weight::from_ref_time(37_992_000 as u64)
+		Weight::from_ref_time(38_221_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(4 as u64))
 			.saturating_add(RocksDbWeight::get().writes(4 as u64))
 	}
@@ -410,21 +410,21 @@
 	// Storage: Refungible TotalSupply (r:1 w:0)
 	// Storage: Refungible Owned (r:0 w:2)
 	fn transfer_creating_removing() -> Weight {
-		Weight::from_ref_time(37_935_000 as u64)
+		Weight::from_ref_time(38_102_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(5 as u64))
 			.saturating_add(RocksDbWeight::get().writes(6 as u64))
 	}
 	// Storage: Refungible Balance (r:1 w:0)
 	// Storage: Refungible Allowance (r:0 w:1)
 	fn approve() -> Weight {
-		Weight::from_ref_time(23_900_000 as u64)
+		Weight::from_ref_time(24_217_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Refungible Balance (r:1 w:0)
 	// Storage: Refungible Allowance (r:0 w:1)
 	fn approve_from() -> Weight {
-		Weight::from_ref_time(24_012_000 as u64)
+		Weight::from_ref_time(24_173_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
@@ -432,7 +432,7 @@
 	// Storage: Refungible Balance (r:2 w:2)
 	// Storage: Refungible TotalSupply (r:1 w:0)
 	fn transfer_from_normal() -> Weight {
-		Weight::from_ref_time(40_384_000 as u64)
+		Weight::from_ref_time(40_040_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(4 as u64))
 			.saturating_add(RocksDbWeight::get().writes(3 as u64))
 	}
@@ -442,7 +442,7 @@
 	// Storage: Refungible TotalSupply (r:1 w:0)
 	// Storage: Refungible Owned (r:0 w:1)
 	fn transfer_from_creating() -> Weight {
-		Weight::from_ref_time(43_372_000 as u64)
+		Weight::from_ref_time(42_906_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(5 as u64))
 			.saturating_add(RocksDbWeight::get().writes(5 as u64))
 	}
@@ -452,7 +452,7 @@
 	// Storage: Refungible TotalSupply (r:1 w:0)
 	// Storage: Refungible Owned (r:0 w:1)
 	fn transfer_from_removing() -> Weight {
-		Weight::from_ref_time(46_470_000 as u64)
+		Weight::from_ref_time(46_112_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(5 as u64))
 			.saturating_add(RocksDbWeight::get().writes(5 as u64))
 	}
@@ -462,7 +462,7 @@
 	// Storage: Refungible TotalSupply (r:1 w:0)
 	// Storage: Refungible Owned (r:0 w:2)
 	fn transfer_from_creating_removing() -> Weight {
-		Weight::from_ref_time(46_394_000 as u64)
+		Weight::from_ref_time(45_102_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(6 as u64))
 			.saturating_add(RocksDbWeight::get().writes(7 as u64))
 	}
@@ -474,61 +474,61 @@
 	// Storage: Refungible Owned (r:0 w:1)
 	// Storage: Refungible TokenProperties (r:0 w:1)
 	fn burn_from() -> Weight {
-		Weight::from_ref_time(51_957_000 as u64)
+		Weight::from_ref_time(50_573_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(5 as u64))
 			.saturating_add(RocksDbWeight::get().writes(7 as u64))
 	}
 	// Storage: Common CollectionPropertyPermissions (r:1 w:1)
 	fn set_token_property_permissions(b: u32, ) -> Weight {
-		Weight::from_ref_time(5_257_000 as u64)
-			// Standard Error: 47_229
-			.saturating_add(Weight::from_ref_time(12_976_974 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(5_349_000 as u64)
+			// Standard Error: 41_409
+			.saturating_add(Weight::from_ref_time(12_216_721 as u64).saturating_mul(b as u64))
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Refungible TokenProperties (r:1 w:1)
 	// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	fn set_token_properties(b: u32, ) -> Weight {
-		Weight::from_ref_time(13_103_140 as u64)
-			// Standard Error: 62_508
-			.saturating_add(Weight::from_ref_time(6_883_577 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(12_947_117 as u64)
+			// Standard Error: 75_487
+			.saturating_add(Weight::from_ref_time(6_809_149 as u64).saturating_mul(b as u64))
 			.saturating_add(RocksDbWeight::get().reads(2 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Refungible TokenProperties (r:1 w:1)
 	// Storage: Common CollectionPropertyPermissions (r:1 w:0)
 	fn delete_token_properties(b: u32, ) -> Weight {
-		Weight::from_ref_time(15_068_000 as u64)
-			// Standard Error: 70_494
-			.saturating_add(Weight::from_ref_time(22_758_838 as u64).saturating_mul(b as u64))
+		Weight::from_ref_time(14_967_000 as u64)
+			// Standard Error: 66_400
+			.saturating_add(Weight::from_ref_time(22_261_821 as u64).saturating_mul(b as u64))
 			.saturating_add(RocksDbWeight::get().reads(2 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Refungible TotalSupply (r:1 w:1)
 	// Storage: Refungible Balance (r:1 w:1)
 	fn repartition_item() -> Weight {
-		Weight::from_ref_time(24_640_000 as u64)
+		Weight::from_ref_time(25_823_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(2 as u64))
 			.saturating_add(RocksDbWeight::get().writes(2 as u64))
 	}
 	// Storage: Refungible Balance (r:2 w:0)
 	fn token_owner() -> Weight {
-		Weight::from_ref_time(9_634_000 as u64)
+		Weight::from_ref_time(9_445_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(2 as u64))
 	}
 	// Storage: Refungible CollectionAllowance (r:0 w:1)
 	fn set_allowance_for_all() -> Weight {
-		Weight::from_ref_time(17_366_000 as u64)
+		Weight::from_ref_time(17_303_000 as u64)
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Refungible CollectionAllowance (r:1 w:0)
 	fn allowance_for_all() -> Weight {
-		Weight::from_ref_time(5_419_000 as u64)
+		Weight::from_ref_time(5_352_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 	}
 	// Storage: Refungible TokenProperties (r:1 w:1)
 	fn repair_item() -> Weight {
-		Weight::from_ref_time(7_196_000 as u64)
+		Weight::from_ref_time(7_200_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
modifiedpallets/structure/src/weights.rsdiffbeforeafterboth
--- a/pallets/structure/src/weights.rs
+++ b/pallets/structure/src/weights.rs
@@ -3,7 +3,7 @@
 //! Autogenerated weights for pallet_structure
 //!
 //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-01-29, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-02-15, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
 //! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
 
 // Executed Command:
@@ -43,7 +43,7 @@
 	// Storage: Common CollectionById (r:1 w:0)
 	// Storage: Nonfungible TokenData (r:1 w:0)
 	fn find_parent() -> Weight {
-		Weight::from_ref_time(11_766_000 as u64)
+		Weight::from_ref_time(11_663_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(2 as u64))
 	}
 }
@@ -53,7 +53,7 @@
 	// Storage: Common CollectionById (r:1 w:0)
 	// Storage: Nonfungible TokenData (r:1 w:0)
 	fn find_parent() -> Weight {
-		Weight::from_ref_time(11_766_000 as u64)
+		Weight::from_ref_time(11_663_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(2 as u64))
 	}
 }
modifiedpallets/unique/src/weights.rsdiffbeforeafterboth
--- a/pallets/unique/src/weights.rs
+++ b/pallets/unique/src/weights.rs
@@ -3,7 +3,7 @@
 //! Autogenerated weights for pallet_unique
 //!
 //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
-//! DATE: 2023-01-29, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-02-15, STEPS: `50`, REPEAT: 80, LOW RANGE: `[]`, HIGH RANGE: `[]`
 //! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
 
 // Executed Command:
@@ -59,7 +59,7 @@
 	// Storage: Common CollectionProperties (r:0 w:1)
 	// Storage: Common CollectionById (r:0 w:1)
 	fn create_collection() -> Weight {
-		Weight::from_ref_time(43_527_000 as u64)
+		Weight::from_ref_time(47_681_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(4 as u64))
 			.saturating_add(T::DbWeight::get().writes(6 as u64))
 	}
@@ -71,27 +71,27 @@
 	// Storage: Common AdminAmount (r:0 w:1)
 	// Storage: Common CollectionProperties (r:0 w:1)
 	fn destroy_collection() -> Weight {
-		Weight::from_ref_time(59_528_000 as u64)
+		Weight::from_ref_time(58_371_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(3 as u64))
 			.saturating_add(T::DbWeight::get().writes(6 as u64))
 	}
 	// Storage: Common CollectionById (r:1 w:0)
 	// Storage: Common Allowlist (r:0 w:1)
 	fn add_to_allow_list() -> Weight {
-		Weight::from_ref_time(27_970_000 as u64)
+		Weight::from_ref_time(28_197_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Common CollectionById (r:1 w:0)
 	// Storage: Common Allowlist (r:0 w:1)
 	fn remove_from_allow_list() -> Weight {
-		Weight::from_ref_time(27_736_000 as u64)
+		Weight::from_ref_time(27_782_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Common CollectionById (r:1 w:1)
 	fn change_collection_owner() -> Weight {
-		Weight::from_ref_time(26_991_000 as u64)
+		Weight::from_ref_time(27_100_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
@@ -99,7 +99,7 @@
 	// Storage: Common IsAdmin (r:1 w:1)
 	// Storage: Common AdminAmount (r:1 w:1)
 	fn add_collection_admin() -> Weight {
-		Weight::from_ref_time(30_851_000 as u64)
+		Weight::from_ref_time(31_037_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(3 as u64))
 			.saturating_add(T::DbWeight::get().writes(2 as u64))
 	}
@@ -107,43 +107,43 @@
 	// Storage: Common IsAdmin (r:1 w:1)
 	// Storage: Common AdminAmount (r:1 w:1)
 	fn remove_collection_admin() -> Weight {
-		Weight::from_ref_time(34_432_000 as u64)
+		Weight::from_ref_time(34_543_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(3 as u64))
 			.saturating_add(T::DbWeight::get().writes(2 as u64))
 	}
 	// Storage: Common CollectionById (r:1 w:1)
 	fn set_collection_sponsor() -> Weight {
-		Weight::from_ref_time(26_862_000 as u64)
+		Weight::from_ref_time(27_109_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Common CollectionById (r:1 w:1)
 	fn confirm_sponsorship() -> Weight {
-		Weight::from_ref_time(26_711_000 as u64)
+		Weight::from_ref_time(26_916_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Common CollectionById (r:1 w:1)
 	fn remove_collection_sponsor() -> Weight {
-		Weight::from_ref_time(38_546_000 as u64)
+		Weight::from_ref_time(29_279_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Common CollectionById (r:1 w:1)
 	fn set_transfers_enabled_flag() -> Weight {
-		Weight::from_ref_time(13_251_000 as u64)
+		Weight::from_ref_time(13_064_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Common CollectionById (r:1 w:1)
 	fn set_collection_limits() -> Weight {
-		Weight::from_ref_time(27_754_000 as u64)
+		Weight::from_ref_time(27_442_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
 	// Storage: Common CollectionProperties (r:1 w:1)
 	fn force_repair_collection() -> Weight {
-		Weight::from_ref_time(10_871_000 as u64)
+		Weight::from_ref_time(10_730_000 as u64)
 			.saturating_add(T::DbWeight::get().reads(1 as u64))
 			.saturating_add(T::DbWeight::get().writes(1 as u64))
 	}
@@ -158,7 +158,7 @@
 	// Storage: Common CollectionProperties (r:0 w:1)
 	// Storage: Common CollectionById (r:0 w:1)
 	fn create_collection() -> Weight {
-		Weight::from_ref_time(43_527_000 as u64)
+		Weight::from_ref_time(47_681_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(4 as u64))
 			.saturating_add(RocksDbWeight::get().writes(6 as u64))
 	}
@@ -170,27 +170,27 @@
 	// Storage: Common AdminAmount (r:0 w:1)
 	// Storage: Common CollectionProperties (r:0 w:1)
 	fn destroy_collection() -> Weight {
-		Weight::from_ref_time(59_528_000 as u64)
+		Weight::from_ref_time(58_371_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(3 as u64))
 			.saturating_add(RocksDbWeight::get().writes(6 as u64))
 	}
 	// Storage: Common CollectionById (r:1 w:0)
 	// Storage: Common Allowlist (r:0 w:1)
 	fn add_to_allow_list() -> Weight {
-		Weight::from_ref_time(27_970_000 as u64)
+		Weight::from_ref_time(28_197_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Common CollectionById (r:1 w:0)
 	// Storage: Common Allowlist (r:0 w:1)
 	fn remove_from_allow_list() -> Weight {
-		Weight::from_ref_time(27_736_000 as u64)
+		Weight::from_ref_time(27_782_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Common CollectionById (r:1 w:1)
 	fn change_collection_owner() -> Weight {
-		Weight::from_ref_time(26_991_000 as u64)
+		Weight::from_ref_time(27_100_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
@@ -198,7 +198,7 @@
 	// Storage: Common IsAdmin (r:1 w:1)
 	// Storage: Common AdminAmount (r:1 w:1)
 	fn add_collection_admin() -> Weight {
-		Weight::from_ref_time(30_851_000 as u64)
+		Weight::from_ref_time(31_037_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(3 as u64))
 			.saturating_add(RocksDbWeight::get().writes(2 as u64))
 	}
@@ -206,43 +206,43 @@
 	// Storage: Common IsAdmin (r:1 w:1)
 	// Storage: Common AdminAmount (r:1 w:1)
 	fn remove_collection_admin() -> Weight {
-		Weight::from_ref_time(34_432_000 as u64)
+		Weight::from_ref_time(34_543_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(3 as u64))
 			.saturating_add(RocksDbWeight::get().writes(2 as u64))
 	}
 	// Storage: Common CollectionById (r:1 w:1)
 	fn set_collection_sponsor() -> Weight {
-		Weight::from_ref_time(26_862_000 as u64)
+		Weight::from_ref_time(27_109_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Common CollectionById (r:1 w:1)
 	fn confirm_sponsorship() -> Weight {
-		Weight::from_ref_time(26_711_000 as u64)
+		Weight::from_ref_time(26_916_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Common CollectionById (r:1 w:1)
 	fn remove_collection_sponsor() -> Weight {
-		Weight::from_ref_time(38_546_000 as u64)
+		Weight::from_ref_time(29_279_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Common CollectionById (r:1 w:1)
 	fn set_transfers_enabled_flag() -> Weight {
-		Weight::from_ref_time(13_251_000 as u64)
+		Weight::from_ref_time(13_064_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Common CollectionById (r:1 w:1)
 	fn set_collection_limits() -> Weight {
-		Weight::from_ref_time(27_754_000 as u64)
+		Weight::from_ref_time(27_442_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
 	// Storage: Common CollectionProperties (r:1 w:1)
 	fn force_repair_collection() -> Weight {
-		Weight::from_ref_time(10_871_000 as u64)
+		Weight::from_ref_time(10_730_000 as u64)
 			.saturating_add(RocksDbWeight::get().reads(1 as u64))
 			.saturating_add(RocksDbWeight::get().writes(1 as u64))
 	}
modifiedprimitives/common/src/constants.rsdiffbeforeafterboth
--- a/primitives/common/src/constants.rs
+++ b/primitives/common/src/constants.rs
@@ -52,10 +52,10 @@
 pub const SESSION_LENGTH: BlockNumber = HOURS;
 
 // Targeting 0.1 UNQ per transfer
-pub const WEIGHT_TO_FEE_COEFF: u64 = /*<weight2fee>*/77_233_712_036_439_751/*</weight2fee>*/;
+pub const WEIGHT_TO_FEE_COEFF: u64 = /*<weight2fee>*/77_246_728_691_397_557/*</weight2fee>*/;
 
 // Targeting 0.15 UNQ per transfer via ETH
-pub const MIN_GAS_PRICE: u64 = /*<mingasprice>*/1_016_956_047_159/*</mingasprice>*/;
+pub const MIN_GAS_PRICE: u64 = /*<mingasprice>*/1_017_135_340_028/*</mingasprice>*/;
 
 /// We assume that ~10% of the block weight is consumed by `on_initalize` handlers.
 /// This is used to limit the maximal weight of a single extrinsic.