difftreelog
chore repeat temporary nft/rft benches
in: master
2 files changed
pallets/nonfungible/src/weights.rsdiffbeforeafterboth1// Template adopted from https://github.com/paritytech/substrate/blob/master/.maintain/frame-weight-template.hbs23//! Autogenerated weights for pallet_nonfungible4//!5//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev6//! DATE: 2023-09-26, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`7//! WORST CASE MAP SIZE: `1000000`8//! HOSTNAME: `hearthstone`, CPU: `AMD Ryzen 9 7950X3D 16-Core Processor`9//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 10241011// Executed Command:12// target/release/unique-collator13// benchmark14// pallet15// --pallet16// pallet-nonfungible17// --wasm-execution18// compiled19// --extrinsic20// *21// --template=.maintain/frame-weight-template.hbs22// --steps=5023// --repeat=8024// --heap-pages=409625// --output=./pallets/nonfungible/src/weights.rs2627#![cfg_attr(rustfmt, rustfmt_skip)]28#![allow(unused_parens)]29#![allow(unused_imports)]3031use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};32use sp_std::marker::PhantomData;3334/// Weight functions needed for pallet_nonfungible.35pub trait WeightInfo {36 fn create_item() -> Weight;37 fn create_multiple_items(b: u32, ) -> Weight;38 fn create_multiple_items_ex(b: u32, ) -> Weight;39 fn burn_item() -> Weight;40 fn burn_recursively_self_raw() -> Weight;41 fn burn_recursively_breadth_plus_self_plus_self_per_each_raw(b: u32, ) -> Weight;42 fn transfer_raw() -> Weight;43 fn approve() -> Weight;44 fn approve_from() -> Weight;45 fn check_allowed_raw() -> Weight;46 fn burn_from() -> Weight;47 fn set_token_property_permissions(b: u32, ) -> Weight;48 fn set_token_properties(b: u32, ) -> Weight;49 fn reset_token_properties(b: u32, ) -> Weight;50 fn delete_token_properties(b: u32, ) -> Weight;51 fn token_owner() -> Weight;52 fn set_allowance_for_all() -> Weight;53 fn allowance_for_all() -> Weight;54 fn repair_item() -> Weight;55}5657/// Weights for pallet_nonfungible using the Substrate node and recommended hardware.58pub struct SubstrateWeight<T>(PhantomData<T>);59impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {60 /// Storage: Nonfungible TokensMinted (r:1 w:1)61 /// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)62 /// Storage: Nonfungible AccountBalance (r:1 w:1)63 /// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)64 /// Storage: Nonfungible TokenData (r:0 w:1)65 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)66 /// Storage: Nonfungible Owned (r:0 w:1)67 /// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)68 fn create_item() -> Weight {69 // Proof Size summary in bytes:70 // Measured: `142`71 // Estimated: `3530`72 // Minimum execution time: 6_680_000 picoseconds.73 Weight::from_parts(6_910_000, 3530)74 .saturating_add(T::DbWeight::get().reads(2_u64))75 .saturating_add(T::DbWeight::get().writes(4_u64))76 }77 /// Storage: Nonfungible TokensMinted (r:1 w:1)78 /// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)79 /// Storage: Nonfungible AccountBalance (r:1 w:1)80 /// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)81 /// Storage: Nonfungible TokenData (r:0 w:200)82 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)83 /// Storage: Nonfungible Owned (r:0 w:200)84 /// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)85 /// The range of component `b` is `[0, 200]`.86 fn create_multiple_items(b: u32, ) -> Weight {87 // Proof Size summary in bytes:88 // Measured: `142`89 // Estimated: `3530`90 // Minimum execution time: 2_120_000 picoseconds.91 Weight::from_parts(2_190_000, 3530)92 // Standard Error: 1_17593 .saturating_add(Weight::from_parts(3_053_846, 0).saturating_mul(b.into()))94 .saturating_add(T::DbWeight::get().reads(2_u64))95 .saturating_add(T::DbWeight::get().writes(2_u64))96 .saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(b.into())))97 }98 /// Storage: Nonfungible TokensMinted (r:1 w:1)99 /// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)100 /// Storage: Nonfungible AccountBalance (r:200 w:200)101 /// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)102 /// Storage: Nonfungible TokenData (r:0 w:200)103 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)104 /// Storage: Nonfungible Owned (r:0 w:200)105 /// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)106 /// The range of component `b` is `[0, 200]`.107 fn create_multiple_items_ex(b: u32, ) -> Weight {108 // Proof Size summary in bytes:109 // Measured: `142`110 // Estimated: `3481 + b * (2540 ±0)`111 // Minimum execution time: 2_210_000 picoseconds.112 Weight::from_parts(2_280_000, 3481)113 // Standard Error: 1_618114 .saturating_add(Weight::from_parts(4_308_375, 0).saturating_mul(b.into()))115 .saturating_add(T::DbWeight::get().reads(1_u64))116 .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into())))117 .saturating_add(T::DbWeight::get().writes(1_u64))118 .saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(b.into())))119 .saturating_add(Weight::from_parts(0, 2540).saturating_mul(b.into()))120 }121 /// Storage: Nonfungible TokenData (r:1 w:1)122 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)123 /// Storage: Nonfungible TokenChildren (r:1 w:0)124 /// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)125 /// Storage: Nonfungible TokensBurnt (r:1 w:1)126 /// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)127 /// Storage: Nonfungible AccountBalance (r:1 w:1)128 /// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)129 /// Storage: Nonfungible Allowance (r:1 w:0)130 /// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)131 /// Storage: Nonfungible Owned (r:0 w:1)132 /// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)133 /// Storage: Nonfungible TokenProperties (r:0 w:1)134 /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)135 fn burn_item() -> Weight {136 // Proof Size summary in bytes:137 // Measured: `380`138 // Estimated: `3530`139 // Minimum execution time: 13_270_000 picoseconds.140 Weight::from_parts(13_559_000, 3530)141 .saturating_add(T::DbWeight::get().reads(5_u64))142 .saturating_add(T::DbWeight::get().writes(5_u64))143 }144 /// Storage: Nonfungible TokenChildren (r:1 w:0)145 /// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)146 /// Storage: Nonfungible TokenData (r:1 w:1)147 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)148 /// Storage: Nonfungible TokensBurnt (r:1 w:1)149 /// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)150 /// Storage: Nonfungible AccountBalance (r:1 w:1)151 /// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)152 /// Storage: Nonfungible Allowance (r:1 w:0)153 /// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)154 /// Storage: Nonfungible Owned (r:0 w:1)155 /// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)156 /// Storage: Nonfungible TokenProperties (r:0 w:1)157 /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)158 fn burn_recursively_self_raw() -> Weight {159 // Proof Size summary in bytes:160 // Measured: `380`161 // Estimated: `3530`162 // Minimum execution time: 16_680_000 picoseconds.163 Weight::from_parts(17_260_000, 3530)164 .saturating_add(T::DbWeight::get().reads(5_u64))165 .saturating_add(T::DbWeight::get().writes(5_u64))166 }167 /// Storage: Nonfungible TokenChildren (r:401 w:200)168 /// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)169 /// Storage: Common CollectionById (r:1 w:0)170 /// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)171 /// Storage: Nonfungible TokenData (r:201 w:201)172 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)173 /// Storage: Nonfungible TokensBurnt (r:1 w:1)174 /// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)175 /// Storage: Nonfungible AccountBalance (r:2 w:2)176 /// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)177 /// Storage: Nonfungible Allowance (r:201 w:0)178 /// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)179 /// Storage: Nonfungible Owned (r:0 w:201)180 /// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)181 /// Storage: Nonfungible TokenProperties (r:0 w:201)182 /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)183 /// The range of component `b` is `[0, 200]`.184 fn burn_recursively_breadth_plus_self_plus_self_per_each_raw(b: u32, ) -> Weight {185 // Proof Size summary in bytes:186 // Measured: `1500 + b * (58 ±0)`187 // Estimated: `5874 + b * (5032 ±0)`188 // Minimum execution time: 16_630_000 picoseconds.189 Weight::from_parts(17_030_000, 5874)190 // Standard Error: 137_617191 .saturating_add(Weight::from_parts(47_437_920, 0).saturating_mul(b.into()))192 .saturating_add(T::DbWeight::get().reads(7_u64))193 .saturating_add(T::DbWeight::get().reads((4_u64).saturating_mul(b.into())))194 .saturating_add(T::DbWeight::get().writes(6_u64))195 .saturating_add(T::DbWeight::get().writes((4_u64).saturating_mul(b.into())))196 .saturating_add(Weight::from_parts(0, 5032).saturating_mul(b.into()))197 }198 /// Storage: Nonfungible TokenData (r:1 w:1)199 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)200 /// Storage: Nonfungible AccountBalance (r:2 w:2)201 /// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)202 /// Storage: Nonfungible Allowance (r:1 w:0)203 /// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)204 /// Storage: Nonfungible Owned (r:0 w:2)205 /// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)206 fn transfer_raw() -> Weight {207 // Proof Size summary in bytes:208 // Measured: `380`209 // Estimated: `6070`210 // Minimum execution time: 10_200_000 picoseconds.211 Weight::from_parts(10_490_000, 6070)212 .saturating_add(T::DbWeight::get().reads(4_u64))213 .saturating_add(T::DbWeight::get().writes(5_u64))214 }215 /// Storage: Nonfungible TokenData (r:1 w:0)216 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)217 /// Storage: Nonfungible Allowance (r:1 w:1)218 /// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)219 fn approve() -> Weight {220 // Proof Size summary in bytes:221 // Measured: `326`222 // Estimated: `3522`223 // Minimum execution time: 5_730_000 picoseconds.224 Weight::from_parts(5_980_000, 3522)225 .saturating_add(T::DbWeight::get().reads(2_u64))226 .saturating_add(T::DbWeight::get().writes(1_u64))227 }228 /// Storage: Nonfungible TokenData (r:1 w:0)229 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)230 /// Storage: Nonfungible Allowance (r:1 w:1)231 /// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)232 fn approve_from() -> Weight {233 // Proof Size summary in bytes:234 // Measured: `313`235 // Estimated: `3522`236 // Minimum execution time: 5_760_000 picoseconds.237 Weight::from_parts(5_990_000, 3522)238 .saturating_add(T::DbWeight::get().reads(2_u64))239 .saturating_add(T::DbWeight::get().writes(1_u64))240 }241 /// Storage: Nonfungible Allowance (r:1 w:0)242 /// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)243 fn check_allowed_raw() -> Weight {244 // Proof Size summary in bytes:245 // Measured: `362`246 // Estimated: `3522`247 // Minimum execution time: 3_270_000 picoseconds.248 Weight::from_parts(3_440_000, 3522)249 .saturating_add(T::DbWeight::get().reads(1_u64))250 }251 /// Storage: Nonfungible Allowance (r:1 w:1)252 /// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)253 /// Storage: Nonfungible TokenData (r:1 w:1)254 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)255 /// Storage: Nonfungible TokenChildren (r:1 w:0)256 /// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)257 /// Storage: Nonfungible TokensBurnt (r:1 w:1)258 /// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)259 /// Storage: Nonfungible AccountBalance (r:1 w:1)260 /// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)261 /// Storage: Nonfungible Owned (r:0 w:1)262 /// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)263 /// Storage: Nonfungible TokenProperties (r:0 w:1)264 /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)265 fn burn_from() -> Weight {266 // Proof Size summary in bytes:267 // Measured: `463`268 // Estimated: `3530`269 // Minimum execution time: 16_770_000 picoseconds.270 Weight::from_parts(17_150_000, 3530)271 .saturating_add(T::DbWeight::get().reads(5_u64))272 .saturating_add(T::DbWeight::get().writes(6_u64))273 }274 /// Storage: Common CollectionPropertyPermissions (r:1 w:1)275 /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)276 /// The range of component `b` is `[0, 64]`.277 fn set_token_property_permissions(b: u32, ) -> Weight {278 // Proof Size summary in bytes:279 // Measured: `314`280 // Estimated: `20191`281 // Minimum execution time: 870_000 picoseconds.282 Weight::from_parts(910_000, 20191)283 // Standard Error: 37_993284 .saturating_add(Weight::from_parts(8_947_342, 0).saturating_mul(b.into()))285 .saturating_add(T::DbWeight::get().reads(1_u64))286 .saturating_add(T::DbWeight::get().writes(1_u64))287 }288 /// Storage: Nonfungible TokenProperties (r:1 w:1)289 /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)290 /// Storage: Common CollectionPropertyPermissions (r:1 w:0)291 /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)292 /// Storage: Nonfungible TokenData (r:1 w:0)293 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)294 /// The range of component `b` is `[0, 64]`.295 fn set_token_properties(b: u32, ) -> Weight {296 // Proof Size summary in bytes:297 // Measured: `640 + b * (261 ±0)`298 // Estimated: `36269`299 // Minimum execution time: 2_570_000 picoseconds.300 Weight::from_parts(10_787_333, 36269)301 // Standard Error: 7_619302 .saturating_add(Weight::from_parts(2_939_955, 0).saturating_mul(b.into()))303 .saturating_add(T::DbWeight::get().reads(3_u64))304 .saturating_add(T::DbWeight::get().writes(1_u64))305 }306 /// Storage: Common CollectionPropertyPermissions (r:1 w:0)307 /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)308 /// Storage: Nonfungible TokenProperties (r:0 w:1)309 /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)310 /// The range of component `b` is `[0, 64]`.311 fn reset_token_properties(b: u32, ) -> Weight {312 // Proof Size summary in bytes:313 // Measured: `317 + b * (261 ±0)`314 // Estimated: `20191`315 // Minimum execution time: 530_000 picoseconds.316 Weight::from_parts(5_572_362, 20191)317 // Standard Error: 6_997318 .saturating_add(Weight::from_parts(2_986_451, 0).saturating_mul(b.into()))319 .saturating_add(T::DbWeight::get().reads(1_u64))320 .saturating_add(T::DbWeight::get().writes(1_u64))321 }322 /// Storage: Nonfungible TokenProperties (r:1 w:1)323 /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)324 /// Storage: Common CollectionPropertyPermissions (r:1 w:0)325 /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)326 /// Storage: Nonfungible TokenData (r:1 w:0)327 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)328 /// The range of component `b` is `[0, 64]`.329 fn delete_token_properties(b: u32, ) -> Weight {330 // Proof Size summary in bytes:331 // Measured: `699 + b * (33291 ±0)`332 // Estimated: `36269`333 // Minimum execution time: 2_580_000 picoseconds.334 Weight::from_parts(2_640_000, 36269)335 // Standard Error: 25_713336 .saturating_add(Weight::from_parts(9_667_974, 0).saturating_mul(b.into()))337 .saturating_add(T::DbWeight::get().reads(3_u64))338 .saturating_add(T::DbWeight::get().writes(1_u64))339 }340 /// Storage: Nonfungible TokenData (r:1 w:0)341 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)342 fn token_owner() -> Weight {343 // Proof Size summary in bytes:344 // Measured: `326`345 // Estimated: `3522`346 // Minimum execution time: 2_910_000 picoseconds.347 Weight::from_parts(3_020_000, 3522)348 .saturating_add(T::DbWeight::get().reads(1_u64))349 }350 /// Storage: Nonfungible CollectionAllowance (r:0 w:1)351 /// Proof: Nonfungible CollectionAllowance (max_values: None, max_size: Some(111), added: 2586, mode: MaxEncodedLen)352 fn set_allowance_for_all() -> Weight {353 // Proof Size summary in bytes:354 // Measured: `0`355 // Estimated: `0`356 // Minimum execution time: 2_510_000 picoseconds.357 Weight::from_parts(2_660_000, 0)358 .saturating_add(T::DbWeight::get().writes(1_u64))359 }360 /// Storage: Nonfungible CollectionAllowance (r:1 w:0)361 /// Proof: Nonfungible CollectionAllowance (max_values: None, max_size: Some(111), added: 2586, mode: MaxEncodedLen)362 fn allowance_for_all() -> Weight {363 // Proof Size summary in bytes:364 // Measured: `142`365 // Estimated: `3576`366 // Minimum execution time: 1_860_000 picoseconds.367 Weight::from_parts(2_010_000, 3576)368 .saturating_add(T::DbWeight::get().reads(1_u64))369 }370 /// Storage: Nonfungible TokenProperties (r:1 w:1)371 /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)372 fn repair_item() -> Weight {373 // Proof Size summary in bytes:374 // Measured: `279`375 // Estimated: `36269`376 // Minimum execution time: 2_220_000 picoseconds.377 Weight::from_parts(2_350_000, 36269)378 .saturating_add(T::DbWeight::get().reads(1_u64))379 .saturating_add(T::DbWeight::get().writes(1_u64))380 }381}382383// For backwards compatibility and tests384impl WeightInfo for () {385 /// Storage: Nonfungible TokensMinted (r:1 w:1)386 /// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)387 /// Storage: Nonfungible AccountBalance (r:1 w:1)388 /// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)389 /// Storage: Nonfungible TokenData (r:0 w:1)390 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)391 /// Storage: Nonfungible Owned (r:0 w:1)392 /// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)393 fn create_item() -> Weight {394 // Proof Size summary in bytes:395 // Measured: `142`396 // Estimated: `3530`397 // Minimum execution time: 6_680_000 picoseconds.398 Weight::from_parts(6_910_000, 3530)399 .saturating_add(RocksDbWeight::get().reads(2_u64))400 .saturating_add(RocksDbWeight::get().writes(4_u64))401 }402 /// Storage: Nonfungible TokensMinted (r:1 w:1)403 /// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)404 /// Storage: Nonfungible AccountBalance (r:1 w:1)405 /// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)406 /// Storage: Nonfungible TokenData (r:0 w:200)407 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)408 /// Storage: Nonfungible Owned (r:0 w:200)409 /// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)410 /// The range of component `b` is `[0, 200]`.411 fn create_multiple_items(b: u32, ) -> Weight {412 // Proof Size summary in bytes:413 // Measured: `142`414 // Estimated: `3530`415 // Minimum execution time: 2_120_000 picoseconds.416 Weight::from_parts(2_190_000, 3530)417 // Standard Error: 1_175418 .saturating_add(Weight::from_parts(3_053_846, 0).saturating_mul(b.into()))419 .saturating_add(RocksDbWeight::get().reads(2_u64))420 .saturating_add(RocksDbWeight::get().writes(2_u64))421 .saturating_add(RocksDbWeight::get().writes((2_u64).saturating_mul(b.into())))422 }423 /// Storage: Nonfungible TokensMinted (r:1 w:1)424 /// Proof: Nonfungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)425 /// Storage: Nonfungible AccountBalance (r:200 w:200)426 /// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)427 /// Storage: Nonfungible TokenData (r:0 w:200)428 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)429 /// Storage: Nonfungible Owned (r:0 w:200)430 /// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)431 /// The range of component `b` is `[0, 200]`.432 fn create_multiple_items_ex(b: u32, ) -> Weight {433 // Proof Size summary in bytes:434 // Measured: `142`435 // Estimated: `3481 + b * (2540 ±0)`436 // Minimum execution time: 2_210_000 picoseconds.437 Weight::from_parts(2_280_000, 3481)438 // Standard Error: 1_618439 .saturating_add(Weight::from_parts(4_308_375, 0).saturating_mul(b.into()))440 .saturating_add(RocksDbWeight::get().reads(1_u64))441 .saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(b.into())))442 .saturating_add(RocksDbWeight::get().writes(1_u64))443 .saturating_add(RocksDbWeight::get().writes((3_u64).saturating_mul(b.into())))444 .saturating_add(Weight::from_parts(0, 2540).saturating_mul(b.into()))445 }446 /// Storage: Nonfungible TokenData (r:1 w:1)447 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)448 /// Storage: Nonfungible TokenChildren (r:1 w:0)449 /// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)450 /// Storage: Nonfungible TokensBurnt (r:1 w:1)451 /// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)452 /// Storage: Nonfungible AccountBalance (r:1 w:1)453 /// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)454 /// Storage: Nonfungible Allowance (r:1 w:0)455 /// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)456 /// Storage: Nonfungible Owned (r:0 w:1)457 /// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)458 /// Storage: Nonfungible TokenProperties (r:0 w:1)459 /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)460 fn burn_item() -> Weight {461 // Proof Size summary in bytes:462 // Measured: `380`463 // Estimated: `3530`464 // Minimum execution time: 13_270_000 picoseconds.465 Weight::from_parts(13_559_000, 3530)466 .saturating_add(RocksDbWeight::get().reads(5_u64))467 .saturating_add(RocksDbWeight::get().writes(5_u64))468 }469 /// Storage: Nonfungible TokenChildren (r:1 w:0)470 /// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)471 /// Storage: Nonfungible TokenData (r:1 w:1)472 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)473 /// Storage: Nonfungible TokensBurnt (r:1 w:1)474 /// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)475 /// Storage: Nonfungible AccountBalance (r:1 w:1)476 /// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)477 /// Storage: Nonfungible Allowance (r:1 w:0)478 /// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)479 /// Storage: Nonfungible Owned (r:0 w:1)480 /// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)481 /// Storage: Nonfungible TokenProperties (r:0 w:1)482 /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)483 fn burn_recursively_self_raw() -> Weight {484 // Proof Size summary in bytes:485 // Measured: `380`486 // Estimated: `3530`487 // Minimum execution time: 16_680_000 picoseconds.488 Weight::from_parts(17_260_000, 3530)489 .saturating_add(RocksDbWeight::get().reads(5_u64))490 .saturating_add(RocksDbWeight::get().writes(5_u64))491 }492 /// Storage: Nonfungible TokenChildren (r:401 w:200)493 /// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)494 /// Storage: Common CollectionById (r:1 w:0)495 /// Proof: Common CollectionById (max_values: None, max_size: Some(860), added: 3335, mode: MaxEncodedLen)496 /// Storage: Nonfungible TokenData (r:201 w:201)497 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)498 /// Storage: Nonfungible TokensBurnt (r:1 w:1)499 /// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)500 /// Storage: Nonfungible AccountBalance (r:2 w:2)501 /// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)502 /// Storage: Nonfungible Allowance (r:201 w:0)503 /// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)504 /// Storage: Nonfungible Owned (r:0 w:201)505 /// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)506 /// Storage: Nonfungible TokenProperties (r:0 w:201)507 /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)508 /// The range of component `b` is `[0, 200]`.509 fn burn_recursively_breadth_plus_self_plus_self_per_each_raw(b: u32, ) -> Weight {510 // Proof Size summary in bytes:511 // Measured: `1500 + b * (58 ±0)`512 // Estimated: `5874 + b * (5032 ±0)`513 // Minimum execution time: 16_630_000 picoseconds.514 Weight::from_parts(17_030_000, 5874)515 // Standard Error: 137_617516 .saturating_add(Weight::from_parts(47_437_920, 0).saturating_mul(b.into()))517 .saturating_add(RocksDbWeight::get().reads(7_u64))518 .saturating_add(RocksDbWeight::get().reads((4_u64).saturating_mul(b.into())))519 .saturating_add(RocksDbWeight::get().writes(6_u64))520 .saturating_add(RocksDbWeight::get().writes((4_u64).saturating_mul(b.into())))521 .saturating_add(Weight::from_parts(0, 5032).saturating_mul(b.into()))522 }523 /// Storage: Nonfungible TokenData (r:1 w:1)524 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)525 /// Storage: Nonfungible AccountBalance (r:2 w:2)526 /// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)527 /// Storage: Nonfungible Allowance (r:1 w:0)528 /// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)529 /// Storage: Nonfungible Owned (r:0 w:2)530 /// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)531 fn transfer_raw() -> Weight {532 // Proof Size summary in bytes:533 // Measured: `380`534 // Estimated: `6070`535 // Minimum execution time: 10_200_000 picoseconds.536 Weight::from_parts(10_490_000, 6070)537 .saturating_add(RocksDbWeight::get().reads(4_u64))538 .saturating_add(RocksDbWeight::get().writes(5_u64))539 }540 /// Storage: Nonfungible TokenData (r:1 w:0)541 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)542 /// Storage: Nonfungible Allowance (r:1 w:1)543 /// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)544 fn approve() -> Weight {545 // Proof Size summary in bytes:546 // Measured: `326`547 // Estimated: `3522`548 // Minimum execution time: 5_730_000 picoseconds.549 Weight::from_parts(5_980_000, 3522)550 .saturating_add(RocksDbWeight::get().reads(2_u64))551 .saturating_add(RocksDbWeight::get().writes(1_u64))552 }553 /// Storage: Nonfungible TokenData (r:1 w:0)554 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)555 /// Storage: Nonfungible Allowance (r:1 w:1)556 /// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)557 fn approve_from() -> Weight {558 // Proof Size summary in bytes:559 // Measured: `313`560 // Estimated: `3522`561 // Minimum execution time: 5_760_000 picoseconds.562 Weight::from_parts(5_990_000, 3522)563 .saturating_add(RocksDbWeight::get().reads(2_u64))564 .saturating_add(RocksDbWeight::get().writes(1_u64))565 }566 /// Storage: Nonfungible Allowance (r:1 w:0)567 /// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)568 fn check_allowed_raw() -> Weight {569 // Proof Size summary in bytes:570 // Measured: `362`571 // Estimated: `3522`572 // Minimum execution time: 3_270_000 picoseconds.573 Weight::from_parts(3_440_000, 3522)574 .saturating_add(RocksDbWeight::get().reads(1_u64))575 }576 /// Storage: Nonfungible Allowance (r:1 w:1)577 /// Proof: Nonfungible Allowance (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)578 /// Storage: Nonfungible TokenData (r:1 w:1)579 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)580 /// Storage: Nonfungible TokenChildren (r:1 w:0)581 /// Proof: Nonfungible TokenChildren (max_values: None, max_size: Some(41), added: 2516, mode: MaxEncodedLen)582 /// Storage: Nonfungible TokensBurnt (r:1 w:1)583 /// Proof: Nonfungible TokensBurnt (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)584 /// Storage: Nonfungible AccountBalance (r:1 w:1)585 /// Proof: Nonfungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)586 /// Storage: Nonfungible Owned (r:0 w:1)587 /// Proof: Nonfungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)588 /// Storage: Nonfungible TokenProperties (r:0 w:1)589 /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)590 fn burn_from() -> Weight {591 // Proof Size summary in bytes:592 // Measured: `463`593 // Estimated: `3530`594 // Minimum execution time: 16_770_000 picoseconds.595 Weight::from_parts(17_150_000, 3530)596 .saturating_add(RocksDbWeight::get().reads(5_u64))597 .saturating_add(RocksDbWeight::get().writes(6_u64))598 }599 /// Storage: Common CollectionPropertyPermissions (r:1 w:1)600 /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)601 /// The range of component `b` is `[0, 64]`.602 fn set_token_property_permissions(b: u32, ) -> Weight {603 // Proof Size summary in bytes:604 // Measured: `314`605 // Estimated: `20191`606 // Minimum execution time: 870_000 picoseconds.607 Weight::from_parts(910_000, 20191)608 // Standard Error: 37_993609 .saturating_add(Weight::from_parts(8_947_342, 0).saturating_mul(b.into()))610 .saturating_add(RocksDbWeight::get().reads(1_u64))611 .saturating_add(RocksDbWeight::get().writes(1_u64))612 }613 /// Storage: Nonfungible TokenProperties (r:1 w:1)614 /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)615 /// Storage: Common CollectionPropertyPermissions (r:1 w:0)616 /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)617 /// Storage: Nonfungible TokenData (r:1 w:0)618 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)619 /// The range of component `b` is `[0, 64]`.620 fn set_token_properties(b: u32, ) -> Weight {621 // Proof Size summary in bytes:622 // Measured: `640 + b * (261 ±0)`623 // Estimated: `36269`624 // Minimum execution time: 2_570_000 picoseconds.625 Weight::from_parts(10_787_333, 36269)626 // Standard Error: 7_619627 .saturating_add(Weight::from_parts(2_939_955, 0).saturating_mul(b.into()))628 .saturating_add(RocksDbWeight::get().reads(3_u64))629 .saturating_add(RocksDbWeight::get().writes(1_u64))630 }631 /// Storage: Common CollectionPropertyPermissions (r:1 w:0)632 /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)633 /// Storage: Nonfungible TokenProperties (r:0 w:1)634 /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)635 /// The range of component `b` is `[0, 64]`.636 fn reset_token_properties(b: u32, ) -> Weight {637 // Proof Size summary in bytes:638 // Measured: `317 + b * (261 ±0)`639 // Estimated: `20191`640 // Minimum execution time: 530_000 picoseconds.641 Weight::from_parts(5_572_362, 20191)642 // Standard Error: 6_997643 .saturating_add(Weight::from_parts(2_986_451, 0).saturating_mul(b.into()))644 .saturating_add(RocksDbWeight::get().reads(1_u64))645 .saturating_add(RocksDbWeight::get().writes(1_u64))646 }647 /// Storage: Nonfungible TokenProperties (r:1 w:1)648 /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)649 /// Storage: Common CollectionPropertyPermissions (r:1 w:0)650 /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)651 /// Storage: Nonfungible TokenData (r:1 w:0)652 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)653 /// The range of component `b` is `[0, 64]`.654 fn delete_token_properties(b: u32, ) -> Weight {655 // Proof Size summary in bytes:656 // Measured: `699 + b * (33291 ±0)`657 // Estimated: `36269`658 // Minimum execution time: 2_580_000 picoseconds.659 Weight::from_parts(2_640_000, 36269)660 // Standard Error: 25_713661 .saturating_add(Weight::from_parts(9_667_974, 0).saturating_mul(b.into()))662 .saturating_add(RocksDbWeight::get().reads(3_u64))663 .saturating_add(RocksDbWeight::get().writes(1_u64))664 }665 /// Storage: Nonfungible TokenData (r:1 w:0)666 /// Proof: Nonfungible TokenData (max_values: None, max_size: Some(57), added: 2532, mode: MaxEncodedLen)667 fn token_owner() -> Weight {668 // Proof Size summary in bytes:669 // Measured: `326`670 // Estimated: `3522`671 // Minimum execution time: 2_910_000 picoseconds.672 Weight::from_parts(3_020_000, 3522)673 .saturating_add(RocksDbWeight::get().reads(1_u64))674 }675 /// Storage: Nonfungible CollectionAllowance (r:0 w:1)676 /// Proof: Nonfungible CollectionAllowance (max_values: None, max_size: Some(111), added: 2586, mode: MaxEncodedLen)677 fn set_allowance_for_all() -> Weight {678 // Proof Size summary in bytes:679 // Measured: `0`680 // Estimated: `0`681 // Minimum execution time: 2_510_000 picoseconds.682 Weight::from_parts(2_660_000, 0)683 .saturating_add(RocksDbWeight::get().writes(1_u64))684 }685 /// Storage: Nonfungible CollectionAllowance (r:1 w:0)686 /// Proof: Nonfungible CollectionAllowance (max_values: None, max_size: Some(111), added: 2586, mode: MaxEncodedLen)687 fn allowance_for_all() -> Weight {688 // Proof Size summary in bytes:689 // Measured: `142`690 // Estimated: `3576`691 // Minimum execution time: 1_860_000 picoseconds.692 Weight::from_parts(2_010_000, 3576)693 .saturating_add(RocksDbWeight::get().reads(1_u64))694 }695 /// Storage: Nonfungible TokenProperties (r:1 w:1)696 /// Proof: Nonfungible TokenProperties (max_values: None, max_size: Some(32804), added: 35279, mode: MaxEncodedLen)697 fn repair_item() -> Weight {698 // Proof Size summary in bytes:699 // Measured: `279`700 // Estimated: `36269`701 // Minimum execution time: 2_220_000 picoseconds.702 Weight::from_parts(2_350_000, 36269)703 .saturating_add(RocksDbWeight::get().reads(1_u64))704 .saturating_add(RocksDbWeight::get().writes(1_u64))705 }706}707pallets/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-09-25, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`
+//! DATE: 2023-09-26, STEPS: `50`, REPEAT: `80`, LOW RANGE: `[]`, HIGH RANGE: `[]`
//! WORST CASE MAP SIZE: `1000000`
//! HOSTNAME: `hearthstone`, CPU: `AMD Ryzen 9 7950X3D 16-Core Processor`
//! EXECUTION: None, WASM-EXECUTION: Compiled, CHAIN: None, DB CACHE: 1024
@@ -68,8 +68,6 @@
/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Refungible AccountBalance (r:1 w:1)
/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Refungible Balance (r:0 w:1)
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
/// Storage: Refungible TotalSupply (r:0 w:1)
@@ -78,19 +76,17 @@
/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn create_item() -> Weight {
// Proof Size summary in bytes:
- // Measured: `318`
- // Estimated: `20191`
- // Minimum execution time: 11_620_000 picoseconds.
- Weight::from_parts(12_110_000, 20191)
- .saturating_add(T::DbWeight::get().reads(3_u64))
+ // Measured: `4`
+ // Estimated: `3530`
+ // Minimum execution time: 7_490_000 picoseconds.
+ Weight::from_parts(7_820_000, 3530)
+ .saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(5_u64))
}
/// Storage: Refungible TokensMinted (r:1 w:1)
/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Refungible AccountBalance (r:1 w:1)
/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Refungible Balance (r:0 w:200)
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
/// Storage: Refungible TotalSupply (r:0 w:200)
@@ -100,13 +96,13 @@
/// The range of component `b` is `[0, 200]`.
fn create_multiple_items(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `318`
- // Estimated: `20191`
- // Minimum execution time: 1_690_000 picoseconds.
- Weight::from_parts(1_750_000, 20191)
- // Standard Error: 1_647
- .saturating_add(Weight::from_parts(4_876_194, 0).saturating_mul(b.into()))
- .saturating_add(T::DbWeight::get().reads(3_u64))
+ // Measured: `4`
+ // Estimated: `3530`
+ // Minimum execution time: 1_570_000 picoseconds.
+ Weight::from_parts(1_630_000, 3530)
+ // Standard Error: 1_544
+ .saturating_add(Weight::from_parts(4_082_425, 0).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(b.into())))
}
@@ -114,8 +110,6 @@
/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Refungible AccountBalance (r:200 w:200)
/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Refungible Balance (r:0 w:200)
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
/// Storage: Refungible TotalSupply (r:0 w:200)
@@ -125,13 +119,13 @@
/// The range of component `b` is `[0, 200]`.
fn create_multiple_items_ex_multiple_items(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `318`
- // Estimated: `20191 + b * (2540 ±0)`
- // Minimum execution time: 1_730_000 picoseconds.
- Weight::from_parts(1_790_000, 20191)
- // Standard Error: 1_611
- .saturating_add(Weight::from_parts(6_002_948, 0).saturating_mul(b.into()))
- .saturating_add(T::DbWeight::get().reads(2_u64))
+ // Measured: `4`
+ // Estimated: `3481 + b * (2540 ±0)`
+ // Minimum execution time: 1_620_000 picoseconds.
+ Weight::from_parts(1_690_000, 3481)
+ // Standard Error: 1_349
+ .saturating_add(Weight::from_parts(5_124_357, 0).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into())))
.saturating_add(T::DbWeight::get().writes(1_u64))
.saturating_add(T::DbWeight::get().writes((4_u64).saturating_mul(b.into())))
@@ -141,8 +135,6 @@
/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Refungible AccountBalance (r:200 w:200)
/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Refungible Balance (r:0 w:200)
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
/// Storage: Refungible TotalSupply (r:0 w:1)
@@ -152,13 +144,13 @@
/// The range of component `b` is `[0, 200]`.
fn create_multiple_items_ex_multiple_owners(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `318`
- // Estimated: `20191 + b * (2540 ±0)`
- // Minimum execution time: 6_260_000 picoseconds.
- Weight::from_parts(2_297_892, 20191)
- // Standard Error: 1_302
- .saturating_add(Weight::from_parts(4_093_180, 0).saturating_mul(b.into()))
- .saturating_add(T::DbWeight::get().reads(2_u64))
+ // Measured: `4`
+ // Estimated: `3481 + b * (2540 ±0)`
+ // Minimum execution time: 2_570_000 picoseconds.
+ Weight::from_parts(2_680_000, 3481)
+ // Standard Error: 637
+ .saturating_add(Weight::from_parts(3_753_594, 0).saturating_mul(b.into()))
+ .saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into())))
.saturating_add(T::DbWeight::get().writes(2_u64))
.saturating_add(T::DbWeight::get().writes((3_u64).saturating_mul(b.into())))
@@ -176,8 +168,8 @@
// Proof Size summary in bytes:
// Measured: `456`
// Estimated: `8682`
- // Minimum execution time: 17_330_000 picoseconds.
- Weight::from_parts(17_910_000, 8682)
+ // Minimum execution time: 16_200_000 picoseconds.
+ Weight::from_parts(16_620_000, 8682)
.saturating_add(T::DbWeight::get().reads(5_u64))
.saturating_add(T::DbWeight::get().writes(4_u64))
}
@@ -197,8 +189,8 @@
// Proof Size summary in bytes:
// Measured: `341`
// Estimated: `3554`
- // Minimum execution time: 16_920_000 picoseconds.
- Weight::from_parts(17_630_000, 3554)
+ // Minimum execution time: 15_820_000 picoseconds.
+ Weight::from_parts(16_410_000, 3554)
.saturating_add(T::DbWeight::get().reads(4_u64))
.saturating_add(T::DbWeight::get().writes(6_u64))
}
@@ -210,8 +202,8 @@
// Proof Size summary in bytes:
// Measured: `365`
// Estimated: `6118`
- // Minimum execution time: 10_600_000 picoseconds.
- Weight::from_parts(10_950_000, 6118)
+ // Minimum execution time: 9_970_000 picoseconds.
+ Weight::from_parts(10_250_000, 6118)
.saturating_add(T::DbWeight::get().reads(3_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -227,8 +219,8 @@
// Proof Size summary in bytes:
// Measured: `341`
// Estimated: `6118`
- // Minimum execution time: 12_160_000 picoseconds.
- Weight::from_parts(12_570_000, 6118)
+ // Minimum execution time: 11_530_000 picoseconds.
+ Weight::from_parts(11_800_000, 6118)
.saturating_add(T::DbWeight::get().reads(4_u64))
.saturating_add(T::DbWeight::get().writes(4_u64))
}
@@ -244,8 +236,8 @@
// Proof Size summary in bytes:
// Measured: `456`
// Estimated: `6118`
- // Minimum execution time: 14_300_000 picoseconds.
- Weight::from_parts(14_760_000, 6118)
+ // Minimum execution time: 13_520_000 picoseconds.
+ Weight::from_parts(13_860_000, 6118)
.saturating_add(T::DbWeight::get().reads(4_u64))
.saturating_add(T::DbWeight::get().writes(4_u64))
}
@@ -261,8 +253,8 @@
// Proof Size summary in bytes:
// Measured: `341`
// Estimated: `6118`
- // Minimum execution time: 14_050_000 picoseconds.
- Weight::from_parts(14_490_000, 6118)
+ // Minimum execution time: 13_290_000 picoseconds.
+ Weight::from_parts(13_590_000, 6118)
.saturating_add(T::DbWeight::get().reads(5_u64))
.saturating_add(T::DbWeight::get().writes(6_u64))
}
@@ -274,8 +266,8 @@
// Proof Size summary in bytes:
// Measured: `223`
// Estimated: `3554`
- // Minimum execution time: 6_210_000 picoseconds.
- Weight::from_parts(6_500_000, 3554)
+ // Minimum execution time: 5_910_000 picoseconds.
+ Weight::from_parts(6_070_000, 3554)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -287,8 +279,8 @@
// Proof Size summary in bytes:
// Measured: `211`
// Estimated: `3554`
- // Minimum execution time: 6_280_000 picoseconds.
- Weight::from_parts(6_540_000, 3554)
+ // Minimum execution time: 5_920_000 picoseconds.
+ Weight::from_parts(6_100_000, 3554)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -302,8 +294,8 @@
// Proof Size summary in bytes:
// Measured: `495`
// Estimated: `6118`
- // Minimum execution time: 15_570_000 picoseconds.
- Weight::from_parts(15_990_000, 6118)
+ // Minimum execution time: 14_460_000 picoseconds.
+ Weight::from_parts(14_900_000, 6118)
.saturating_add(T::DbWeight::get().reads(4_u64))
.saturating_add(T::DbWeight::get().writes(3_u64))
}
@@ -321,8 +313,8 @@
// Proof Size summary in bytes:
// Measured: `471`
// Estimated: `6118`
- // Minimum execution time: 17_030_000 picoseconds.
- Weight::from_parts(17_430_000, 6118)
+ // Minimum execution time: 15_920_000 picoseconds.
+ Weight::from_parts(16_340_000, 6118)
.saturating_add(T::DbWeight::get().reads(5_u64))
.saturating_add(T::DbWeight::get().writes(5_u64))
}
@@ -340,8 +332,8 @@
// Proof Size summary in bytes:
// Measured: `586`
// Estimated: `6118`
- // Minimum execution time: 19_300_000 picoseconds.
- Weight::from_parts(19_760_000, 6118)
+ // Minimum execution time: 18_010_000 picoseconds.
+ Weight::from_parts(18_350_000, 6118)
.saturating_add(T::DbWeight::get().reads(5_u64))
.saturating_add(T::DbWeight::get().writes(5_u64))
}
@@ -359,8 +351,8 @@
// Proof Size summary in bytes:
// Measured: `471`
// Estimated: `6118`
- // Minimum execution time: 19_190_000 picoseconds.
- Weight::from_parts(19_560_000, 6118)
+ // Minimum execution time: 17_800_000 picoseconds.
+ Weight::from_parts(18_160_000, 6118)
.saturating_add(T::DbWeight::get().reads(6_u64))
.saturating_add(T::DbWeight::get().writes(7_u64))
}
@@ -382,8 +374,8 @@
// Proof Size summary in bytes:
// Measured: `471`
// Estimated: `3570`
- // Minimum execution time: 22_590_000 picoseconds.
- Weight::from_parts(23_290_000, 3570)
+ // Minimum execution time: 21_020_000 picoseconds.
+ Weight::from_parts(21_450_000, 3570)
.saturating_add(T::DbWeight::get().reads(5_u64))
.saturating_add(T::DbWeight::get().writes(7_u64))
}
@@ -394,10 +386,10 @@
// Proof Size summary in bytes:
// Measured: `314`
// Estimated: `20191`
- // Minimum execution time: 780_000 picoseconds.
- Weight::from_parts(850_000, 20191)
- // Standard Error: 38_209
- .saturating_add(Weight::from_parts(9_042_866, 0).saturating_mul(b.into()))
+ // Minimum execution time: 790_000 picoseconds.
+ Weight::from_parts(840_000, 20191)
+ // Standard Error: 35_436
+ .saturating_add(Weight::from_parts(8_505_258, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -412,10 +404,10 @@
// Proof Size summary in bytes:
// Measured: `502 + b * (261 ±0)`
// Estimated: `36269`
- // Minimum execution time: 5_160_000 picoseconds.
- Weight::from_parts(15_283_437, 36269)
- // Standard Error: 12_988
- .saturating_add(Weight::from_parts(2_757_274, 0).saturating_mul(b.into()))
+ // Minimum execution time: 1_710_000 picoseconds.
+ Weight::from_parts(5_892_635, 36269)
+ // Standard Error: 5_857
+ .saturating_add(Weight::from_parts(2_956_238, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(3_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -428,10 +420,10 @@
// Proof Size summary in bytes:
// Measured: `317 + b * (261 ±0)`
// Estimated: `20191`
- // Minimum execution time: 3_560_000 picoseconds.
- Weight::from_parts(6_788_279, 20191)
- // Standard Error: 5_443
- .saturating_add(Weight::from_parts(2_641_825, 0).saturating_mul(b.into()))
+ // Minimum execution time: 500_000 picoseconds.
+ Weight::from_parts(7_856_522, 20191)
+ // Standard Error: 7_896
+ .saturating_add(Weight::from_parts(2_770_333, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -446,10 +438,10 @@
// Proof Size summary in bytes:
// Measured: `561 + b * (33291 ±0)`
// Estimated: `36269`
- // Minimum execution time: 4_650_000 picoseconds.
- Weight::from_parts(4_820_000, 36269)
- // Standard Error: 24_035
- .saturating_add(Weight::from_parts(8_828_039, 0).saturating_mul(b.into()))
+ // Minimum execution time: 1_710_000 picoseconds.
+ Weight::from_parts(1_790_000, 36269)
+ // Standard Error: 23_937
+ .saturating_add(Weight::from_parts(9_102_744, 0).saturating_mul(b.into()))
.saturating_add(T::DbWeight::get().reads(3_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -461,8 +453,8 @@
// Proof Size summary in bytes:
// Measured: `288`
// Estimated: `3554`
- // Minimum execution time: 7_260_000 picoseconds.
- Weight::from_parts(7_520_000, 3554)
+ // Minimum execution time: 7_540_000 picoseconds.
+ Weight::from_parts(7_740_000, 3554)
.saturating_add(T::DbWeight::get().reads(2_u64))
.saturating_add(T::DbWeight::get().writes(2_u64))
}
@@ -472,8 +464,8 @@
// Proof Size summary in bytes:
// Measured: `288`
// Estimated: `6118`
- // Minimum execution time: 3_200_000 picoseconds.
- Weight::from_parts(3_360_000, 6118)
+ // Minimum execution time: 3_050_000 picoseconds.
+ Weight::from_parts(3_230_000, 6118)
.saturating_add(T::DbWeight::get().reads(2_u64))
}
/// Storage: Refungible CollectionAllowance (r:0 w:1)
@@ -482,8 +474,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 2_420_000 picoseconds.
- Weight::from_parts(2_540_000, 0)
+ // Minimum execution time: 2_560_000 picoseconds.
+ Weight::from_parts(2_680_000, 0)
.saturating_add(T::DbWeight::get().writes(1_u64))
}
/// Storage: Refungible CollectionAllowance (r:1 w:0)
@@ -492,8 +484,8 @@
// Proof Size summary in bytes:
// Measured: `4`
// Estimated: `3576`
- // Minimum execution time: 1_370_000 picoseconds.
- Weight::from_parts(1_470_000, 3576)
+ // Minimum execution time: 1_430_000 picoseconds.
+ Weight::from_parts(1_510_000, 3576)
.saturating_add(T::DbWeight::get().reads(1_u64))
}
/// Storage: Refungible TokenProperties (r:1 w:1)
@@ -502,8 +494,8 @@
// Proof Size summary in bytes:
// Measured: `120`
// Estimated: `36269`
- // Minimum execution time: 1_350_000 picoseconds.
- Weight::from_parts(1_420_000, 36269)
+ // Minimum execution time: 1_380_000 picoseconds.
+ Weight::from_parts(1_470_000, 36269)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(1_u64))
}
@@ -515,8 +507,6 @@
/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Refungible AccountBalance (r:1 w:1)
/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Refungible Balance (r:0 w:1)
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
/// Storage: Refungible TotalSupply (r:0 w:1)
@@ -525,19 +515,17 @@
/// Proof: Refungible Owned (max_values: None, max_size: Some(74), added: 2549, mode: MaxEncodedLen)
fn create_item() -> Weight {
// Proof Size summary in bytes:
- // Measured: `318`
- // Estimated: `20191`
- // Minimum execution time: 11_620_000 picoseconds.
- Weight::from_parts(12_110_000, 20191)
- .saturating_add(RocksDbWeight::get().reads(3_u64))
+ // Measured: `4`
+ // Estimated: `3530`
+ // Minimum execution time: 7_490_000 picoseconds.
+ Weight::from_parts(7_820_000, 3530)
+ .saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(5_u64))
}
/// Storage: Refungible TokensMinted (r:1 w:1)
/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Refungible AccountBalance (r:1 w:1)
/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Refungible Balance (r:0 w:200)
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
/// Storage: Refungible TotalSupply (r:0 w:200)
@@ -547,13 +535,13 @@
/// The range of component `b` is `[0, 200]`.
fn create_multiple_items(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `318`
- // Estimated: `20191`
- // Minimum execution time: 1_690_000 picoseconds.
- Weight::from_parts(1_750_000, 20191)
- // Standard Error: 1_647
- .saturating_add(Weight::from_parts(4_876_194, 0).saturating_mul(b.into()))
- .saturating_add(RocksDbWeight::get().reads(3_u64))
+ // Measured: `4`
+ // Estimated: `3530`
+ // Minimum execution time: 1_570_000 picoseconds.
+ Weight::from_parts(1_630_000, 3530)
+ // Standard Error: 1_544
+ .saturating_add(Weight::from_parts(4_082_425, 0).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
.saturating_add(RocksDbWeight::get().writes((3_u64).saturating_mul(b.into())))
}
@@ -561,8 +549,6 @@
/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Refungible AccountBalance (r:200 w:200)
/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Refungible Balance (r:0 w:200)
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
/// Storage: Refungible TotalSupply (r:0 w:200)
@@ -572,13 +558,13 @@
/// The range of component `b` is `[0, 200]`.
fn create_multiple_items_ex_multiple_items(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `318`
- // Estimated: `20191 + b * (2540 ±0)`
- // Minimum execution time: 1_730_000 picoseconds.
- Weight::from_parts(1_790_000, 20191)
- // Standard Error: 1_611
- .saturating_add(Weight::from_parts(6_002_948, 0).saturating_mul(b.into()))
- .saturating_add(RocksDbWeight::get().reads(2_u64))
+ // Measured: `4`
+ // Estimated: `3481 + b * (2540 ±0)`
+ // Minimum execution time: 1_620_000 picoseconds.
+ Weight::from_parts(1_690_000, 3481)
+ // Standard Error: 1_349
+ .saturating_add(Weight::from_parts(5_124_357, 0).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(b.into())))
.saturating_add(RocksDbWeight::get().writes(1_u64))
.saturating_add(RocksDbWeight::get().writes((4_u64).saturating_mul(b.into())))
@@ -588,8 +574,6 @@
/// Proof: Refungible TokensMinted (max_values: None, max_size: Some(16), added: 2491, mode: MaxEncodedLen)
/// Storage: Refungible AccountBalance (r:200 w:200)
/// Proof: Refungible AccountBalance (max_values: None, max_size: Some(65), added: 2540, mode: MaxEncodedLen)
- /// Storage: Common CollectionPropertyPermissions (r:1 w:0)
- /// Proof: Common CollectionPropertyPermissions (max_values: None, max_size: Some(16726), added: 19201, mode: MaxEncodedLen)
/// Storage: Refungible Balance (r:0 w:200)
/// Proof: Refungible Balance (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
/// Storage: Refungible TotalSupply (r:0 w:1)
@@ -599,13 +583,13 @@
/// The range of component `b` is `[0, 200]`.
fn create_multiple_items_ex_multiple_owners(b: u32, ) -> Weight {
// Proof Size summary in bytes:
- // Measured: `318`
- // Estimated: `20191 + b * (2540 ±0)`
- // Minimum execution time: 6_260_000 picoseconds.
- Weight::from_parts(2_297_892, 20191)
- // Standard Error: 1_302
- .saturating_add(Weight::from_parts(4_093_180, 0).saturating_mul(b.into()))
- .saturating_add(RocksDbWeight::get().reads(2_u64))
+ // Measured: `4`
+ // Estimated: `3481 + b * (2540 ±0)`
+ // Minimum execution time: 2_570_000 picoseconds.
+ Weight::from_parts(2_680_000, 3481)
+ // Standard Error: 637
+ .saturating_add(Weight::from_parts(3_753_594, 0).saturating_mul(b.into()))
+ .saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(b.into())))
.saturating_add(RocksDbWeight::get().writes(2_u64))
.saturating_add(RocksDbWeight::get().writes((3_u64).saturating_mul(b.into())))
@@ -623,8 +607,8 @@
// Proof Size summary in bytes:
// Measured: `456`
// Estimated: `8682`
- // Minimum execution time: 17_330_000 picoseconds.
- Weight::from_parts(17_910_000, 8682)
+ // Minimum execution time: 16_200_000 picoseconds.
+ Weight::from_parts(16_620_000, 8682)
.saturating_add(RocksDbWeight::get().reads(5_u64))
.saturating_add(RocksDbWeight::get().writes(4_u64))
}
@@ -644,8 +628,8 @@
// Proof Size summary in bytes:
// Measured: `341`
// Estimated: `3554`
- // Minimum execution time: 16_920_000 picoseconds.
- Weight::from_parts(17_630_000, 3554)
+ // Minimum execution time: 15_820_000 picoseconds.
+ Weight::from_parts(16_410_000, 3554)
.saturating_add(RocksDbWeight::get().reads(4_u64))
.saturating_add(RocksDbWeight::get().writes(6_u64))
}
@@ -657,8 +641,8 @@
// Proof Size summary in bytes:
// Measured: `365`
// Estimated: `6118`
- // Minimum execution time: 10_600_000 picoseconds.
- Weight::from_parts(10_950_000, 6118)
+ // Minimum execution time: 9_970_000 picoseconds.
+ Weight::from_parts(10_250_000, 6118)
.saturating_add(RocksDbWeight::get().reads(3_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
}
@@ -674,8 +658,8 @@
// Proof Size summary in bytes:
// Measured: `341`
// Estimated: `6118`
- // Minimum execution time: 12_160_000 picoseconds.
- Weight::from_parts(12_570_000, 6118)
+ // Minimum execution time: 11_530_000 picoseconds.
+ Weight::from_parts(11_800_000, 6118)
.saturating_add(RocksDbWeight::get().reads(4_u64))
.saturating_add(RocksDbWeight::get().writes(4_u64))
}
@@ -691,8 +675,8 @@
// Proof Size summary in bytes:
// Measured: `456`
// Estimated: `6118`
- // Minimum execution time: 14_300_000 picoseconds.
- Weight::from_parts(14_760_000, 6118)
+ // Minimum execution time: 13_520_000 picoseconds.
+ Weight::from_parts(13_860_000, 6118)
.saturating_add(RocksDbWeight::get().reads(4_u64))
.saturating_add(RocksDbWeight::get().writes(4_u64))
}
@@ -708,8 +692,8 @@
// Proof Size summary in bytes:
// Measured: `341`
// Estimated: `6118`
- // Minimum execution time: 14_050_000 picoseconds.
- Weight::from_parts(14_490_000, 6118)
+ // Minimum execution time: 13_290_000 picoseconds.
+ Weight::from_parts(13_590_000, 6118)
.saturating_add(RocksDbWeight::get().reads(5_u64))
.saturating_add(RocksDbWeight::get().writes(6_u64))
}
@@ -721,8 +705,8 @@
// Proof Size summary in bytes:
// Measured: `223`
// Estimated: `3554`
- // Minimum execution time: 6_210_000 picoseconds.
- Weight::from_parts(6_500_000, 3554)
+ // Minimum execution time: 5_910_000 picoseconds.
+ Weight::from_parts(6_070_000, 3554)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -734,8 +718,8 @@
// Proof Size summary in bytes:
// Measured: `211`
// Estimated: `3554`
- // Minimum execution time: 6_280_000 picoseconds.
- Weight::from_parts(6_540_000, 3554)
+ // Minimum execution time: 5_920_000 picoseconds.
+ Weight::from_parts(6_100_000, 3554)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -749,8 +733,8 @@
// Proof Size summary in bytes:
// Measured: `495`
// Estimated: `6118`
- // Minimum execution time: 15_570_000 picoseconds.
- Weight::from_parts(15_990_000, 6118)
+ // Minimum execution time: 14_460_000 picoseconds.
+ Weight::from_parts(14_900_000, 6118)
.saturating_add(RocksDbWeight::get().reads(4_u64))
.saturating_add(RocksDbWeight::get().writes(3_u64))
}
@@ -768,8 +752,8 @@
// Proof Size summary in bytes:
// Measured: `471`
// Estimated: `6118`
- // Minimum execution time: 17_030_000 picoseconds.
- Weight::from_parts(17_430_000, 6118)
+ // Minimum execution time: 15_920_000 picoseconds.
+ Weight::from_parts(16_340_000, 6118)
.saturating_add(RocksDbWeight::get().reads(5_u64))
.saturating_add(RocksDbWeight::get().writes(5_u64))
}
@@ -787,8 +771,8 @@
// Proof Size summary in bytes:
// Measured: `586`
// Estimated: `6118`
- // Minimum execution time: 19_300_000 picoseconds.
- Weight::from_parts(19_760_000, 6118)
+ // Minimum execution time: 18_010_000 picoseconds.
+ Weight::from_parts(18_350_000, 6118)
.saturating_add(RocksDbWeight::get().reads(5_u64))
.saturating_add(RocksDbWeight::get().writes(5_u64))
}
@@ -806,8 +790,8 @@
// Proof Size summary in bytes:
// Measured: `471`
// Estimated: `6118`
- // Minimum execution time: 19_190_000 picoseconds.
- Weight::from_parts(19_560_000, 6118)
+ // Minimum execution time: 17_800_000 picoseconds.
+ Weight::from_parts(18_160_000, 6118)
.saturating_add(RocksDbWeight::get().reads(6_u64))
.saturating_add(RocksDbWeight::get().writes(7_u64))
}
@@ -829,8 +813,8 @@
// Proof Size summary in bytes:
// Measured: `471`
// Estimated: `3570`
- // Minimum execution time: 22_590_000 picoseconds.
- Weight::from_parts(23_290_000, 3570)
+ // Minimum execution time: 21_020_000 picoseconds.
+ Weight::from_parts(21_450_000, 3570)
.saturating_add(RocksDbWeight::get().reads(5_u64))
.saturating_add(RocksDbWeight::get().writes(7_u64))
}
@@ -841,10 +825,10 @@
// Proof Size summary in bytes:
// Measured: `314`
// Estimated: `20191`
- // Minimum execution time: 780_000 picoseconds.
- Weight::from_parts(850_000, 20191)
- // Standard Error: 38_209
- .saturating_add(Weight::from_parts(9_042_866, 0).saturating_mul(b.into()))
+ // Minimum execution time: 790_000 picoseconds.
+ Weight::from_parts(840_000, 20191)
+ // Standard Error: 35_436
+ .saturating_add(Weight::from_parts(8_505_258, 0).saturating_mul(b.into()))
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -859,10 +843,10 @@
// Proof Size summary in bytes:
// Measured: `502 + b * (261 ±0)`
// Estimated: `36269`
- // Minimum execution time: 5_160_000 picoseconds.
- Weight::from_parts(15_283_437, 36269)
- // Standard Error: 12_988
- .saturating_add(Weight::from_parts(2_757_274, 0).saturating_mul(b.into()))
+ // Minimum execution time: 1_710_000 picoseconds.
+ Weight::from_parts(5_892_635, 36269)
+ // Standard Error: 5_857
+ .saturating_add(Weight::from_parts(2_956_238, 0).saturating_mul(b.into()))
.saturating_add(RocksDbWeight::get().reads(3_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -875,10 +859,10 @@
// Proof Size summary in bytes:
// Measured: `317 + b * (261 ±0)`
// Estimated: `20191`
- // Minimum execution time: 3_560_000 picoseconds.
- Weight::from_parts(6_788_279, 20191)
- // Standard Error: 5_443
- .saturating_add(Weight::from_parts(2_641_825, 0).saturating_mul(b.into()))
+ // Minimum execution time: 500_000 picoseconds.
+ Weight::from_parts(7_856_522, 20191)
+ // Standard Error: 7_896
+ .saturating_add(Weight::from_parts(2_770_333, 0).saturating_mul(b.into()))
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -893,10 +877,10 @@
// Proof Size summary in bytes:
// Measured: `561 + b * (33291 ±0)`
// Estimated: `36269`
- // Minimum execution time: 4_650_000 picoseconds.
- Weight::from_parts(4_820_000, 36269)
- // Standard Error: 24_035
- .saturating_add(Weight::from_parts(8_828_039, 0).saturating_mul(b.into()))
+ // Minimum execution time: 1_710_000 picoseconds.
+ Weight::from_parts(1_790_000, 36269)
+ // Standard Error: 23_937
+ .saturating_add(Weight::from_parts(9_102_744, 0).saturating_mul(b.into()))
.saturating_add(RocksDbWeight::get().reads(3_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
@@ -908,8 +892,8 @@
// Proof Size summary in bytes:
// Measured: `288`
// Estimated: `3554`
- // Minimum execution time: 7_260_000 picoseconds.
- Weight::from_parts(7_520_000, 3554)
+ // Minimum execution time: 7_540_000 picoseconds.
+ Weight::from_parts(7_740_000, 3554)
.saturating_add(RocksDbWeight::get().reads(2_u64))
.saturating_add(RocksDbWeight::get().writes(2_u64))
}
@@ -919,8 +903,8 @@
// Proof Size summary in bytes:
// Measured: `288`
// Estimated: `6118`
- // Minimum execution time: 3_200_000 picoseconds.
- Weight::from_parts(3_360_000, 6118)
+ // Minimum execution time: 3_050_000 picoseconds.
+ Weight::from_parts(3_230_000, 6118)
.saturating_add(RocksDbWeight::get().reads(2_u64))
}
/// Storage: Refungible CollectionAllowance (r:0 w:1)
@@ -929,8 +913,8 @@
// Proof Size summary in bytes:
// Measured: `0`
// Estimated: `0`
- // Minimum execution time: 2_420_000 picoseconds.
- Weight::from_parts(2_540_000, 0)
+ // Minimum execution time: 2_560_000 picoseconds.
+ Weight::from_parts(2_680_000, 0)
.saturating_add(RocksDbWeight::get().writes(1_u64))
}
/// Storage: Refungible CollectionAllowance (r:1 w:0)
@@ -939,8 +923,8 @@
// Proof Size summary in bytes:
// Measured: `4`
// Estimated: `3576`
- // Minimum execution time: 1_370_000 picoseconds.
- Weight::from_parts(1_470_000, 3576)
+ // Minimum execution time: 1_430_000 picoseconds.
+ Weight::from_parts(1_510_000, 3576)
.saturating_add(RocksDbWeight::get().reads(1_u64))
}
/// Storage: Refungible TokenProperties (r:1 w:1)
@@ -949,8 +933,8 @@
// Proof Size summary in bytes:
// Measured: `120`
// Estimated: `36269`
- // Minimum execution time: 1_350_000 picoseconds.
- Weight::from_parts(1_420_000, 36269)
+ // Minimum execution time: 1_380_000 picoseconds.
+ Weight::from_parts(1_470_000, 36269)
.saturating_add(RocksDbWeight::get().reads(1_u64))
.saturating_add(RocksDbWeight::get().writes(1_u64))
}