From 2d6b7af4107f88099db8014d9347d8270d749e3d Mon Sep 17 00:00:00 2001 From: Peter White Date: Tue, 3 Oct 2023 10:51:40 -0600 Subject: [PATCH 1/3] feat: add pallet-nfts --- Cargo.lock | 20 +++++++++++++++++ Cargo.toml | 1 + runtime/stout/Cargo.toml | 3 +++ runtime/stout/src/lib.rs | 45 +++++++++++++++++++++++++++++++++++-- runtime/trappist/Cargo.toml | 4 ++++ runtime/trappist/src/lib.rs | 43 ++++++++++++++++++++++++++++++++++- 6 files changed, 113 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 959b515f..bd5464b6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6471,6 +6471,24 @@ dependencies = [ "sp-std", ] +[[package]] +name = "pallet-nfts" +version = "4.0.0-dev" +source = "git+https://github.com/paritytech/substrate?branch=polkadot-v1.0.0#948fbd2fd1233dc26dbb9f9bbc1d2cca2c03945d" +dependencies = [ + "enumflags2", + "frame-benchmarking", + "frame-support", + "frame-system", + "log", + "parity-scale-codec", + "scale-info", + "sp-core", + "sp-io", + "sp-runtime", + "sp-std", +] + [[package]] name = "pallet-nis" version = "4.0.0-dev" @@ -12093,6 +12111,7 @@ dependencies = [ "pallet-identity", "pallet-insecure-randomness-collective-flip", "pallet-multisig", + "pallet-nfts", "pallet-preimage", "pallet-scheduler", "pallet-session", @@ -12960,6 +12979,7 @@ dependencies = [ "pallet-insecure-randomness-collective-flip", "pallet-lockdown-mode", "pallet-multisig", + "pallet-nfts", "pallet-preimage", "pallet-scheduler", "pallet-session", diff --git a/Cargo.toml b/Cargo.toml index 8be24138..96989d25 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -131,6 +131,7 @@ pallet-contracts-primitives = { git = "https://github.com/paritytech/substrate", pallet-democracy = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v1.0.0" } pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v1.0.0" } pallet-multisig = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v1.0.0" } +pallet-nfts = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v1.0.0" } pallet-preimage = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v1.0.0" } pallet-insecure-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v1.0.0" } pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v1.0.0" } diff --git a/runtime/stout/Cargo.toml b/runtime/stout/Cargo.toml index 1b523f13..58a8fe60 100644 --- a/runtime/stout/Cargo.toml +++ b/runtime/stout/Cargo.toml @@ -56,6 +56,7 @@ pallet-contracts = { workspace = true } pallet-contracts-primitives = { workspace = true } pallet-identity = { workspace = true } pallet-multisig = { workspace = true } +pallet-nfts = { workspace = true } pallet-preimage = { workspace = true } pallet-insecure-randomness-collective-flip = { workspace = true } pallet-session = { workspace = true } @@ -135,6 +136,7 @@ std = [ "pallet-dex-rpc-runtime-api/std", "pallet-identity/std", "pallet-multisig/std", + "pallet-nfts/std", "pallet-insecure-randomness-collective-flip/std", "pallet-scheduler/std", "pallet-session/std", @@ -179,6 +181,7 @@ runtime-benchmarks = [ "pallet-dex/runtime-benchmarks", "pallet-identity/runtime-benchmarks", "pallet-multisig/runtime-benchmarks", + "pallet-nfts/runtime-benchmarks", "pallet-scheduler/runtime-benchmarks", "pallet-timestamp/runtime-benchmarks", "pallet-uniques/runtime-benchmarks", diff --git a/runtime/stout/src/lib.rs b/runtime/stout/src/lib.rs index 5efabf67..6ac2b12e 100644 --- a/runtime/stout/src/lib.rs +++ b/runtime/stout/src/lib.rs @@ -32,7 +32,7 @@ use sp_api::impl_runtime_apis; use sp_core::{crypto::KeyTypeId, ConstBool, ConstU8, OpaqueMetadata}; use sp_runtime::{ create_runtime_str, generic, impl_opaque_keys, - traits::{AccountIdLookup, BlakeTwo256, Block as BlockT, ConvertInto}, + traits::{AccountIdLookup, BlakeTwo256, Block as BlockT, ConvertInto, Verify}, transaction_validity::{TransactionSource, TransactionValidity}, ApplyExtrinsicResult, Perbill, }; @@ -61,7 +61,7 @@ pub use parachains_common as common; pub use parachains_common::{ impls::{AssetsToBlockAuthor, DealWithFees}, opaque, AccountId, AuraId, Balance, BlockNumber, Hash, Header, Signature, - AVERAGE_ON_INITIALIZE_RATIO, HOURS, MAXIMUM_BLOCK_WEIGHT, MINUTES, NORMAL_DISPATCH_RATIO, + AVERAGE_ON_INITIALIZE_RATIO, HOURS, DAYS, MAXIMUM_BLOCK_WEIGHT, MINUTES, NORMAL_DISPATCH_RATIO, SLOT_DURATION, }; use sp_std::prelude::*; @@ -389,6 +389,45 @@ impl pallet_assets::Config for Runtime { type BenchmarkHelper = (); } +parameter_types! { + pub NftsPalletFeatures: pallet_nfts::PalletFeatures = pallet_nfts::PalletFeatures::all_enabled(); + pub const NftsMaxDeadlineDuration: BlockNumber = 12 * 30 * DAYS; + pub const NftsMetadataDepositBase: Balance = deposit(1, 129); + pub const NftsAttributeDepositBase: Balance = deposit(1, 0); + pub const NftsDepositPerByte: Balance = deposit(0, 1); + pub const NftsCollectionDeposit: Balance = 100 * UNITS; + pub const NftsItemDeposit: Balance = 1 * UNITS; +} + +impl pallet_nfts::Config for Runtime { + type RuntimeEvent = RuntimeEvent; + type CollectionId = u32; + type ItemId = u32; + type Currency = Balances; + type CreateOrigin = AsEnsureOriginWithArg>; + type ForceOrigin = AssetsForceOrigin; + type Locker = (); + type CollectionDeposit = NftsCollectionDeposit; + type ItemDeposit = NftsItemDeposit; + type MetadataDepositBase = NftsMetadataDepositBase; + type AttributeDepositBase = NftsAttributeDepositBase; + type DepositPerByte = NftsDepositPerByte; + type StringLimit = ConstU32<128>; + type KeyLimit = ConstU32<32>; + type ValueLimit = ConstU32<64>; + type ApprovalsLimit = ConstU32<20>; + type ItemAttributesApprovalsLimit = ConstU32<30>; + type MaxTips = ConstU32<10>; + type MaxDeadlineDuration = NftsMaxDeadlineDuration; + type MaxAttributesPerCall = ConstU32<10>; + type Features = NftsPalletFeatures; + type OffchainSignature = Signature; + type OffchainPublic = ::Signer; + type WeightInfo = pallet_nfts::weights::SubstrateWeight; + #[cfg(feature = "runtime-benchmarks")] + type Helper = (); +} + parameter_types! { pub MaxProposalWeight: Weight = Perbill::from_percent(50) * RuntimeBlockWeights::get().max_block; } @@ -588,6 +627,7 @@ construct_runtime!( Preimage: pallet_preimage = 48, Multisig: pallet_multisig = 49, Dex: pallet_dex = 50, + Nfts: pallet_nfts = 51, Spambot: cumulus_ping::{Pallet, Call, Storage, Event} = 99, AssetRegistry: pallet_asset_registry::{Pallet, Call, Storage, Event} = 111, @@ -611,6 +651,7 @@ mod benches { [pallet_assets, Assets] [pallet_identity, Identity] [pallet_multisig, Multisig] + [pallet_nfts, Nfts] [pallet_uniques, Uniques] [pallet_dex, Dex] [pallet_scheduler, Scheduler] diff --git a/runtime/trappist/Cargo.toml b/runtime/trappist/Cargo.toml index 14af75ca..b55f7759 100644 --- a/runtime/trappist/Cargo.toml +++ b/runtime/trappist/Cargo.toml @@ -59,6 +59,7 @@ pallet-contracts-primitives = { workspace = true } pallet-democracy = { workspace = true } pallet-identity = { workspace = true } pallet-multisig = { workspace = true } +pallet-nfts = { workspace = true } pallet-preimage = { workspace = true } pallet-insecure-randomness-collective-flip = { workspace = true } pallet-session = { workspace = true } @@ -151,6 +152,7 @@ std = [ "pallet-preimage/std", "pallet-withdraw-teleport/std", "pallet-multisig/std", + "pallet-nfts/std", "pallet-insecure-randomness-collective-flip/std", "pallet-scheduler/std", "pallet-session/std", @@ -202,6 +204,7 @@ runtime-benchmarks = [ "pallet-lockdown-mode/runtime-benchmarks", "pallet-preimage/runtime-benchmarks", "pallet-multisig/runtime-benchmarks", + "pallet-nfts/runtime-benchmarks", "pallet-scheduler/runtime-benchmarks", "pallet-timestamp/runtime-benchmarks", "pallet-treasury/runtime-benchmarks", @@ -231,6 +234,7 @@ try-runtime = [ "pallet-identity/try-runtime", "pallet-lockdown-mode/try-runtime", "pallet-multisig/try-runtime", + "pallet-nfts/try-runtime", "pallet-scheduler/try-runtime", "pallet-timestamp/try-runtime", "pallet-treasury/try-runtime", diff --git a/runtime/trappist/src/lib.rs b/runtime/trappist/src/lib.rs index ddbb1d67..9ae03a90 100644 --- a/runtime/trappist/src/lib.rs +++ b/runtime/trappist/src/lib.rs @@ -54,7 +54,7 @@ use sp_core::{crypto::KeyTypeId, ConstBool, ConstU8, OpaqueMetadata}; pub use sp_runtime::BuildStorage; use sp_runtime::{ create_runtime_str, generic, impl_opaque_keys, - traits::{AccountIdLookup, BlakeTwo256, Block as BlockT, ConvertInto}, + traits::{AccountIdLookup, BlakeTwo256, Block as BlockT, ConvertInto, Verify}, transaction_validity::{InvalidTransaction, TransactionSource, TransactionValidity}, ApplyExtrinsicResult, Perbill, Percent, Permill, }; @@ -392,6 +392,45 @@ impl pallet_assets::Config for Runtime { type BenchmarkHelper = (); } +parameter_types! { + pub NftsPalletFeatures: pallet_nfts::PalletFeatures = pallet_nfts::PalletFeatures::all_enabled(); + pub const NftsMaxDeadlineDuration: BlockNumber = 12 * 30 * DAYS; + pub const NftsMetadataDepositBase: Balance = deposit(1, 129); + pub const NftsAttributeDepositBase: Balance = deposit(1, 0); + pub const NftsDepositPerByte: Balance = deposit(0, 1); + pub const NftsCollectionDeposit: Balance = 100 * UNITS; + pub const NftsItemDeposit: Balance = 1 * UNITS; +} + +impl pallet_nfts::Config for Runtime { + type RuntimeEvent = RuntimeEvent; + type CollectionId = u32; + type ItemId = u32; + type Currency = Balances; + type CreateOrigin = AsEnsureOriginWithArg>; + type ForceOrigin = AssetsForceOrigin; + type Locker = (); + type CollectionDeposit = NftsCollectionDeposit; + type ItemDeposit = NftsItemDeposit; + type MetadataDepositBase = NftsMetadataDepositBase; + type AttributeDepositBase = NftsAttributeDepositBase; + type DepositPerByte = NftsDepositPerByte; + type StringLimit = ConstU32<128>; + type KeyLimit = ConstU32<32>; + type ValueLimit = ConstU32<64>; + type ApprovalsLimit = ConstU32<20>; + type ItemAttributesApprovalsLimit = ConstU32<30>; + type MaxTips = ConstU32<10>; + type MaxDeadlineDuration = NftsMaxDeadlineDuration; + type MaxAttributesPerCall = ConstU32<10>; + type Features = NftsPalletFeatures; + type OffchainSignature = Signature; + type OffchainPublic = ::Signer; + type WeightInfo = pallet_nfts::weights::SubstrateWeight; + #[cfg(feature = "runtime-benchmarks")] + type Helper = (); +} + parameter_types! { pub MaxProposalWeight: Weight = Perbill::from_percent(50) * RuntimeBlockWeights::get().max_block; } @@ -701,6 +740,7 @@ construct_runtime!( Scheduler: pallet_scheduler = 44, Preimage: pallet_preimage = 45, LockdownMode: pallet_lockdown_mode = 46, + Nfts: pallet_nfts = 47, // Handy utilities. Utility: pallet_utility::{Pallet, Call, Event} = 50, @@ -771,6 +811,7 @@ mod benches { [pallet_dex, Dex] [pallet_identity, Identity] [pallet_multisig, Multisig] + [pallet_nfts, Nfts] [pallet_uniques, Uniques] [pallet_scheduler, Scheduler] [pallet_utility, Utility] From a11e373be427bb7b25fbd259044ced0ef8677350 Mon Sep 17 00:00:00 2001 From: Peter White Date: Wed, 4 Oct 2023 13:24:59 -0600 Subject: [PATCH 2/3] chore: fmt --- runtime/stout/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/stout/src/lib.rs b/runtime/stout/src/lib.rs index 6ac2b12e..7c73ea5b 100644 --- a/runtime/stout/src/lib.rs +++ b/runtime/stout/src/lib.rs @@ -61,7 +61,7 @@ pub use parachains_common as common; pub use parachains_common::{ impls::{AssetsToBlockAuthor, DealWithFees}, opaque, AccountId, AuraId, Balance, BlockNumber, Hash, Header, Signature, - AVERAGE_ON_INITIALIZE_RATIO, HOURS, DAYS, MAXIMUM_BLOCK_WEIGHT, MINUTES, NORMAL_DISPATCH_RATIO, + AVERAGE_ON_INITIALIZE_RATIO, DAYS, HOURS, MAXIMUM_BLOCK_WEIGHT, MINUTES, NORMAL_DISPATCH_RATIO, SLOT_DURATION, }; use sp_std::prelude::*; From f42f29c550c1944f4fabea5e55f0810f82008a4a Mon Sep 17 00:00:00 2001 From: command-bot <> Date: Wed, 4 Oct 2023 22:42:22 +0000 Subject: [PATCH 3/3] ".git/.scripts/commands/bench-all/bench-all.sh" --runtime=trappist --target_dir=trappist --- runtime/trappist/src/weights/block_weights.rs | 16 +- .../src/weights/cumulus_pallet_xcmp_queue.rs | 8 +- .../trappist/src/weights/extrinsic_weights.rs | 16 +- runtime/trappist/src/weights/frame_system.rs | 50 +- .../src/weights/pallet_asset_registry.rs | 8 +- runtime/trappist/src/weights/pallet_assets.rs | 152 ++-- .../trappist/src/weights/pallet_balances.rs | 36 +- .../src/weights/pallet_collator_selection.rs | 62 +- .../trappist/src/weights/pallet_collective.rs | 118 +-- .../trappist/src/weights/pallet_contracts.rs | 600 +++++++------- .../trappist/src/weights/pallet_democracy.rs | 144 ++-- runtime/trappist/src/weights/pallet_dex.rs | 24 +- .../trappist/src/weights/pallet_identity.rs | 160 ++-- .../src/weights/pallet_lockdown_mode.rs | 8 +- .../trappist/src/weights/pallet_multisig.rs | 66 +- runtime/trappist/src/weights/pallet_nfts.rs | 773 ++++++++++++++++++ .../trappist/src/weights/pallet_preimage.rs | 60 +- .../trappist/src/weights/pallet_scheduler.rs | 72 +- .../trappist/src/weights/pallet_session.rs | 8 +- .../trappist/src/weights/pallet_timestamp.rs | 8 +- .../trappist/src/weights/pallet_treasury.rs | 32 +- .../trappist/src/weights/pallet_uniques.rs | 120 +-- .../trappist/src/weights/pallet_utility.rs | 32 +- .../src/weights/pallet_withdraw_teleport.rs | 10 +- .../weights/trappist_runtime_benchmarks.rs | 12 +- .../xcm/pallet_xcm_benchmarks_fungible.rs | 36 +- .../xcm/pallet_xcm_benchmarks_generic.rs | 148 ++-- 27 files changed, 1774 insertions(+), 1005 deletions(-) create mode 100644 runtime/trappist/src/weights/pallet_nfts.rs diff --git a/runtime/trappist/src/weights/block_weights.rs b/runtime/trappist/src/weights/block_weights.rs index db912596..6b684da0 100644 --- a/runtime/trappist/src/weights/block_weights.rs +++ b/runtime/trappist/src/weights/block_weights.rs @@ -43,17 +43,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 403_736, 438_006 - /// Average: 412_652 - /// Median: 411_401 - /// Std-Dev: 6866.93 + /// Min, Max: 416_626, 752_636 + /// Average: 448_193 + /// Median: 432_775 + /// Std-Dev: 48775.17 /// /// Percentiles nanoseconds: - /// 99th: 432_567 - /// 95th: 426_122 - /// 75th: 414_441 + /// 99th: 693_490 + /// 95th: 519_416 + /// 75th: 447_507 pub const BlockExecutionWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(412_652), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(448_193), 0); } #[cfg(test)] diff --git a/runtime/trappist/src/weights/cumulus_pallet_xcmp_queue.rs b/runtime/trappist/src/weights/cumulus_pallet_xcmp_queue.rs index 26636029..8048deec 100644 --- a/runtime/trappist/src/weights/cumulus_pallet_xcmp_queue.rs +++ b/runtime/trappist/src/weights/cumulus_pallet_xcmp_queue.rs @@ -56,8 +56,8 @@ impl cumulus_pallet_xcmp_queue::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `76` // Estimated: `1561` - // Minimum execution time: 6_055_000 picoseconds. - Weight::from_parts(6_437_000, 0) + // Minimum execution time: 6_026_000 picoseconds. + Weight::from_parts(6_375_000, 0) .saturating_add(Weight::from_parts(0, 1561)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -68,8 +68,8 @@ impl cumulus_pallet_xcmp_queue::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `76` // Estimated: `1561` - // Minimum execution time: 6_137_000 picoseconds. - Weight::from_parts(6_381_000, 0) + // Minimum execution time: 6_070_000 picoseconds. + Weight::from_parts(6_268_000, 0) .saturating_add(Weight::from_parts(0, 1561)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/trappist/src/weights/extrinsic_weights.rs b/runtime/trappist/src/weights/extrinsic_weights.rs index 17111ca2..11f4210a 100644 --- a/runtime/trappist/src/weights/extrinsic_weights.rs +++ b/runtime/trappist/src/weights/extrinsic_weights.rs @@ -43,17 +43,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 131_387, 134_063 - /// Average: 132_612 - /// Median: 132_584 - /// Std-Dev: 547.8 + /// Min, Max: 131_525, 133_793 + /// Average: 132_577 + /// Median: 132_562 + /// Std-Dev: 491.72 /// /// Percentiles nanoseconds: - /// 99th: 134_021 - /// 95th: 133_497 - /// 75th: 132_981 + /// 99th: 133_705 + /// 95th: 133_400 + /// 75th: 132_945 pub const ExtrinsicBaseWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(132_612), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(132_577), 0); } #[cfg(test)] diff --git a/runtime/trappist/src/weights/frame_system.rs b/runtime/trappist/src/weights/frame_system.rs index 8663683a..3eb6acf2 100644 --- a/runtime/trappist/src/weights/frame_system.rs +++ b/runtime/trappist/src/weights/frame_system.rs @@ -55,22 +55,22 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_066_000 picoseconds. - Weight::from_parts(6_512_307, 0) + // Minimum execution time: 1_956_000 picoseconds. + Weight::from_parts(1_709_726, 0) .saturating_add(Weight::from_parts(0, 0)) // Standard Error: 0 - .saturating_add(Weight::from_parts(431, 0).saturating_mul(b.into())) + .saturating_add(Weight::from_parts(386, 0).saturating_mul(b.into())) } /// The range of component `b` is `[0, 3932160]`. fn remark_with_event(b: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_879_000 picoseconds. - Weight::from_parts(8_118_000, 0) + // Minimum execution time: 7_544_000 picoseconds. + Weight::from_parts(7_894_000, 0) .saturating_add(Weight::from_parts(0, 0)) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_803, 0).saturating_mul(b.into())) + .saturating_add(Weight::from_parts(1_719, 0).saturating_mul(b.into())) } /// Storage: `System::Digest` (r:1 w:1) /// Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) @@ -80,8 +80,8 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `1485` - // Minimum execution time: 3_859_000 picoseconds. - Weight::from_parts(4_034_000, 0) + // Minimum execution time: 3_873_000 picoseconds. + Weight::from_parts(4_113_000, 0) .saturating_add(Weight::from_parts(0, 1485)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -102,8 +102,8 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `190` // Estimated: `1675` - // Minimum execution time: 97_924_958_000 picoseconds. - Weight::from_parts(101_894_755_000, 0) + // Minimum execution time: 94_724_627_000 picoseconds. + Weight::from_parts(99_616_162_000, 0) .saturating_add(Weight::from_parts(0, 1675)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -115,11 +115,11 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_157_000 picoseconds. - Weight::from_parts(2_269_000, 0) + // Minimum execution time: 2_107_000 picoseconds. + Weight::from_parts(2_203_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 2_133 - .saturating_add(Weight::from_parts(737_514, 0).saturating_mul(i.into())) + // Standard Error: 1_658 + .saturating_add(Weight::from_parts(751_504, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) } /// Storage: `Skipped::Metadata` (r:0 w:0) @@ -129,11 +129,11 @@ impl frame_system::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_159_000 picoseconds. - Weight::from_parts(2_311_000, 0) + // Minimum execution time: 2_141_000 picoseconds. + Weight::from_parts(2_200_000, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 921 - .saturating_add(Weight::from_parts(555_170, 0).saturating_mul(i.into())) + // Standard Error: 892 + .saturating_add(Weight::from_parts(563_646, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) } /// Storage: `Skipped::Metadata` (r:0 w:0) @@ -141,13 +141,13 @@ impl frame_system::WeightInfo for WeightInfo { /// The range of component `p` is `[0, 1000]`. fn kill_prefix(p: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `87 + p * (69 ±0)` - // Estimated: `92 + p * (70 ±0)` - // Minimum execution time: 3_966_000 picoseconds. - Weight::from_parts(4_121_000, 0) - .saturating_add(Weight::from_parts(0, 92)) - // Standard Error: 1_650 - .saturating_add(Weight::from_parts(1_205_126, 0).saturating_mul(p.into())) + // Measured: `97 + p * (69 ±0)` + // Estimated: `95 + p * (70 ±0)` + // Minimum execution time: 3_953_000 picoseconds. + Weight::from_parts(4_054_000, 0) + .saturating_add(Weight::from_parts(0, 95)) + // Standard Error: 1_761 + .saturating_add(Weight::from_parts(1_202_174, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into()))) .saturating_add(Weight::from_parts(0, 70).saturating_mul(p.into())) diff --git a/runtime/trappist/src/weights/pallet_asset_registry.rs b/runtime/trappist/src/weights/pallet_asset_registry.rs index 4de62663..b8a7c260 100644 --- a/runtime/trappist/src/weights/pallet_asset_registry.rs +++ b/runtime/trappist/src/weights/pallet_asset_registry.rs @@ -60,8 +60,8 @@ impl pallet_asset_registry::WeightInfo for WeightInfo pallet_asset_registry::WeightInfo for WeightInfo pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `145` // Estimated: `3675` - // Minimum execution time: 27_680_000 picoseconds. - Weight::from_parts(28_286_000, 0) + // Minimum execution time: 27_854_000 picoseconds. + Weight::from_parts(28_609_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -70,8 +70,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `42` // Estimated: `3675` - // Minimum execution time: 12_783_000 picoseconds. - Weight::from_parts(13_279_000, 0) + // Minimum execution time: 12_628_000 picoseconds. + Weight::from_parts(13_290_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -82,8 +82,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `314` // Estimated: `3675` - // Minimum execution time: 14_381_000 picoseconds. - Weight::from_parts(14_722_000, 0) + // Minimum execution time: 14_027_000 picoseconds. + Weight::from_parts(14_448_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -99,11 +99,11 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + c * (208 ±0)` // Estimated: `3675 + c * (2609 ±0)` - // Minimum execution time: 17_392_000 picoseconds. - Weight::from_parts(17_587_000, 0) + // Minimum execution time: 17_358_000 picoseconds. + Weight::from_parts(17_424_000, 0) .saturating_add(Weight::from_parts(0, 3675)) - // Standard Error: 12_438 - .saturating_add(Weight::from_parts(15_476_053, 0).saturating_mul(c.into())) + // Standard Error: 11_051 + .saturating_add(Weight::from_parts(15_383_621, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -119,11 +119,11 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `451 + a * (86 ±0)` // Estimated: `3675 + a * (2623 ±0)` - // Minimum execution time: 17_702_000 picoseconds. - Weight::from_parts(18_069_000, 0) + // Minimum execution time: 17_155_000 picoseconds. + Weight::from_parts(17_751_000, 0) .saturating_add(Weight::from_parts(0, 3675)) - // Standard Error: 5_851 - .saturating_add(Weight::from_parts(15_731_731, 0).saturating_mul(a.into())) + // Standard Error: 8_533 + .saturating_add(Weight::from_parts(15_660_406, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(a.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -138,8 +138,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 15_013_000 picoseconds. - Weight::from_parts(15_515_000, 0) + // Minimum execution time: 14_762_000 picoseconds. + Weight::from_parts(15_138_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -152,8 +152,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 26_101_000 picoseconds. - Weight::from_parts(26_872_000, 0) + // Minimum execution time: 25_961_000 picoseconds. + Weight::from_parts(26_455_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -166,8 +166,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `388` // Estimated: `3675` - // Minimum execution time: 32_101_000 picoseconds. - Weight::from_parts(33_200_000, 0) + // Minimum execution time: 32_533_000 picoseconds. + Weight::from_parts(33_013_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -182,8 +182,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `440` // Estimated: `6208` - // Minimum execution time: 45_175_000 picoseconds. - Weight::from_parts(46_297_000, 0) + // Minimum execution time: 45_098_000 picoseconds. + Weight::from_parts(45_702_000, 0) .saturating_add(Weight::from_parts(0, 6208)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -198,8 +198,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `440` // Estimated: `6208` - // Minimum execution time: 39_346_000 picoseconds. - Weight::from_parts(40_190_000, 0) + // Minimum execution time: 39_599_000 picoseconds. + Weight::from_parts(40_503_000, 0) .saturating_add(Weight::from_parts(0, 6208)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -214,8 +214,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `440` // Estimated: `6208` - // Minimum execution time: 44_945_000 picoseconds. - Weight::from_parts(45_734_000, 0) + // Minimum execution time: 45_253_000 picoseconds. + Weight::from_parts(46_610_000, 0) .saturating_add(Weight::from_parts(0, 6208)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) @@ -228,8 +228,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `388` // Estimated: `3675` - // Minimum execution time: 17_096_000 picoseconds. - Weight::from_parts(17_762_000, 0) + // Minimum execution time: 16_756_000 picoseconds. + Weight::from_parts(17_237_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -242,8 +242,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `388` // Estimated: `3675` - // Minimum execution time: 16_795_000 picoseconds. - Weight::from_parts(17_310_000, 0) + // Minimum execution time: 16_593_000 picoseconds. + Weight::from_parts(17_418_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -254,8 +254,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `314` // Estimated: `3675` - // Minimum execution time: 13_176_000 picoseconds. - Weight::from_parts(13_700_000, 0) + // Minimum execution time: 12_973_000 picoseconds. + Weight::from_parts(13_278_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -266,8 +266,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `314` // Estimated: `3675` - // Minimum execution time: 12_995_000 picoseconds. - Weight::from_parts(13_467_000, 0) + // Minimum execution time: 12_731_000 picoseconds. + Weight::from_parts(13_161_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -280,8 +280,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 15_336_000 picoseconds. - Weight::from_parts(15_697_000, 0) + // Minimum execution time: 15_077_000 picoseconds. + Weight::from_parts(15_443_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -292,8 +292,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 14_040_000 picoseconds. - Weight::from_parts(14_475_000, 0) + // Minimum execution time: 13_535_000 picoseconds. + Weight::from_parts(14_091_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -308,13 +308,13 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 28_182_000 picoseconds. - Weight::from_parts(28_858_733, 0) + // Minimum execution time: 28_267_000 picoseconds. + Weight::from_parts(29_256_289, 0) .saturating_add(Weight::from_parts(0, 3675)) - // Standard Error: 700 - .saturating_add(Weight::from_parts(3_947, 0).saturating_mul(n.into())) - // Standard Error: 700 - .saturating_add(Weight::from_parts(4_205, 0).saturating_mul(s.into())) + // Standard Error: 573 + .saturating_add(Weight::from_parts(2_805, 0).saturating_mul(n.into())) + // Standard Error: 573 + .saturating_add(Weight::from_parts(1_385, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -326,8 +326,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `444` // Estimated: `3675` - // Minimum execution time: 29_323_000 picoseconds. - Weight::from_parts(29_600_000, 0) + // Minimum execution time: 28_972_000 picoseconds. + Weight::from_parts(29_635_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -342,13 +342,13 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `119` // Estimated: `3675` - // Minimum execution time: 14_373_000 picoseconds. - Weight::from_parts(15_004_277, 0) + // Minimum execution time: 13_927_000 picoseconds. + Weight::from_parts(14_844_010, 0) .saturating_add(Weight::from_parts(0, 3675)) - // Standard Error: 362 - .saturating_add(Weight::from_parts(2_433, 0).saturating_mul(n.into())) - // Standard Error: 362 - .saturating_add(Weight::from_parts(1_182, 0).saturating_mul(s.into())) + // Standard Error: 476 + .saturating_add(Weight::from_parts(2_207, 0).saturating_mul(n.into())) + // Standard Error: 476 + .saturating_add(Weight::from_parts(398, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -360,8 +360,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `444` // Estimated: `3675` - // Minimum execution time: 29_066_000 picoseconds. - Weight::from_parts(29_410_000, 0) + // Minimum execution time: 28_745_000 picoseconds. + Weight::from_parts(29_143_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -372,8 +372,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 13_517_000 picoseconds. - Weight::from_parts(13_849_000, 0) + // Minimum execution time: 13_320_000 picoseconds. + Weight::from_parts(13_657_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -386,8 +386,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `314` // Estimated: `3675` - // Minimum execution time: 31_971_000 picoseconds. - Weight::from_parts(32_516_000, 0) + // Minimum execution time: 31_181_000 picoseconds. + Weight::from_parts(32_249_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -404,8 +404,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `610` // Estimated: `6208` - // Minimum execution time: 63_731_000 picoseconds. - Weight::from_parts(64_601_000, 0) + // Minimum execution time: 63_936_000 picoseconds. + Weight::from_parts(65_321_000, 0) .saturating_add(Weight::from_parts(0, 6208)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(5)) @@ -418,8 +418,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `484` // Estimated: `3675` - // Minimum execution time: 34_218_000 picoseconds. - Weight::from_parts(35_077_000, 0) + // Minimum execution time: 34_188_000 picoseconds. + Weight::from_parts(34_847_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -432,8 +432,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `484` // Estimated: `3675` - // Minimum execution time: 35_519_000 picoseconds. - Weight::from_parts(36_086_000, 0) + // Minimum execution time: 35_023_000 picoseconds. + Weight::from_parts(35_883_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -444,8 +444,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 14_441_000 picoseconds. - Weight::from_parts(14_839_000, 0) + // Minimum execution time: 14_158_000 picoseconds. + Weight::from_parts(14_580_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -460,8 +460,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `420` // Estimated: `3675` - // Minimum execution time: 34_145_000 picoseconds. - Weight::from_parts(34_929_000, 0) + // Minimum execution time: 34_364_000 picoseconds. + Weight::from_parts(35_289_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -474,8 +474,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `280` // Estimated: `3675` - // Minimum execution time: 31_387_000 picoseconds. - Weight::from_parts(31_898_000, 0) + // Minimum execution time: 31_484_000 picoseconds. + Weight::from_parts(32_051_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -490,8 +490,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `546` // Estimated: `3675` - // Minimum execution time: 31_369_000 picoseconds. - Weight::from_parts(32_104_000, 0) + // Minimum execution time: 31_621_000 picoseconds. + Weight::from_parts(32_332_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -504,8 +504,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `439` // Estimated: `3675` - // Minimum execution time: 28_416_000 picoseconds. - Weight::from_parts(29_024_000, 0) + // Minimum execution time: 28_374_000 picoseconds. + Weight::from_parts(29_273_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -518,8 +518,8 @@ impl pallet_assets::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `388` // Estimated: `3675` - // Minimum execution time: 16_779_000 picoseconds. - Weight::from_parts(17_403_000, 0) + // Minimum execution time: 16_795_000 picoseconds. + Weight::from_parts(17_157_000, 0) .saturating_add(Weight::from_parts(0, 3675)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/trappist/src/weights/pallet_balances.rs b/runtime/trappist/src/weights/pallet_balances.rs index 932c37ef..e2f0619f 100644 --- a/runtime/trappist/src/weights/pallet_balances.rs +++ b/runtime/trappist/src/weights/pallet_balances.rs @@ -56,8 +56,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3593` - // Minimum execution time: 55_599_000 picoseconds. - Weight::from_parts(56_642_000, 0) + // Minimum execution time: 56_447_000 picoseconds. + Weight::from_parts(57_406_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -68,8 +68,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3593` - // Minimum execution time: 41_363_000 picoseconds. - Weight::from_parts(42_086_000, 0) + // Minimum execution time: 41_678_000 picoseconds. + Weight::from_parts(42_215_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -80,8 +80,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `103` // Estimated: `3593` - // Minimum execution time: 15_754_000 picoseconds. - Weight::from_parts(16_292_000, 0) + // Minimum execution time: 15_963_000 picoseconds. + Weight::from_parts(16_387_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -92,8 +92,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `103` // Estimated: `3593` - // Minimum execution time: 23_653_000 picoseconds. - Weight::from_parts(24_211_000, 0) + // Minimum execution time: 23_895_000 picoseconds. + Weight::from_parts(24_311_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -104,8 +104,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `103` // Estimated: `6196` - // Minimum execution time: 58_620_000 picoseconds. - Weight::from_parts(59_698_000, 0) + // Minimum execution time: 58_721_000 picoseconds. + Weight::from_parts(59_706_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -116,8 +116,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3593` - // Minimum execution time: 52_207_000 picoseconds. - Weight::from_parts(52_543_000, 0) + // Minimum execution time: 52_451_000 picoseconds. + Weight::from_parts(53_280_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -128,8 +128,8 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `103` // Estimated: `3593` - // Minimum execution time: 18_520_000 picoseconds. - Weight::from_parts(19_176_000, 0) + // Minimum execution time: 18_535_000 picoseconds. + Weight::from_parts(19_248_000, 0) .saturating_add(Weight::from_parts(0, 3593)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -141,11 +141,11 @@ impl pallet_balances::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + u * (136 ±0)` // Estimated: `990 + u * (2603 ±0)` - // Minimum execution time: 18_163_000 picoseconds. - Weight::from_parts(18_491_000, 0) + // Minimum execution time: 18_541_000 picoseconds. + Weight::from_parts(18_868_000, 0) .saturating_add(Weight::from_parts(0, 990)) - // Standard Error: 15_326 - .saturating_add(Weight::from_parts(15_630_628, 0).saturating_mul(u.into())) + // Standard Error: 18_143 + .saturating_add(Weight::from_parts(15_722_846, 0).saturating_mul(u.into())) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(u.into()))) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(u.into()))) .saturating_add(Weight::from_parts(0, 2603).saturating_mul(u.into())) diff --git a/runtime/trappist/src/weights/pallet_collator_selection.rs b/runtime/trappist/src/weights/pallet_collator_selection.rs index ff5416f5..e543c607 100644 --- a/runtime/trappist/src/weights/pallet_collator_selection.rs +++ b/runtime/trappist/src/weights/pallet_collator_selection.rs @@ -59,11 +59,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `214 + b * (78 ±0)` // Estimated: `1203 + b * (2554 ±0)` - // Minimum execution time: 14_528_000 picoseconds. - Weight::from_parts(11_843_237, 0) + // Minimum execution time: 14_161_000 picoseconds. + Weight::from_parts(9_709_237, 0) .saturating_add(Weight::from_parts(0, 1203)) - // Standard Error: 4_144 - .saturating_add(Weight::from_parts(3_148_150, 0).saturating_mul(b.into())) + // Standard Error: 6_372 + .saturating_add(Weight::from_parts(3_250_552, 0).saturating_mul(b.into())) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(b.into()))) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 2554).saturating_mul(b.into())) @@ -82,13 +82,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1293 + b * (32 ±0) + c * (48 ±0)` // Estimated: `49487 + b * (33 ±0) + c * (49 ±0)` - // Minimum execution time: 59_736_000 picoseconds. - Weight::from_parts(48_521_566, 0) + // Minimum execution time: 64_316_000 picoseconds. + Weight::from_parts(55_855_050, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 10_641 - .saturating_add(Weight::from_parts(55_025, 0).saturating_mul(b.into())) - // Standard Error: 1_044 - .saturating_add(Weight::from_parts(144_392, 0).saturating_mul(c.into())) + // Standard Error: 1_722 + .saturating_add(Weight::from_parts(163_779, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 33).saturating_mul(b.into())) @@ -103,11 +101,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `82 + b * (32 ±0)` // Estimated: `49487` - // Minimum execution time: 14_636_000 picoseconds. - Weight::from_parts(16_673_417, 0) + // Minimum execution time: 14_360_000 picoseconds. + Weight::from_parts(15_438_112, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 1_032 - .saturating_add(Weight::from_parts(92_440, 0).saturating_mul(b.into())) + // Standard Error: 872 + .saturating_add(Weight::from_parts(129_883, 0).saturating_mul(b.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -117,8 +115,8 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_329_000 picoseconds. - Weight::from_parts(7_615_000, 0) + // Minimum execution time: 6_723_000 picoseconds. + Weight::from_parts(7_081_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -128,8 +126,8 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_152_000 picoseconds. - Weight::from_parts(7_635_000, 0) + // Minimum execution time: 6_864_000 picoseconds. + Weight::from_parts(7_075_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -150,11 +148,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `1104 + c * (48 ±0)` // Estimated: `49487 + c * (49 ±0)` - // Minimum execution time: 41_638_000 picoseconds. - Weight::from_parts(39_414_396, 0) + // Minimum execution time: 40_958_000 picoseconds. + Weight::from_parts(39_328_218, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 1_674 - .saturating_add(Weight::from_parts(157_563, 0).saturating_mul(c.into())) + // Standard Error: 2_446 + .saturating_add(Weight::from_parts(194_381, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 49).saturating_mul(c.into())) @@ -170,11 +168,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `539 + c * (48 ±0)` // Estimated: `49487` - // Minimum execution time: 32_774_000 picoseconds. - Weight::from_parts(31_659_377, 0) + // Minimum execution time: 31_761_000 picoseconds. + Weight::from_parts(44_879_412, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 1_626 - .saturating_add(Weight::from_parts(141_920, 0).saturating_mul(c.into())) + // Standard Error: 1_976 + .saturating_add(Weight::from_parts(138_810, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -188,8 +186,8 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `140` // Estimated: `6196` - // Minimum execution time: 46_455_000 picoseconds. - Weight::from_parts(47_117_000, 0) + // Minimum execution time: 45_737_000 picoseconds. + Weight::from_parts(46_959_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(4)) @@ -210,11 +208,11 @@ impl pallet_collator_selection::WeightInfo for WeightIn // Proof Size summary in bytes: // Measured: `22758 + c * (97 ±0) + r * (116 ±0)` // Estimated: `49487 + c * (2519 ±0) + r * (2603 ±0)` - // Minimum execution time: 17_216_000 picoseconds. - Weight::from_parts(17_612_000, 0) + // Minimum execution time: 17_240_000 picoseconds. + Weight::from_parts(17_598_000, 0) .saturating_add(Weight::from_parts(0, 49487)) - // Standard Error: 717_852 - .saturating_add(Weight::from_parts(30_766_703, 0).saturating_mul(c.into())) + // Standard Error: 730_170 + .saturating_add(Weight::from_parts(31_262_187, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(c.into()))) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/trappist/src/weights/pallet_collective.rs b/runtime/trappist/src/weights/pallet_collective.rs index 05ab797c..e71f6465 100644 --- a/runtime/trappist/src/weights/pallet_collective.rs +++ b/runtime/trappist/src/weights/pallet_collective.rs @@ -65,13 +65,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + m * (3232 ±0) + p * (3190 ±0)` // Estimated: `15691 + m * (1967 ±23) + p * (4332 ±23)` - // Minimum execution time: 16_224_000 picoseconds. - Weight::from_parts(16_988_000, 0) + // Minimum execution time: 16_187_000 picoseconds. + Weight::from_parts(16_554_000, 0) .saturating_add(Weight::from_parts(0, 15691)) - // Standard Error: 58_846 - .saturating_add(Weight::from_parts(4_467_888, 0).saturating_mul(m.into())) - // Standard Error: 58_846 - .saturating_add(Weight::from_parts(7_868_399, 0).saturating_mul(p.into())) + // Standard Error: 59_222 + .saturating_add(Weight::from_parts(4_499_273, 0).saturating_mul(m.into())) + // Standard Error: 59_222 + .saturating_add(Weight::from_parts(7_865_176, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -89,13 +89,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `132 + m * (32 ±0)` // Estimated: `1618 + m * (32 ±0)` - // Minimum execution time: 19_766_000 picoseconds. - Weight::from_parts(19_316_881, 0) + // Minimum execution time: 19_565_000 picoseconds. + Weight::from_parts(18_928_633, 0) .saturating_add(Weight::from_parts(0, 1618)) - // Standard Error: 29 - .saturating_add(Weight::from_parts(1_554, 0).saturating_mul(b.into())) - // Standard Error: 302 - .saturating_add(Weight::from_parts(11_364, 0).saturating_mul(m.into())) + // Standard Error: 30 + .saturating_add(Weight::from_parts(1_601, 0).saturating_mul(b.into())) + // Standard Error: 317 + .saturating_add(Weight::from_parts(13_186, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } @@ -111,13 +111,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `132 + m * (32 ±0)` // Estimated: `3598 + m * (32 ±0)` - // Minimum execution time: 22_611_000 picoseconds. - Weight::from_parts(21_483_130, 0) + // Minimum execution time: 22_481_000 picoseconds. + Weight::from_parts(21_708_352, 0) .saturating_add(Weight::from_parts(0, 3598)) - // Standard Error: 46 - .saturating_add(Weight::from_parts(1_982, 0).saturating_mul(b.into())) - // Standard Error: 483 - .saturating_add(Weight::from_parts(24_979, 0).saturating_mul(m.into())) + // Standard Error: 35 + .saturating_add(Weight::from_parts(1_672, 0).saturating_mul(b.into())) + // Standard Error: 361 + .saturating_add(Weight::from_parts(23_474, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(m.into())) } @@ -138,15 +138,15 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `322 + m * (32 ±0) + p * (36 ±0)` // Estimated: `3714 + m * (33 ±0) + p * (36 ±0)` - // Minimum execution time: 25_401_000 picoseconds. - Weight::from_parts(24_094_051, 0) + // Minimum execution time: 25_512_000 picoseconds. + Weight::from_parts(23_799_103, 0) .saturating_add(Weight::from_parts(0, 3714)) - // Standard Error: 101 - .saturating_add(Weight::from_parts(3_128, 0).saturating_mul(b.into())) - // Standard Error: 1_059 - .saturating_add(Weight::from_parts(27_909, 0).saturating_mul(m.into())) - // Standard Error: 1_046 - .saturating_add(Weight::from_parts(191_987, 0).saturating_mul(p.into())) + // Standard Error: 109 + .saturating_add(Weight::from_parts(3_306, 0).saturating_mul(b.into())) + // Standard Error: 1_141 + .saturating_add(Weight::from_parts(28_961, 0).saturating_mul(m.into())) + // Standard Error: 1_126 + .saturating_add(Weight::from_parts(187_719, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 33).saturating_mul(m.into())) @@ -161,11 +161,11 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `771 + m * (64 ±0)` // Estimated: `4235 + m * (64 ±0)` - // Minimum execution time: 26_092_000 picoseconds. - Weight::from_parts(27_425_977, 0) + // Minimum execution time: 25_733_000 picoseconds. + Weight::from_parts(26_883_652, 0) .saturating_add(Weight::from_parts(0, 4235)) - // Standard Error: 1_072 - .saturating_add(Weight::from_parts(45_590, 0).saturating_mul(m.into())) + // Standard Error: 583 + .saturating_add(Weight::from_parts(35_258, 0).saturating_mul(m.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 64).saturating_mul(m.into())) @@ -184,13 +184,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `360 + m * (64 ±0) + p * (36 ±0)` // Estimated: `3805 + m * (65 ±0) + p * (36 ±0)` - // Minimum execution time: 28_134_000 picoseconds. - Weight::from_parts(28_694_626, 0) + // Minimum execution time: 28_222_000 picoseconds. + Weight::from_parts(27_570_657, 0) .saturating_add(Weight::from_parts(0, 3805)) - // Standard Error: 965 - .saturating_add(Weight::from_parts(27_359, 0).saturating_mul(m.into())) - // Standard Error: 941 - .saturating_add(Weight::from_parts(179_851, 0).saturating_mul(p.into())) + // Standard Error: 929 + .saturating_add(Weight::from_parts(31_593, 0).saturating_mul(m.into())) + // Standard Error: 906 + .saturating_add(Weight::from_parts(181_403, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 65).saturating_mul(m.into())) @@ -213,15 +213,15 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `762 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)` // Estimated: `4079 + b * (1 ±0) + m * (66 ±0) + p * (40 ±0)` - // Minimum execution time: 45_018_000 picoseconds. - Weight::from_parts(42_862_460, 0) + // Minimum execution time: 44_401_000 picoseconds. + Weight::from_parts(44_425_310, 0) .saturating_add(Weight::from_parts(0, 4079)) // Standard Error: 223 - .saturating_add(Weight::from_parts(4_480, 0).saturating_mul(b.into())) + .saturating_add(Weight::from_parts(3_678, 0).saturating_mul(b.into())) // Standard Error: 2_360 - .saturating_add(Weight::from_parts(23_383, 0).saturating_mul(m.into())) + .saturating_add(Weight::from_parts(8_501, 0).saturating_mul(m.into())) // Standard Error: 2_300 - .saturating_add(Weight::from_parts(247_401, 0).saturating_mul(p.into())) + .saturating_add(Weight::from_parts(238_381, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(b.into())) @@ -244,13 +244,13 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `380 + m * (64 ±0) + p * (36 ±0)` // Estimated: `3825 + m * (65 ±0) + p * (36 ±0)` - // Minimum execution time: 31_435_000 picoseconds. - Weight::from_parts(30_599_046, 0) + // Minimum execution time: 30_919_000 picoseconds. + Weight::from_parts(31_091_084, 0) .saturating_add(Weight::from_parts(0, 3825)) - // Standard Error: 1_034 - .saturating_add(Weight::from_parts(36_563, 0).saturating_mul(m.into())) - // Standard Error: 1_008 - .saturating_add(Weight::from_parts(185_099, 0).saturating_mul(p.into())) + // Standard Error: 940 + .saturating_add(Weight::from_parts(28_463, 0).saturating_mul(m.into())) + // Standard Error: 916 + .saturating_add(Weight::from_parts(180_145, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 65).saturating_mul(m.into())) @@ -275,15 +275,15 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `782 + b * (1 ±0) + m * (64 ±0) + p * (40 ±0)` // Estimated: `4099 + b * (1 ±0) + m * (66 ±0) + p * (40 ±0)` - // Minimum execution time: 48_225_000 picoseconds. - Weight::from_parts(48_012_798, 0) + // Minimum execution time: 47_681_000 picoseconds. + Weight::from_parts(46_419_819, 0) .saturating_add(Weight::from_parts(0, 4099)) - // Standard Error: 195 - .saturating_add(Weight::from_parts(3_652, 0).saturating_mul(b.into())) - // Standard Error: 2_067 - .saturating_add(Weight::from_parts(25_730, 0).saturating_mul(m.into())) - // Standard Error: 2_015 - .saturating_add(Weight::from_parts(246_200, 0).saturating_mul(p.into())) + // Standard Error: 187 + .saturating_add(Weight::from_parts(4_238, 0).saturating_mul(b.into())) + // Standard Error: 1_981 + .saturating_add(Weight::from_parts(32_912, 0).saturating_mul(m.into())) + // Standard Error: 1_931 + .saturating_add(Weight::from_parts(240_400, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(b.into())) @@ -301,11 +301,11 @@ impl pallet_collective::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `189 + p * (32 ±0)` // Estimated: `1674 + p * (32 ±0)` - // Minimum execution time: 15_594_000 picoseconds. - Weight::from_parts(16_732_207, 0) + // Minimum execution time: 15_520_000 picoseconds. + Weight::from_parts(16_927_359, 0) .saturating_add(Weight::from_parts(0, 1674)) - // Standard Error: 1_054 - .saturating_add(Weight::from_parts(169_078, 0).saturating_mul(p.into())) + // Standard Error: 896 + .saturating_add(Weight::from_parts(157_794, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 32).saturating_mul(p.into())) diff --git a/runtime/trappist/src/weights/pallet_contracts.rs b/runtime/trappist/src/weights/pallet_contracts.rs index 87172c66..6afe2720 100644 --- a/runtime/trappist/src/weights/pallet_contracts.rs +++ b/runtime/trappist/src/weights/pallet_contracts.rs @@ -56,8 +56,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `1561` - // Minimum execution time: 3_137_000 picoseconds. - Weight::from_parts(3_338_000, 0) + // Minimum execution time: 3_136_000 picoseconds. + Weight::from_parts(3_318_000, 0) .saturating_add(Weight::from_parts(0, 1561)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -68,11 +68,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `391 + k * (69 ±0)` // Estimated: `381 + k * (70 ±0)` - // Minimum execution time: 13_467_000 picoseconds. - Weight::from_parts(13_716_000, 0) + // Minimum execution time: 13_777_000 picoseconds. + Weight::from_parts(14_145_000, 0) .saturating_add(Weight::from_parts(0, 381)) - // Standard Error: 1_617 - .saturating_add(Weight::from_parts(1_171_447, 0).saturating_mul(k.into())) + // Standard Error: 1_867 + .saturating_add(Weight::from_parts(1_144_850, 0).saturating_mul(k.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(k.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -86,11 +86,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `145 + c * (1 ±0)` // Estimated: `6083 + c * (1 ±0)` - // Minimum execution time: 8_705_000 picoseconds. - Weight::from_parts(5_665_616, 0) + // Minimum execution time: 8_704_000 picoseconds. + Weight::from_parts(5_727_858, 0) .saturating_add(Weight::from_parts(0, 6083)) // Standard Error: 5 - .saturating_add(Weight::from_parts(1_710, 0).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(1_650, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(c.into())) @@ -103,8 +103,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `482` // Estimated: `6422` - // Minimum execution time: 16_652_000 picoseconds. - Weight::from_parts(17_452_000, 0) + // Minimum execution time: 17_044_000 picoseconds. + Weight::from_parts(18_093_000, 0) .saturating_add(Weight::from_parts(0, 6422)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(1)) @@ -118,11 +118,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `105 + k * (1 ±0)` // Estimated: `3569 + k * (1 ±0)` - // Minimum execution time: 4_310_000 picoseconds. - Weight::from_parts(4_504_000, 0) + // Minimum execution time: 4_336_000 picoseconds. + Weight::from_parts(4_525_000, 0) .saturating_add(Weight::from_parts(0, 3569)) - // Standard Error: 481 - .saturating_add(Weight::from_parts(996_234, 0).saturating_mul(k.into())) + // Standard Error: 594 + .saturating_add(Weight::from_parts(982_017, 0).saturating_mul(k.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(k.into()))) @@ -141,11 +141,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `259 + c * (1 ±0)` // Estimated: `6197 + c * (1 ±0)` - // Minimum execution time: 16_570_000 picoseconds. - Weight::from_parts(17_160_154, 0) + // Minimum execution time: 16_326_000 picoseconds. + Weight::from_parts(16_948_721, 0) .saturating_add(Weight::from_parts(0, 6197)) // Standard Error: 1 - .saturating_add(Weight::from_parts(530, 0).saturating_mul(c.into())) + .saturating_add(Weight::from_parts(431, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(c.into())) @@ -156,8 +156,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `1561` - // Minimum execution time: 3_679_000 picoseconds. - Weight::from_parts(4_017_000, 0) + // Minimum execution time: 3_929_000 picoseconds. + Weight::from_parts(4_056_000, 0) .saturating_add(Weight::from_parts(0, 1561)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -170,8 +170,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `3565` - // Minimum execution time: 10_938_000 picoseconds. - Weight::from_parts(11_619_000, 0) + // Minimum execution time: 10_944_000 picoseconds. + Weight::from_parts(11_328_000, 0) .saturating_add(Weight::from_parts(0, 3565)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -182,8 +182,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3541` - // Minimum execution time: 4_144_000 picoseconds. - Weight::from_parts(4_460_000, 0) + // Minimum execution time: 4_278_000 picoseconds. + Weight::from_parts(4_443_000, 0) .saturating_add(Weight::from_parts(0, 3541)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -195,8 +195,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `101` // Estimated: `3566` - // Minimum execution time: 5_819_000 picoseconds. - Weight::from_parts(6_261_000, 0) + // Minimum execution time: 6_000_000 picoseconds. + Weight::from_parts(6_332_000, 0) .saturating_add(Weight::from_parts(0, 3566)) .saturating_add(T::DbWeight::get().reads(2)) } @@ -208,8 +208,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3541` - // Minimum execution time: 6_097_000 picoseconds. - Weight::from_parts(6_368_000, 0) + // Minimum execution time: 6_157_000 picoseconds. + Weight::from_parts(6_440_000, 0) .saturating_add(Weight::from_parts(0, 3541)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -233,11 +233,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `661 + c * (1 ±0)` // Estimated: `6608 + c * (1 ±0)` - // Minimum execution time: 364_593_000 picoseconds. - Weight::from_parts(334_953_058, 0) + // Minimum execution time: 287_018_000 picoseconds. + Weight::from_parts(277_825_803, 0) .saturating_add(Weight::from_parts(0, 6608)) - // Standard Error: 73 - .saturating_add(Weight::from_parts(38_473, 0).saturating_mul(c.into())) + // Standard Error: 78 + .saturating_add(Weight::from_parts(37_809, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(c.into())) @@ -265,15 +265,15 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `152` // Estimated: `8578` - // Minimum execution time: 5_479_633_000 picoseconds. - Weight::from_parts(186_445_948, 0) + // Minimum execution time: 4_878_371_000 picoseconds. + Weight::from_parts(229_415_341, 0) .saturating_add(Weight::from_parts(0, 8578)) - // Standard Error: 201 - .saturating_add(Weight::from_parts(117_432, 0).saturating_mul(c.into())) - // Standard Error: 24 - .saturating_add(Weight::from_parts(2_562, 0).saturating_mul(i.into())) - // Standard Error: 24 - .saturating_add(Weight::from_parts(2_597, 0).saturating_mul(s.into())) + // Standard Error: 196 + .saturating_add(Weight::from_parts(113_112, 0).saturating_mul(c.into())) + // Standard Error: 23 + .saturating_add(Weight::from_parts(2_282, 0).saturating_mul(i.into())) + // Standard Error: 23 + .saturating_add(Weight::from_parts(2_291, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().writes(9)) } @@ -299,13 +299,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `376` // Estimated: `6354` - // Minimum execution time: 2_443_188_000 picoseconds. - Weight::from_parts(2_495_701_000, 0) + // Minimum execution time: 2_224_525_000 picoseconds. + Weight::from_parts(2_237_256_000, 0) .saturating_add(Weight::from_parts(0, 6354)) - // Standard Error: 30 - .saturating_add(Weight::from_parts(818, 0).saturating_mul(i.into())) - // Standard Error: 30 - .saturating_add(Weight::from_parts(962, 0).saturating_mul(s.into())) + // Standard Error: 25 + .saturating_add(Weight::from_parts(630, 0).saturating_mul(i.into())) + // Standard Error: 25 + .saturating_add(Weight::from_parts(936, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().writes(7)) } @@ -327,8 +327,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `763` // Estimated: `6703` - // Minimum execution time: 209_463_000 picoseconds. - Weight::from_parts(217_512_000, 0) + // Minimum execution time: 203_782_000 picoseconds. + Weight::from_parts(207_849_000, 0) .saturating_add(Weight::from_parts(0, 6703)) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(4)) @@ -346,11 +346,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3541` - // Minimum execution time: 322_302_000 picoseconds. - Weight::from_parts(296_607_348, 0) + // Minimum execution time: 252_872_000 picoseconds. + Weight::from_parts(224_789_329, 0) .saturating_add(Weight::from_parts(0, 3541)) - // Standard Error: 115 - .saturating_add(Weight::from_parts(75_377, 0).saturating_mul(c.into())) + // Standard Error: 114 + .saturating_add(Weight::from_parts(74_401, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -366,8 +366,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `191` // Estimated: `3656` - // Minimum execution time: 33_654_000 picoseconds. - Weight::from_parts(34_352_000, 0) + // Minimum execution time: 32_595_000 picoseconds. + Weight::from_parts(33_848_000, 0) .saturating_add(Weight::from_parts(0, 3656)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -384,8 +384,8 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `517` // Estimated: `8932` - // Minimum execution time: 34_486_000 picoseconds. - Weight::from_parts(35_428_000, 0) + // Minimum execution time: 33_839_000 picoseconds. + Weight::from_parts(34_637_000, 0) .saturating_add(Weight::from_parts(0, 8932)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(6)) @@ -409,11 +409,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `765 + r * (6 ±0)` // Estimated: `6706 + r * (6 ±0)` - // Minimum execution time: 334_140_000 picoseconds. - Weight::from_parts(344_058_027, 0) + // Minimum execution time: 268_512_000 picoseconds. + Weight::from_parts(281_137_808, 0) .saturating_add(Weight::from_parts(0, 6706)) - // Standard Error: 465 - .saturating_add(Weight::from_parts(351_113, 0).saturating_mul(r.into())) + // Standard Error: 519 + .saturating_add(Weight::from_parts(353_682, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -437,11 +437,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `823 + r * (240 ±0)` // Estimated: `6727 + r * (2715 ±0)` - // Minimum execution time: 336_404_000 picoseconds. - Weight::from_parts(150_362_011, 0) + // Minimum execution time: 269_544_000 picoseconds. + Weight::from_parts(107_666_144, 0) .saturating_add(Weight::from_parts(0, 6727)) - // Standard Error: 7_331 - .saturating_add(Weight::from_parts(3_886_039, 0).saturating_mul(r.into())) + // Standard Error: 6_635 + .saturating_add(Weight::from_parts(3_699_150, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -466,11 +466,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `815 + r * (244 ±0)` // Estimated: `6731 + r * (2719 ±0)` - // Minimum execution time: 336_716_000 picoseconds. - Weight::from_parts(148_066_972, 0) + // Minimum execution time: 270_692_000 picoseconds. + Weight::from_parts(101_072_159, 0) .saturating_add(Weight::from_parts(0, 6731)) - // Standard Error: 7_607 - .saturating_add(Weight::from_parts(4_752_845, 0).saturating_mul(r.into())) + // Standard Error: 7_060 + .saturating_add(Weight::from_parts(4_663_054, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -495,11 +495,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `772 + r * (6 ±0)` // Estimated: `6714 + r * (6 ±0)` - // Minimum execution time: 336_213_000 picoseconds. - Weight::from_parts(341_993_049, 0) + // Minimum execution time: 258_767_000 picoseconds. + Weight::from_parts(279_786_027, 0) .saturating_add(Weight::from_parts(0, 6714)) - // Standard Error: 458 - .saturating_add(Weight::from_parts(435_717, 0).saturating_mul(r.into())) + // Standard Error: 666 + .saturating_add(Weight::from_parts(444_320, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -523,11 +523,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `762 + r * (3 ±0)` // Estimated: `6707 + r * (3 ±0)` - // Minimum execution time: 331_257_000 picoseconds. - Weight::from_parts(340_650_198, 0) + // Minimum execution time: 261_066_000 picoseconds. + Weight::from_parts(275_972_823, 0) .saturating_add(Weight::from_parts(0, 6707)) - // Standard Error: 350 - .saturating_add(Weight::from_parts(189_019, 0).saturating_mul(r.into())) + // Standard Error: 355 + .saturating_add(Weight::from_parts(185_499, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into())) @@ -549,11 +549,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `652 + r * (3 ±0)` // Estimated: `6592 + r * (3 ±0)` - // Minimum execution time: 319_631_000 picoseconds. - Weight::from_parts(331_232_917, 0) + // Minimum execution time: 246_058_000 picoseconds. + Weight::from_parts(267_833_024, 0) .saturating_add(Weight::from_parts(0, 6592)) - // Standard Error: 424 - .saturating_add(Weight::from_parts(167_252, 0).saturating_mul(r.into())) + // Standard Error: 348 + .saturating_add(Weight::from_parts(161_840, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into())) @@ -577,11 +577,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `766 + r * (6 ±0)` // Estimated: `6708 + r * (6 ±0)` - // Minimum execution time: 335_175_000 picoseconds. - Weight::from_parts(348_092_351, 0) + // Minimum execution time: 271_666_000 picoseconds. + Weight::from_parts(280_255_488, 0) .saturating_add(Weight::from_parts(0, 6708)) - // Standard Error: 461 - .saturating_add(Weight::from_parts(341_001, 0).saturating_mul(r.into())) + // Standard Error: 554 + .saturating_add(Weight::from_parts(346_543, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -605,11 +605,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `762 + r * (6 ±0)` // Estimated: `6703 + r * (6 ±0)` - // Minimum execution time: 337_593_000 picoseconds. - Weight::from_parts(346_233_477, 0) + // Minimum execution time: 272_529_000 picoseconds. + Weight::from_parts(280_610_029, 0) .saturating_add(Weight::from_parts(0, 6703)) - // Standard Error: 520 - .saturating_add(Weight::from_parts(388_240, 0).saturating_mul(r.into())) + // Standard Error: 577 + .saturating_add(Weight::from_parts(378_276, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -633,11 +633,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `869 + r * (6 ±0)` // Estimated: `6810 + r * (6 ±0)` - // Minimum execution time: 335_724_000 picoseconds. - Weight::from_parts(377_674_207, 0) + // Minimum execution time: 269_708_000 picoseconds. + Weight::from_parts(288_696_733, 0) .saturating_add(Weight::from_parts(0, 6810)) - // Standard Error: 3_114 - .saturating_add(Weight::from_parts(1_551_392, 0).saturating_mul(r.into())) + // Standard Error: 741 + .saturating_add(Weight::from_parts(1_689_788, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -661,11 +661,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `776 + r * (6 ±0)` // Estimated: `6725 + r * (6 ±0)` - // Minimum execution time: 339_158_000 picoseconds. - Weight::from_parts(342_771_188, 0) + // Minimum execution time: 269_973_000 picoseconds. + Weight::from_parts(280_409_866, 0) .saturating_add(Weight::from_parts(0, 6725)) - // Standard Error: 498 - .saturating_add(Weight::from_parts(346_790, 0).saturating_mul(r.into())) + // Standard Error: 491 + .saturating_add(Weight::from_parts(343_950, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -689,11 +689,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `774 + r * (6 ±0)` // Estimated: `6723 + r * (6 ±0)` - // Minimum execution time: 337_052_000 picoseconds. - Weight::from_parts(347_436_407, 0) + // Minimum execution time: 269_315_000 picoseconds. + Weight::from_parts(278_022_127, 0) .saturating_add(Weight::from_parts(0, 6723)) - // Standard Error: 521 - .saturating_add(Weight::from_parts(338_187, 0).saturating_mul(r.into())) + // Standard Error: 509 + .saturating_add(Weight::from_parts(344_921, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -717,11 +717,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `771 + r * (6 ±0)` // Estimated: `6721 + r * (6 ±0)` - // Minimum execution time: 336_378_000 picoseconds. - Weight::from_parts(345_941_816, 0) + // Minimum execution time: 270_397_000 picoseconds. + Weight::from_parts(281_354_084, 0) .saturating_add(Weight::from_parts(0, 6721)) - // Standard Error: 427 - .saturating_add(Weight::from_parts(336_788, 0).saturating_mul(r.into())) + // Standard Error: 531 + .saturating_add(Weight::from_parts(337_739, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -745,11 +745,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `762 + r * (6 ±0)` // Estimated: `6707 + r * (6 ±0)` - // Minimum execution time: 335_244_000 picoseconds. - Weight::from_parts(345_002_383, 0) + // Minimum execution time: 268_668_000 picoseconds. + Weight::from_parts(277_668_928, 0) .saturating_add(Weight::from_parts(0, 6707)) - // Standard Error: 567 - .saturating_add(Weight::from_parts(345_505, 0).saturating_mul(r.into())) + // Standard Error: 459 + .saturating_add(Weight::from_parts(344_557, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -775,11 +775,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `773 + r * (14 ±0)` // Estimated: `6710 + r * (14 ±0)` - // Minimum execution time: 335_757_000 picoseconds. - Weight::from_parts(346_981_319, 0) + // Minimum execution time: 272_253_000 picoseconds. + Weight::from_parts(288_010_282, 0) .saturating_add(Weight::from_parts(0, 6710)) - // Standard Error: 746 - .saturating_add(Weight::from_parts(1_610_993, 0).saturating_mul(r.into())) + // Standard Error: 744 + .saturating_add(Weight::from_parts(1_589_434, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 14).saturating_mul(r.into())) @@ -803,11 +803,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `764 + r * (6 ±0)` // Estimated: `6708 + r * (6 ±0)` - // Minimum execution time: 333_650_000 picoseconds. - Weight::from_parts(347_131_037, 0) + // Minimum execution time: 255_130_000 picoseconds. + Weight::from_parts(280_938_305, 0) .saturating_add(Weight::from_parts(0, 6708)) - // Standard Error: 466 - .saturating_add(Weight::from_parts(286_382, 0).saturating_mul(r.into())) + // Standard Error: 468 + .saturating_add(Weight::from_parts(287_808, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into())) @@ -831,11 +831,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `768` // Estimated: `6708` - // Minimum execution time: 333_590_000 picoseconds. - Weight::from_parts(286_249_256, 0) + // Minimum execution time: 269_310_000 picoseconds. + Weight::from_parts(224_836_613, 0) .saturating_add(Weight::from_parts(0, 6708)) - // Standard Error: 22 - .saturating_add(Weight::from_parts(1_111, 0).saturating_mul(n.into())) + // Standard Error: 24 + .saturating_add(Weight::from_parts(988, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -858,11 +858,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `752 + r * (45 ±0)` // Estimated: `6692 + r * (45 ±0)` - // Minimum execution time: 327_116_000 picoseconds. - Weight::from_parts(337_874_004, 0) + // Minimum execution time: 246_549_000 picoseconds. + Weight::from_parts(274_047_226, 0) .saturating_add(Weight::from_parts(0, 6692)) - // Standard Error: 761_295 - .saturating_add(Weight::from_parts(6_034_295, 0).saturating_mul(r.into())) + // Standard Error: 800_251 + .saturating_add(Weight::from_parts(685_073, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 45).saturating_mul(r.into())) @@ -886,11 +886,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `762` // Estimated: `6715` - // Minimum execution time: 333_831_000 picoseconds. - Weight::from_parts(340_573_321, 0) + // Minimum execution time: 258_379_000 picoseconds. + Weight::from_parts(274_833_551, 0) .saturating_add(Weight::from_parts(0, 6715)) // Standard Error: 0 - .saturating_add(Weight::from_parts(452, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(318, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -917,11 +917,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `794 + r * (249 ±0)` // Estimated: `6734 + r * (7674 ±0)` - // Minimum execution time: 331_663_000 picoseconds. - Weight::from_parts(343_301_161, 0) + // Minimum execution time: 251_062_000 picoseconds. + Weight::from_parts(276_909_742, 0) .saturating_add(Weight::from_parts(0, 6734)) - // Standard Error: 889_552 - .saturating_add(Weight::from_parts(122_381_938, 0).saturating_mul(r.into())) + // Standard Error: 777_137 + .saturating_add(Weight::from_parts(128_567_557, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((5_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -949,11 +949,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `773 + r * (10 ±0)` // Estimated: `6719 + r * (10 ±0)` - // Minimum execution time: 334_161_000 picoseconds. - Weight::from_parts(353_291_577, 0) + // Minimum execution time: 270_125_000 picoseconds. + Weight::from_parts(274_650_279, 0) .saturating_add(Weight::from_parts(0, 6719)) - // Standard Error: 1_098 - .saturating_add(Weight::from_parts(1_826_451, 0).saturating_mul(r.into())) + // Standard Error: 3_058 + .saturating_add(Weight::from_parts(1_938_521, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 10).saturating_mul(r.into())) @@ -977,11 +977,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `762 + r * (10 ±0)` // Estimated: `6707 + r * (10 ±0)` - // Minimum execution time: 332_949_000 picoseconds. - Weight::from_parts(352_805_387, 0) + // Minimum execution time: 266_037_000 picoseconds. + Weight::from_parts(279_390_276, 0) .saturating_add(Weight::from_parts(0, 6707)) - // Standard Error: 2_829 - .saturating_add(Weight::from_parts(4_282_507, 0).saturating_mul(r.into())) + // Standard Error: 1_192 + .saturating_add(Weight::from_parts(4_062_328, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 10).saturating_mul(r.into())) @@ -1006,13 +1006,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `781 + t * (32 ±0)` // Estimated: `6728 + t * (2508 ±0)` - // Minimum execution time: 353_584_000 picoseconds. - Weight::from_parts(347_474_501, 0) + // Minimum execution time: 271_594_000 picoseconds. + Weight::from_parts(287_082_057, 0) .saturating_add(Weight::from_parts(0, 6728)) - // Standard Error: 96_454 - .saturating_add(Weight::from_parts(2_870_159, 0).saturating_mul(t.into())) - // Standard Error: 26 - .saturating_add(Weight::from_parts(1_006, 0).saturating_mul(n.into())) + // Standard Error: 90_713 + .saturating_add(Weight::from_parts(2_554_764, 0).saturating_mul(t.into())) + // Standard Error: 25 + .saturating_add(Weight::from_parts(669, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(t.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1038,11 +1038,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `761 + r * (7 ±0)` // Estimated: `6705 + r * (7 ±0)` - // Minimum execution time: 170_030_000 picoseconds. - Weight::from_parts(179_956_686, 0) + // Minimum execution time: 162_723_000 picoseconds. + Weight::from_parts(173_336_446, 0) .saturating_add(Weight::from_parts(0, 6705)) - // Standard Error: 466 - .saturating_add(Weight::from_parts(243_858, 0).saturating_mul(r.into())) + // Standard Error: 372 + .saturating_add(Weight::from_parts(241_912, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 7).saturating_mul(r.into())) @@ -1066,11 +1066,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `125712` // Estimated: `131654` - // Minimum execution time: 499_701_000 picoseconds. - Weight::from_parts(473_122_597, 0) + // Minimum execution time: 411_045_000 picoseconds. + Weight::from_parts(384_812_723, 0) .saturating_add(Weight::from_parts(0, 131654)) - // Standard Error: 13 - .saturating_add(Weight::from_parts(1_148, 0).saturating_mul(i.into())) + // Standard Error: 12 + .saturating_add(Weight::from_parts(1_029, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1081,11 +1081,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `834 + r * (292 ±0)` // Estimated: `832 + r * (293 ±0)` - // Minimum execution time: 332_397_000 picoseconds. - Weight::from_parts(228_011_803, 0) + // Minimum execution time: 274_458_000 picoseconds. + Weight::from_parts(174_237_443, 0) .saturating_add(Weight::from_parts(0, 832)) - // Standard Error: 11_094 - .saturating_add(Weight::from_parts(6_639_754, 0).saturating_mul(r.into())) + // Standard Error: 9_885 + .saturating_add(Weight::from_parts(6_574_000, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1099,11 +1099,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1257` // Estimated: `1249` - // Minimum execution time: 353_821_000 picoseconds. - Weight::from_parts(398_082_350, 0) + // Minimum execution time: 293_706_000 picoseconds. + Weight::from_parts(334_316_250, 0) .saturating_add(Weight::from_parts(0, 1249)) - // Standard Error: 59 - .saturating_add(Weight::from_parts(756, 0).saturating_mul(n.into())) + // Standard Error: 55 + .saturating_add(Weight::from_parts(519, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().writes(6)) } @@ -1114,11 +1114,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1157 + n * (1 ±0)` // Estimated: `1157 + n * (1 ±0)` - // Minimum execution time: 352_814_000 picoseconds. - Weight::from_parts(363_627_141, 0) + // Minimum execution time: 275_229_000 picoseconds. + Weight::from_parts(298_400_719, 0) .saturating_add(Weight::from_parts(0, 1157)) - // Standard Error: 30 - .saturating_add(Weight::from_parts(325, 0).saturating_mul(n.into())) + // Standard Error: 37 + .saturating_add(Weight::from_parts(670, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -1130,11 +1130,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `831 + r * (288 ±0)` // Estimated: `835 + r * (289 ±0)` - // Minimum execution time: 333_168_000 picoseconds. - Weight::from_parts(234_350_762, 0) + // Minimum execution time: 271_037_000 picoseconds. + Weight::from_parts(176_652_266, 0) .saturating_add(Weight::from_parts(0, 835)) - // Standard Error: 10_434 - .saturating_add(Weight::from_parts(6_539_719, 0).saturating_mul(r.into())) + // Standard Error: 10_017 + .saturating_add(Weight::from_parts(6_478_413, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1148,11 +1148,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1153 + n * (1 ±0)` // Estimated: `1153 + n * (1 ±0)` - // Minimum execution time: 354_092_000 picoseconds. - Weight::from_parts(365_875_495, 0) + // Minimum execution time: 276_608_000 picoseconds. + Weight::from_parts(298_609_918, 0) .saturating_add(Weight::from_parts(0, 1153)) - // Standard Error: 37 - .saturating_add(Weight::from_parts(286, 0).saturating_mul(n.into())) + // Standard Error: 35 + .saturating_add(Weight::from_parts(305, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -1164,11 +1164,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `825 + r * (296 ±0)` // Estimated: `829 + r * (297 ±0)` - // Minimum execution time: 340_449_000 picoseconds. - Weight::from_parts(260_454_540, 0) + // Minimum execution time: 272_193_000 picoseconds. + Weight::from_parts(200_398_008, 0) .saturating_add(Weight::from_parts(0, 829)) - // Standard Error: 9_129 - .saturating_add(Weight::from_parts(5_521_911, 0).saturating_mul(r.into())) + // Standard Error: 7_951 + .saturating_add(Weight::from_parts(5_428_500, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1181,11 +1181,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1169 + n * (1 ±0)` // Estimated: `1169 + n * (1 ±0)` - // Minimum execution time: 354_257_000 picoseconds. - Weight::from_parts(367_021_765, 0) + // Minimum execution time: 283_144_000 picoseconds. + Weight::from_parts(297_558_345, 0) .saturating_add(Weight::from_parts(0, 1169)) - // Standard Error: 38 - .saturating_add(Weight::from_parts(623, 0).saturating_mul(n.into())) + // Standard Error: 37 + .saturating_add(Weight::from_parts(915, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -1197,11 +1197,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `845 + r * (288 ±0)` // Estimated: `847 + r * (289 ±0)` - // Minimum execution time: 334_019_000 picoseconds. - Weight::from_parts(254_049_214, 0) + // Minimum execution time: 257_561_000 picoseconds. + Weight::from_parts(197_571_929, 0) .saturating_add(Weight::from_parts(0, 847)) - // Standard Error: 8_846 - .saturating_add(Weight::from_parts(5_336_074, 0).saturating_mul(r.into())) + // Standard Error: 7_750 + .saturating_add(Weight::from_parts(5_277_465, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1214,11 +1214,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1156 + n * (1 ±0)` // Estimated: `1156 + n * (1 ±0)` - // Minimum execution time: 350_023_000 picoseconds. - Weight::from_parts(362_876_767, 0) + // Minimum execution time: 272_842_000 picoseconds. + Weight::from_parts(294_834_208, 0) .saturating_add(Weight::from_parts(0, 1156)) - // Standard Error: 33 - .saturating_add(Weight::from_parts(310, 0).saturating_mul(n.into())) + // Standard Error: 30 + .saturating_add(Weight::from_parts(374, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -1230,11 +1230,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `818 + r * (296 ±0)` // Estimated: `826 + r * (297 ±0)` - // Minimum execution time: 338_311_000 picoseconds. - Weight::from_parts(225_281_461, 0) + // Minimum execution time: 270_208_000 picoseconds. + Weight::from_parts(183_299_620, 0) .saturating_add(Weight::from_parts(0, 826)) - // Standard Error: 12_000 - .saturating_add(Weight::from_parts(6_716_883, 0).saturating_mul(r.into())) + // Standard Error: 9_584 + .saturating_add(Weight::from_parts(6_567_407, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1248,11 +1248,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1170 + n * (1 ±0)` // Estimated: `1170 + n * (1 ±0)` - // Minimum execution time: 358_835_000 picoseconds. - Weight::from_parts(367_501_822, 0) + // Minimum execution time: 277_525_000 picoseconds. + Weight::from_parts(300_719_691, 0) .saturating_add(Weight::from_parts(0, 1170)) // Standard Error: 34 - .saturating_add(Weight::from_parts(745, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(756, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -1276,11 +1276,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `881 + r * (45 ±0)` // Estimated: `6837 + r * (2520 ±0)` - // Minimum execution time: 335_450_000 picoseconds. - Weight::from_parts(215_219_686, 0) + // Minimum execution time: 269_456_000 picoseconds. + Weight::from_parts(92_485_182, 0) .saturating_add(Weight::from_parts(0, 6837)) - // Standard Error: 17_793 - .saturating_add(Weight::from_parts(37_821_458, 0).saturating_mul(r.into())) + // Standard Error: 23_061 + .saturating_add(Weight::from_parts(38_269_390, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(4)) @@ -1306,11 +1306,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1205 + r * (276 ±0)` // Estimated: `9390 + r * (2752 ±0)` - // Minimum execution time: 335_880_000 picoseconds. - Weight::from_parts(338_190_000, 0) + // Minimum execution time: 274_507_000 picoseconds. + Weight::from_parts(278_312_000, 0) .saturating_add(Weight::from_parts(0, 9390)) - // Standard Error: 124_901 - .saturating_add(Weight::from_parts(317_409_393, 0).saturating_mul(r.into())) + // Standard Error: 114_345 + .saturating_add(Weight::from_parts(246_104_628, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(11)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(4)) @@ -1335,12 +1335,12 @@ impl pallet_contracts::WeightInfo for WeightInfo { fn seal_delegate_call(r: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0 + r * (576 ±0)` - // Estimated: `6711 + r * (2637 ±3)` - // Minimum execution time: 336_050_000 picoseconds. - Weight::from_parts(338_874_000, 0) + // Estimated: `6711 + r * (2637 ±10)` + // Minimum execution time: 256_194_000 picoseconds. + Weight::from_parts(273_434_000, 0) .saturating_add(Weight::from_parts(0, 6711)) - // Standard Error: 189_079 - .saturating_add(Weight::from_parts(317_133_680, 0).saturating_mul(r.into())) + // Standard Error: 162_249 + .saturating_add(Weight::from_parts(245_390_935, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1367,13 +1367,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1237 + t * (277 ±0)` // Estimated: `12127 + t * (5227 ±0)` - // Minimum execution time: 542_366_000 picoseconds. - Weight::from_parts(193_694_880, 0) + // Minimum execution time: 463_950_000 picoseconds. + Weight::from_parts(68_258_925, 0) .saturating_add(Weight::from_parts(0, 12127)) - // Standard Error: 11_272_994 - .saturating_add(Weight::from_parts(316_201_122, 0).saturating_mul(t.into())) - // Standard Error: 16 - .saturating_add(Weight::from_parts(1_107, 0).saturating_mul(c.into())) + // Standard Error: 11_985_071 + .saturating_add(Weight::from_parts(367_790_275, 0).saturating_mul(t.into())) + // Standard Error: 17 + .saturating_add(Weight::from_parts(979, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(13)) .saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(t.into()))) .saturating_add(T::DbWeight::get().writes(6)) @@ -1401,11 +1401,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `898 + r * (255 ±0)` // Estimated: `6726 + r * (5205 ±0)` - // Minimum execution time: 767_480_000 picoseconds. - Weight::from_parts(779_480_000, 0) + // Minimum execution time: 646_293_000 picoseconds. + Weight::from_parts(651_402_000, 0) .saturating_add(Weight::from_parts(0, 6726)) - // Standard Error: 376_597 - .saturating_add(Weight::from_parts(465_783_966, 0).saturating_mul(r.into())) + // Standard Error: 386_854 + .saturating_add(Weight::from_parts(389_598_672, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(10)) .saturating_add(T::DbWeight::get().reads((6_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(6)) @@ -1435,15 +1435,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1094 + t * (118 ±0)` // Estimated: `9510 + t * (2575 ±1)` - // Minimum execution time: 3_092_356_000 picoseconds. - Weight::from_parts(917_401_151, 0) + // Minimum execution time: 2_908_349_000 picoseconds. + Weight::from_parts(549_346_099, 0) .saturating_add(Weight::from_parts(0, 9510)) - // Standard Error: 12_758_887 - .saturating_add(Weight::from_parts(50_052_819, 0).saturating_mul(t.into())) - // Standard Error: 20 - .saturating_add(Weight::from_parts(2_013, 0).saturating_mul(i.into())) - // Standard Error: 20 - .saturating_add(Weight::from_parts(2_252, 0).saturating_mul(s.into())) + // Standard Error: 13 + .saturating_add(Weight::from_parts(2_425, 0).saturating_mul(i.into())) + // Standard Error: 13 + .saturating_add(Weight::from_parts(2_567, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(15)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(t.into()))) .saturating_add(T::DbWeight::get().writes(10)) @@ -1469,11 +1467,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `761 + r * (8 ±0)` // Estimated: `6702 + r * (8 ±0)` - // Minimum execution time: 334_710_000 picoseconds. - Weight::from_parts(340_587_159, 0) + // Minimum execution time: 249_998_000 picoseconds. + Weight::from_parts(280_701_351, 0) .saturating_add(Weight::from_parts(0, 6702)) - // Standard Error: 507 - .saturating_add(Weight::from_parts(412_195, 0).saturating_mul(r.into())) + // Standard Error: 483 + .saturating_add(Weight::from_parts(400_960, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into())) @@ -1497,11 +1495,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `769` // Estimated: `6709` - // Minimum execution time: 333_148_000 picoseconds. - Weight::from_parts(347_364_466, 0) + // Minimum execution time: 267_995_000 picoseconds. + Weight::from_parts(290_343_748, 0) .saturating_add(Weight::from_parts(0, 6709)) - // Standard Error: 2 - .saturating_add(Weight::from_parts(1_500, 0).saturating_mul(n.into())) + // Standard Error: 1 + .saturating_add(Weight::from_parts(1_350, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1524,11 +1522,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `763 + r * (8 ±0)` // Estimated: `6705 + r * (8 ±0)` - // Minimum execution time: 332_031_000 picoseconds. - Weight::from_parts(346_086_580, 0) + // Minimum execution time: 269_478_000 picoseconds. + Weight::from_parts(273_450_406, 0) .saturating_add(Weight::from_parts(0, 6705)) - // Standard Error: 682 - .saturating_add(Weight::from_parts(822_438, 0).saturating_mul(r.into())) + // Standard Error: 936 + .saturating_add(Weight::from_parts(805_448, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into())) @@ -1552,11 +1550,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `771` // Estimated: `6713` - // Minimum execution time: 337_280_000 picoseconds. - Weight::from_parts(346_817_478, 0) + // Minimum execution time: 268_589_000 picoseconds. + Weight::from_parts(298_945_206, 0) .saturating_add(Weight::from_parts(0, 6713)) - // Standard Error: 2 - .saturating_add(Weight::from_parts(3_859, 0).saturating_mul(n.into())) + // Standard Error: 3 + .saturating_add(Weight::from_parts(3_614, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1579,11 +1577,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `763 + r * (8 ±0)` // Estimated: `6708 + r * (8 ±0)` - // Minimum execution time: 331_039_000 picoseconds. - Weight::from_parts(344_490_096, 0) + // Minimum execution time: 265_805_000 picoseconds. + Weight::from_parts(275_332_149, 0) .saturating_add(Weight::from_parts(0, 6708)) - // Standard Error: 607 - .saturating_add(Weight::from_parts(478_090, 0).saturating_mul(r.into())) + // Standard Error: 590 + .saturating_add(Weight::from_parts(471_055, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into())) @@ -1607,11 +1605,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `771` // Estimated: `6717` - // Minimum execution time: 334_726_000 picoseconds. - Weight::from_parts(360_301_792, 0) + // Minimum execution time: 261_415_000 picoseconds. + Weight::from_parts(296_576_910, 0) .saturating_add(Weight::from_parts(0, 6717)) // Standard Error: 1 - .saturating_add(Weight::from_parts(1_597, 0).saturating_mul(n.into())) + .saturating_add(Weight::from_parts(1_458, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1634,11 +1632,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `763 + r * (8 ±0)` // Estimated: `6709 + r * (8 ±0)` - // Minimum execution time: 332_154_000 picoseconds. - Weight::from_parts(341_396_510, 0) + // Minimum execution time: 267_170_000 picoseconds. + Weight::from_parts(277_629_800, 0) .saturating_add(Weight::from_parts(0, 6709)) - // Standard Error: 607 - .saturating_add(Weight::from_parts(477_412, 0).saturating_mul(r.into())) + // Standard Error: 541 + .saturating_add(Weight::from_parts(473_581, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into())) @@ -1662,11 +1660,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `771` // Estimated: `6711` - // Minimum execution time: 334_419_000 picoseconds. - Weight::from_parts(344_430_612, 0) + // Minimum execution time: 270_159_000 picoseconds. + Weight::from_parts(291_906_432, 0) .saturating_add(Weight::from_parts(0, 6711)) - // Standard Error: 5 - .saturating_add(Weight::from_parts(1_633, 0).saturating_mul(n.into())) + // Standard Error: 0 + .saturating_add(Weight::from_parts(1_460, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -1688,12 +1686,12 @@ impl pallet_contracts::WeightInfo for WeightInfo { fn seal_sr25519_verify_per_byte(n: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `896 + n * (1 ±0)` - // Estimated: `6833 + n * (1 ±0)` - // Minimum execution time: 407_667_000 picoseconds. - Weight::from_parts(420_437_289, 0) - .saturating_add(Weight::from_parts(0, 6833)) - // Standard Error: 20 - .saturating_add(Weight::from_parts(6_862, 0).saturating_mul(n.into())) + // Estimated: `6832 + n * (1 ±0)` + // Minimum execution time: 334_783_000 picoseconds. + Weight::from_parts(345_389_240, 0) + .saturating_add(Weight::from_parts(0, 6832)) + // Standard Error: 16 + .saturating_add(Weight::from_parts(6_362, 0).saturating_mul(n.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into())) @@ -1715,13 +1713,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 160]`. fn seal_sr25519_verify(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `710 + r * (112 ±0)` + // Measured: `706 + r * (112 ±0)` // Estimated: `6650 + r * (112 ±0)` - // Minimum execution time: 334_964_000 picoseconds. - Weight::from_parts(391_169_401, 0) + // Minimum execution time: 271_492_000 picoseconds. + Weight::from_parts(325_822_807, 0) .saturating_add(Weight::from_parts(0, 6650)) - // Standard Error: 15_050 - .saturating_add(Weight::from_parts(56_178_174, 0).saturating_mul(r.into())) + // Standard Error: 13_326 + .saturating_add(Weight::from_parts(56_080_018, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 112).saturating_mul(r.into())) @@ -1743,13 +1741,13 @@ impl pallet_contracts::WeightInfo for WeightInfo { /// The range of component `r` is `[0, 160]`. fn seal_ecdsa_recover(r: u32, ) -> Weight { // Proof Size summary in bytes: - // Measured: `805 + r * (76 ±0)` - // Estimated: `6701 + r * (77 ±0)` - // Minimum execution time: 334_512_000 picoseconds. - Weight::from_parts(423_250_649, 0) - .saturating_add(Weight::from_parts(0, 6701)) - // Standard Error: 21_999 - .saturating_add(Weight::from_parts(46_048_078, 0).saturating_mul(r.into())) + // Measured: `806 + r * (76 ±0)` + // Estimated: `6700 + r * (77 ±0)` + // Minimum execution time: 258_318_000 picoseconds. + Weight::from_parts(337_472_374, 0) + .saturating_add(Weight::from_parts(0, 6700)) + // Standard Error: 14_895 + .saturating_add(Weight::from_parts(46_139_894, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 77).saturating_mul(r.into())) @@ -1773,11 +1771,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `776 + r * (42 ±0)` // Estimated: `6715 + r * (42 ±0)` - // Minimum execution time: 339_500_000 picoseconds. - Weight::from_parts(367_540_513, 0) + // Minimum execution time: 257_434_000 picoseconds. + Weight::from_parts(311_597_586, 0) .saturating_add(Weight::from_parts(0, 6715)) - // Standard Error: 12_975 - .saturating_add(Weight::from_parts(12_337_677, 0).saturating_mul(r.into())) + // Standard Error: 10_455 + .saturating_add(Weight::from_parts(11_939_062, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 42).saturating_mul(r.into())) @@ -1800,12 +1798,12 @@ impl pallet_contracts::WeightInfo for WeightInfo { fn seal_set_code_hash(r: u32, ) -> Weight { // Proof Size summary in bytes: // Measured: `0 + r * (965 ±0)` - // Estimated: `6706 + r * (3090 ±10)` - // Minimum execution time: 331_963_000 picoseconds. - Weight::from_parts(334_637_000, 0) + // Estimated: `6706 + r * (3090 ±7)` + // Minimum execution time: 272_683_000 picoseconds. + Weight::from_parts(275_164_000, 0) .saturating_add(Weight::from_parts(0, 6706)) - // Standard Error: 58_037 - .saturating_add(Weight::from_parts(25_483_667, 0).saturating_mul(r.into())) + // Standard Error: 66_281 + .saturating_add(Weight::from_parts(25_969_136, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(3)) @@ -1831,11 +1829,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `757 + r * (3 ±0)` // Estimated: `6707 + r * (3 ±0)` - // Minimum execution time: 330_506_000 picoseconds. - Weight::from_parts(341_361_580, 0) + // Minimum execution time: 259_012_000 picoseconds. + Weight::from_parts(275_803_950, 0) .saturating_add(Weight::from_parts(0, 6707)) - // Standard Error: 396 - .saturating_add(Weight::from_parts(179_927, 0).saturating_mul(r.into())) + // Standard Error: 489 + .saturating_add(Weight::from_parts(180_770, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into())) @@ -1859,11 +1857,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1997 + r * (39 ±0)` // Estimated: `7824 + r * (40 ±0)` - // Minimum execution time: 333_866_000 picoseconds. - Weight::from_parts(416_314_655, 0) + // Minimum execution time: 271_555_000 picoseconds. + Weight::from_parts(365_518_262, 0) .saturating_add(Weight::from_parts(0, 7824)) - // Standard Error: 1_850 - .saturating_add(Weight::from_parts(326_703, 0).saturating_mul(r.into())) + // Standard Error: 2_560 + .saturating_add(Weight::from_parts(323_702, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(Weight::from_parts(0, 40).saturating_mul(r.into())) @@ -1889,11 +1887,11 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `760 + r * (3 ±0)` // Estimated: `6707 + r * (3 ±0)` - // Minimum execution time: 331_367_000 picoseconds. - Weight::from_parts(344_844_447, 0) + // Minimum execution time: 267_251_000 picoseconds. + Weight::from_parts(278_295_077, 0) .saturating_add(Weight::from_parts(0, 6707)) - // Standard Error: 464 - .saturating_add(Weight::from_parts(156_183, 0).saturating_mul(r.into())) + // Standard Error: 366 + .saturating_add(Weight::from_parts(157_707, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(4)) .saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into())) @@ -1903,10 +1901,10 @@ impl pallet_contracts::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_551_000 picoseconds. - Weight::from_parts(1_718_159, 0) + // Minimum execution time: 1_498_000 picoseconds. + Weight::from_parts(1_677_246, 0) .saturating_add(Weight::from_parts(0, 0)) - // Standard Error: 12 - .saturating_add(Weight::from_parts(10_822, 0).saturating_mul(r.into())) + // Standard Error: 15 + .saturating_add(Weight::from_parts(10_937, 0).saturating_mul(r.into())) } } diff --git a/runtime/trappist/src/weights/pallet_democracy.rs b/runtime/trappist/src/weights/pallet_democracy.rs index d67a8bd9..301a1569 100644 --- a/runtime/trappist/src/weights/pallet_democracy.rs +++ b/runtime/trappist/src/weights/pallet_democracy.rs @@ -62,8 +62,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4768` // Estimated: `18187` - // Minimum execution time: 47_005_000 picoseconds. - Weight::from_parts(48_979_000, 0) + // Minimum execution time: 46_836_000 picoseconds. + Weight::from_parts(48_236_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -74,8 +74,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3523` // Estimated: `6695` - // Minimum execution time: 40_672_000 picoseconds. - Weight::from_parts(42_019_000, 0) + // Minimum execution time: 40_227_000 picoseconds. + Weight::from_parts(41_818_000, 0) .saturating_add(Weight::from_parts(0, 6695)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -92,8 +92,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3399` // Estimated: `7260` - // Minimum execution time: 55_300_000 picoseconds. - Weight::from_parts(56_217_000, 0) + // Minimum execution time: 53_918_000 picoseconds. + Weight::from_parts(55_987_000, 0) .saturating_add(Weight::from_parts(0, 7260)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -110,8 +110,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3421` // Estimated: `7260` - // Minimum execution time: 60_458_000 picoseconds. - Weight::from_parts(62_203_000, 0) + // Minimum execution time: 58_771_000 picoseconds. + Weight::from_parts(60_576_000, 0) .saturating_add(Weight::from_parts(0, 7260)) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) @@ -126,8 +126,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `333` // Estimated: `3666` - // Minimum execution time: 26_807_000 picoseconds. - Weight::from_parts(27_603_000, 0) + // Minimum execution time: 26_998_000 picoseconds. + Weight::from_parts(27_719_000, 0) .saturating_add(Weight::from_parts(0, 3666)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -150,8 +150,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `6216` // Estimated: `18187` - // Minimum execution time: 114_847_000 picoseconds. - Weight::from_parts(120_482_000, 0) + // Minimum execution time: 113_423_000 picoseconds. + Weight::from_parts(114_640_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(9)) .saturating_add(T::DbWeight::get().writes(8)) @@ -164,8 +164,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3383` // Estimated: `6703` - // Minimum execution time: 13_888_000 picoseconds. - Weight::from_parts(14_758_000, 0) + // Minimum execution time: 13_564_000 picoseconds. + Weight::from_parts(13_940_000, 0) .saturating_add(Weight::from_parts(0, 6703)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -176,8 +176,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_551_000 picoseconds. - Weight::from_parts(3_721_000, 0) + // Minimum execution time: 3_031_000 picoseconds. + Weight::from_parts(3_237_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -187,8 +187,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_522_000 picoseconds. - Weight::from_parts(3_784_000, 0) + // Minimum execution time: 3_223_000 picoseconds. + Weight::from_parts(3_430_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -204,8 +204,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `253` // Estimated: `3518` - // Minimum execution time: 28_342_000 picoseconds. - Weight::from_parts(28_718_000, 0) + // Minimum execution time: 27_546_000 picoseconds. + Weight::from_parts(28_366_000, 0) .saturating_add(Weight::from_parts(0, 3518)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(5)) @@ -220,8 +220,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `3486` // Estimated: `6703` - // Minimum execution time: 31_055_000 picoseconds. - Weight::from_parts(31_631_000, 0) + // Minimum execution time: 30_783_000 picoseconds. + Weight::from_parts(31_320_000, 0) .saturating_add(Weight::from_parts(0, 6703)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -238,8 +238,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `6127` // Estimated: `18187` - // Minimum execution time: 95_440_000 picoseconds. - Weight::from_parts(97_860_000, 0) + // Minimum execution time: 91_690_000 picoseconds. + Weight::from_parts(94_442_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(5)) @@ -252,8 +252,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `238` // Estimated: `3518` - // Minimum execution time: 20_974_000 picoseconds. - Weight::from_parts(21_396_000, 0) + // Minimum execution time: 20_497_000 picoseconds. + Weight::from_parts(21_150_000, 0) .saturating_add(Weight::from_parts(0, 3518)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -269,11 +269,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `211 + r * (86 ±0)` // Estimated: `1489 + r * (2676 ±0)` - // Minimum execution time: 7_237_000 picoseconds. - Weight::from_parts(6_156_933, 0) + // Minimum execution time: 7_196_000 picoseconds. + Weight::from_parts(6_777_785, 0) .saturating_add(Weight::from_parts(0, 1489)) - // Standard Error: 9_431 - .saturating_add(Weight::from_parts(3_271_564, 0).saturating_mul(r.into())) + // Standard Error: 6_706 + .saturating_add(Weight::from_parts(3_196_444, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -296,11 +296,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `211 + r * (86 ±0)` // Estimated: `18187 + r * (2676 ±0)` - // Minimum execution time: 10_258_000 picoseconds. - Weight::from_parts(10_933_310, 0) + // Minimum execution time: 10_419_000 picoseconds. + Weight::from_parts(10_685_632, 0) .saturating_add(Weight::from_parts(0, 18187)) - // Standard Error: 7_323 - .saturating_add(Weight::from_parts(3_264_995, 0).saturating_mul(r.into())) + // Standard Error: 6_842 + .saturating_add(Weight::from_parts(3_208_039, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -319,11 +319,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `763 + r * (108 ±0)` // Estimated: `19800 + r * (2676 ±0)` - // Minimum execution time: 40_764_000 picoseconds. - Weight::from_parts(45_574_416, 0) + // Minimum execution time: 40_813_000 picoseconds. + Weight::from_parts(45_667_379, 0) .saturating_add(Weight::from_parts(0, 19800)) - // Standard Error: 8_197 - .saturating_add(Weight::from_parts(4_109_919, 0).saturating_mul(r.into())) + // Standard Error: 8_463 + .saturating_add(Weight::from_parts(4_089_241, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(4)) @@ -339,11 +339,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `460 + r * (108 ±0)` // Estimated: `13530 + r * (2676 ±0)` - // Minimum execution time: 21_115_000 picoseconds. - Weight::from_parts(20_559_858, 0) + // Minimum execution time: 20_857_000 picoseconds. + Weight::from_parts(22_683_996, 0) .saturating_add(Weight::from_parts(0, 13530)) - // Standard Error: 10_220 - .saturating_add(Weight::from_parts(4_081_975, 0).saturating_mul(r.into())) + // Standard Error: 6_915 + .saturating_add(Weight::from_parts(3_971_934, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into()))) .saturating_add(T::DbWeight::get().writes(2)) @@ -356,8 +356,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_450_000 picoseconds. - Weight::from_parts(3_615_000, 0) + // Minimum execution time: 3_276_000 picoseconds. + Weight::from_parts(3_430_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -374,11 +374,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `455` // Estimated: `7260` - // Minimum execution time: 22_997_000 picoseconds. - Weight::from_parts(37_892_852, 0) + // Minimum execution time: 22_977_000 picoseconds. + Weight::from_parts(38_186_531, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 3_983 - .saturating_add(Weight::from_parts(114_256, 0).saturating_mul(r.into())) + // Standard Error: 3_905 + .saturating_add(Weight::from_parts(103_801, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -395,11 +395,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `456 + r * (22 ±0)` // Estimated: `7260` - // Minimum execution time: 33_601_000 picoseconds. - Weight::from_parts(36_193_189, 0) + // Minimum execution time: 33_713_000 picoseconds. + Weight::from_parts(36_671_471, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 1_942 - .saturating_add(Weight::from_parts(151_434, 0).saturating_mul(r.into())) + // Standard Error: 1_861 + .saturating_add(Weight::from_parts(130_777, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -412,11 +412,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `695 + r * (26 ±0)` // Estimated: `7260` - // Minimum execution time: 15_485_000 picoseconds. - Weight::from_parts(18_825_687, 0) + // Minimum execution time: 15_144_000 picoseconds. + Weight::from_parts(18_924_514, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 1_755 - .saturating_add(Weight::from_parts(135_447, 0).saturating_mul(r.into())) + // Standard Error: 1_702 + .saturating_add(Weight::from_parts(118_270, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -429,11 +429,11 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `695 + r * (26 ±0)` // Estimated: `7260` - // Minimum execution time: 15_410_000 picoseconds. - Weight::from_parts(18_742_684, 0) + // Minimum execution time: 15_131_000 picoseconds. + Weight::from_parts(18_872_054, 0) .saturating_add(Weight::from_parts(0, 7260)) - // Standard Error: 1_825 - .saturating_add(Weight::from_parts(132_147, 0).saturating_mul(r.into())) + // Standard Error: 1_813 + .saturating_add(Weight::from_parts(122_107, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -447,8 +447,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `323` // Estimated: `3556` - // Minimum execution time: 19_517_000 picoseconds. - Weight::from_parts(20_241_000, 0) + // Minimum execution time: 18_736_000 picoseconds. + Weight::from_parts(19_476_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -461,8 +461,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `253` // Estimated: `3518` - // Minimum execution time: 17_949_000 picoseconds. - Weight::from_parts(18_490_000, 0) + // Minimum execution time: 17_064_000 picoseconds. + Weight::from_parts(17_695_000, 0) .saturating_add(Weight::from_parts(0, 3518)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -477,8 +477,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4855` // Estimated: `18187` - // Minimum execution time: 42_858_000 picoseconds. - Weight::from_parts(44_298_000, 0) + // Minimum execution time: 41_177_000 picoseconds. + Weight::from_parts(42_690_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -491,8 +491,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `4789` // Estimated: `18187` - // Minimum execution time: 39_594_000 picoseconds. - Weight::from_parts(40_593_000, 0) + // Minimum execution time: 38_223_000 picoseconds. + Weight::from_parts(39_998_000, 0) .saturating_add(Weight::from_parts(0, 18187)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -505,8 +505,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 15_550_000 picoseconds. - Weight::from_parts(16_042_000, 0) + // Minimum execution time: 14_923_000 picoseconds. + Weight::from_parts(15_372_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -519,8 +519,8 @@ impl pallet_democracy::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `269` // Estimated: `3666` - // Minimum execution time: 19_347_000 picoseconds. - Weight::from_parts(19_863_000, 0) + // Minimum execution time: 19_009_000 picoseconds. + Weight::from_parts(19_707_000, 0) .saturating_add(Weight::from_parts(0, 3666)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/trappist/src/weights/pallet_dex.rs b/runtime/trappist/src/weights/pallet_dex.rs index f9e0bb4e..19e86c52 100644 --- a/runtime/trappist/src/weights/pallet_dex.rs +++ b/runtime/trappist/src/weights/pallet_dex.rs @@ -62,8 +62,8 @@ impl pallet_dex::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `464` // Estimated: `8817` - // Minimum execution time: 127_123_000 picoseconds. - Weight::from_parts(129_794_000, 0) + // Minimum execution time: 121_925_000 picoseconds. + Weight::from_parts(124_893_000, 0) .saturating_add(Weight::from_parts(0, 8817)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(7)) @@ -80,8 +80,8 @@ impl pallet_dex::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1040` // Estimated: `8817` - // Minimum execution time: 117_861_000 picoseconds. - Weight::from_parts(119_506_000, 0) + // Minimum execution time: 113_437_000 picoseconds. + Weight::from_parts(115_208_000, 0) .saturating_add(Weight::from_parts(0, 8817)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(7)) @@ -98,8 +98,8 @@ impl pallet_dex::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1040` // Estimated: `8817` - // Minimum execution time: 125_560_000 picoseconds. - Weight::from_parts(127_746_000, 0) + // Minimum execution time: 119_214_000 picoseconds. + Weight::from_parts(122_029_000, 0) .saturating_add(Weight::from_parts(0, 8817)) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(7)) @@ -116,8 +116,8 @@ impl pallet_dex::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `797` // Estimated: `6208` - // Minimum execution time: 95_637_000 picoseconds. - Weight::from_parts(97_138_000, 0) + // Minimum execution time: 90_947_000 picoseconds. + Weight::from_parts(92_831_000, 0) .saturating_add(Weight::from_parts(0, 6208)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(5)) @@ -134,8 +134,8 @@ impl pallet_dex::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `797` // Estimated: `6208` - // Minimum execution time: 96_464_000 picoseconds. - Weight::from_parts(98_497_000, 0) + // Minimum execution time: 92_635_000 picoseconds. + Weight::from_parts(94_428_000, 0) .saturating_add(Weight::from_parts(0, 6208)) .saturating_add(T::DbWeight::get().reads(5)) .saturating_add(T::DbWeight::get().writes(5)) @@ -150,8 +150,8 @@ impl pallet_dex::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `1217` // Estimated: `11426` - // Minimum execution time: 109_353_000 picoseconds. - Weight::from_parts(111_832_000, 0) + // Minimum execution time: 104_785_000 picoseconds. + Weight::from_parts(105_905_000, 0) .saturating_add(Weight::from_parts(0, 11426)) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(8)) diff --git a/runtime/trappist/src/weights/pallet_identity.rs b/runtime/trappist/src/weights/pallet_identity.rs index b92df588..49dc17d4 100644 --- a/runtime/trappist/src/weights/pallet_identity.rs +++ b/runtime/trappist/src/weights/pallet_identity.rs @@ -57,11 +57,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `32 + r * (57 ±0)` // Estimated: `2626` - // Minimum execution time: 12_736_000 picoseconds. - Weight::from_parts(13_316_170, 0) + // Minimum execution time: 12_178_000 picoseconds. + Weight::from_parts(13_112_126, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_725 - .saturating_add(Weight::from_parts(99_221, 0).saturating_mul(r.into())) + // Standard Error: 1_649 + .saturating_add(Weight::from_parts(88_395, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -73,13 +73,13 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `442 + r * (5 ±0)` // Estimated: `11003` - // Minimum execution time: 32_875_000 picoseconds. - Weight::from_parts(31_414_212, 0) + // Minimum execution time: 32_397_000 picoseconds. + Weight::from_parts(30_337_003, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 4_232 - .saturating_add(Weight::from_parts(124_032, 0).saturating_mul(r.into())) - // Standard Error: 825 - .saturating_add(Weight::from_parts(430_071, 0).saturating_mul(x.into())) + // Standard Error: 4_831 + .saturating_add(Weight::from_parts(186_740, 0).saturating_mul(r.into())) + // Standard Error: 942 + .saturating_add(Weight::from_parts(448_755, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -94,11 +94,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `101` // Estimated: `11003 + s * (2589 ±0)` - // Minimum execution time: 9_158_000 picoseconds. - Weight::from_parts(21_848_528, 0) + // Minimum execution time: 9_053_000 picoseconds. + Weight::from_parts(22_293_475, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 5_045 - .saturating_add(Weight::from_parts(3_176_151, 0).saturating_mul(s.into())) + // Standard Error: 4_214 + .saturating_add(Weight::from_parts(3_127_058, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(s.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -116,11 +116,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `194 + p * (32 ±0)` // Estimated: `11003` - // Minimum execution time: 9_082_000 picoseconds. - Weight::from_parts(22_627_126, 0) + // Minimum execution time: 9_144_000 picoseconds. + Weight::from_parts(23_088_517, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 3_221 - .saturating_add(Weight::from_parts(1_307_292, 0).saturating_mul(p.into())) + // Standard Error: 3_574 + .saturating_add(Weight::from_parts(1_318_688, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into()))) @@ -138,15 +138,15 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `469 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)` // Estimated: `11003` - // Minimum execution time: 56_768_000 picoseconds. - Weight::from_parts(30_060_088, 0) + // Minimum execution time: 56_626_000 picoseconds. + Weight::from_parts(30_207_265, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 10_393 - .saturating_add(Weight::from_parts(285_623, 0).saturating_mul(r.into())) - // Standard Error: 2_029 - .saturating_add(Weight::from_parts(1_311_157, 0).saturating_mul(s.into())) - // Standard Error: 2_029 - .saturating_add(Weight::from_parts(254_195, 0).saturating_mul(x.into())) + // Standard Error: 11_291 + .saturating_add(Weight::from_parts(215_558, 0).saturating_mul(r.into())) + // Standard Error: 2_204 + .saturating_add(Weight::from_parts(1_286_551, 0).saturating_mul(s.into())) + // Standard Error: 2_204 + .saturating_add(Weight::from_parts(261_862, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) @@ -161,13 +161,13 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `367 + r * (57 ±0) + x * (66 ±0)` // Estimated: `11003` - // Minimum execution time: 32_359_000 picoseconds. - Weight::from_parts(31_577_909, 0) + // Minimum execution time: 32_652_000 picoseconds. + Weight::from_parts(32_149_122, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 4_614 - .saturating_add(Weight::from_parts(124_124, 0).saturating_mul(r.into())) - // Standard Error: 900 - .saturating_add(Weight::from_parts(459_541, 0).saturating_mul(x.into())) + // Standard Error: 4_847 + .saturating_add(Weight::from_parts(115_864, 0).saturating_mul(r.into())) + // Standard Error: 945 + .saturating_add(Weight::from_parts(473_679, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -179,13 +179,13 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `398 + x * (66 ±0)` // Estimated: `11003` - // Minimum execution time: 29_892_000 picoseconds. - Weight::from_parts(29_493_300, 0) + // Minimum execution time: 30_040_000 picoseconds. + Weight::from_parts(30_199_515, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 3_967 - .saturating_add(Weight::from_parts(84_273, 0).saturating_mul(r.into())) - // Standard Error: 774 - .saturating_add(Weight::from_parts(465_893, 0).saturating_mul(x.into())) + // Standard Error: 3_080 + .saturating_add(Weight::from_parts(51_705, 0).saturating_mul(r.into())) + // Standard Error: 600 + .saturating_add(Weight::from_parts(456_337, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -196,11 +196,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `89 + r * (57 ±0)` // Estimated: `2626` - // Minimum execution time: 7_830_000 picoseconds. - Weight::from_parts(8_377_417, 0) + // Minimum execution time: 7_728_000 picoseconds. + Weight::from_parts(8_355_815, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_136 - .saturating_add(Weight::from_parts(74_641, 0).saturating_mul(r.into())) + // Standard Error: 1_906 + .saturating_add(Weight::from_parts(79_588, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -211,11 +211,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `89 + r * (57 ±0)` // Estimated: `2626` - // Minimum execution time: 7_045_000 picoseconds. - Weight::from_parts(7_538_770, 0) + // Minimum execution time: 7_089_000 picoseconds. + Weight::from_parts(7_576_412, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_002 - .saturating_add(Weight::from_parts(65_790, 0).saturating_mul(r.into())) + // Standard Error: 1_206 + .saturating_add(Weight::from_parts(71_077, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -226,11 +226,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `89 + r * (57 ±0)` // Estimated: `2626` - // Minimum execution time: 6_987_000 picoseconds. - Weight::from_parts(7_497_913, 0) + // Minimum execution time: 6_907_000 picoseconds. + Weight::from_parts(7_433_000, 0) .saturating_add(Weight::from_parts(0, 2626)) - // Standard Error: 1_300 - .saturating_add(Weight::from_parts(68_887, 0).saturating_mul(r.into())) + // Standard Error: 2_041 + .saturating_add(Weight::from_parts(87_795, 0).saturating_mul(r.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -244,13 +244,13 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `445 + r * (57 ±0) + x * (66 ±0)` // Estimated: `11003` - // Minimum execution time: 23_110_000 picoseconds. - Weight::from_parts(21_891_472, 0) + // Minimum execution time: 23_092_000 picoseconds. + Weight::from_parts(22_124_134, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 5_047 - .saturating_add(Weight::from_parts(124_472, 0).saturating_mul(r.into())) - // Standard Error: 933 - .saturating_add(Weight::from_parts(738_830, 0).saturating_mul(x.into())) + // Standard Error: 5_946 + .saturating_add(Weight::from_parts(96_277, 0).saturating_mul(r.into())) + // Standard Error: 1_100 + .saturating_add(Weight::from_parts(747_847, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -269,15 +269,15 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `643 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)` // Estimated: `11003` - // Minimum execution time: 61_912_000 picoseconds. - Weight::from_parts(33_795_048, 0) + // Minimum execution time: 61_753_000 picoseconds. + Weight::from_parts(35_863_350, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 10_304 - .saturating_add(Weight::from_parts(280_504, 0).saturating_mul(r.into())) - // Standard Error: 2_012 - .saturating_add(Weight::from_parts(1_344_702, 0).saturating_mul(s.into())) - // Standard Error: 2_012 - .saturating_add(Weight::from_parts(266_002, 0).saturating_mul(x.into())) + // Standard Error: 11_973 + .saturating_add(Weight::from_parts(233_702, 0).saturating_mul(r.into())) + // Standard Error: 2_338 + .saturating_add(Weight::from_parts(1_299_595, 0).saturating_mul(s.into())) + // Standard Error: 2_338 + .saturating_add(Weight::from_parts(259_813, 0).saturating_mul(x.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into()))) @@ -293,11 +293,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `475 + s * (36 ±0)` // Estimated: `11003` - // Minimum execution time: 28_628_000 picoseconds. - Weight::from_parts(32_780_557, 0) + // Minimum execution time: 28_943_000 picoseconds. + Weight::from_parts(33_179_295, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 1_340 - .saturating_add(Weight::from_parts(96_911, 0).saturating_mul(s.into())) + // Standard Error: 1_202 + .saturating_add(Weight::from_parts(88_933, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -310,11 +310,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `591 + s * (3 ±0)` // Estimated: `11003` - // Minimum execution time: 12_274_000 picoseconds. - Weight::from_parts(13_840_277, 0) + // Minimum execution time: 12_477_000 picoseconds. + Weight::from_parts(13_825_181, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 438 - .saturating_add(Weight::from_parts(39_885, 0).saturating_mul(s.into())) + // Standard Error: 462 + .saturating_add(Weight::from_parts(41_943, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -329,11 +329,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `638 + s * (35 ±0)` // Estimated: `11003` - // Minimum execution time: 32_780_000 picoseconds. - Weight::from_parts(35_279_030, 0) + // Minimum execution time: 32_366_000 picoseconds. + Weight::from_parts(34_858_525, 0) .saturating_add(Weight::from_parts(0, 11003)) - // Standard Error: 804 - .saturating_add(Weight::from_parts(78_148, 0).saturating_mul(s.into())) + // Standard Error: 806 + .saturating_add(Weight::from_parts(86_822, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -348,11 +348,11 @@ impl pallet_identity::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `667 + s * (37 ±0)` // Estimated: `6723` - // Minimum execution time: 24_161_000 picoseconds. - Weight::from_parts(26_009_551, 0) + // Minimum execution time: 23_599_000 picoseconds. + Weight::from_parts(26_244_603, 0) .saturating_add(Weight::from_parts(0, 6723)) - // Standard Error: 1_117 - .saturating_add(Weight::from_parts(89_067, 0).saturating_mul(s.into())) + // Standard Error: 773 + .saturating_add(Weight::from_parts(81_925, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/runtime/trappist/src/weights/pallet_lockdown_mode.rs b/runtime/trappist/src/weights/pallet_lockdown_mode.rs index f43fd513..b339e84c 100644 --- a/runtime/trappist/src/weights/pallet_lockdown_mode.rs +++ b/runtime/trappist/src/weights/pallet_lockdown_mode.rs @@ -58,8 +58,8 @@ impl pallet_lockdown_mode::WeightInfo for WeightInfo // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 14_309_000 picoseconds. - Weight::from_parts(14_739_000, 0) + // Minimum execution time: 14_232_000 picoseconds. + Weight::from_parts(14_717_000, 0) .saturating_add(Weight::from_parts(0, 1486)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -72,8 +72,8 @@ impl pallet_lockdown_mode::WeightInfo for WeightInfo // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 14_146_000 picoseconds. - Weight::from_parts(14_589_000, 0) + // Minimum execution time: 13_969_000 picoseconds. + Weight::from_parts(14_978_000, 0) .saturating_add(Weight::from_parts(0, 1486)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) diff --git a/runtime/trappist/src/weights/pallet_multisig.rs b/runtime/trappist/src/weights/pallet_multisig.rs index ed2450e0..00eb4f0d 100644 --- a/runtime/trappist/src/weights/pallet_multisig.rs +++ b/runtime/trappist/src/weights/pallet_multisig.rs @@ -57,11 +57,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 18_627_000 picoseconds. - Weight::from_parts(19_438_336, 0) + // Minimum execution time: 18_755_000 picoseconds. + Weight::from_parts(19_447_825, 0) .saturating_add(Weight::from_parts(0, 1486)) - // Standard Error: 4 - .saturating_add(Weight::from_parts(662, 0).saturating_mul(z.into())) + // Standard Error: 5 + .saturating_add(Weight::from_parts(548, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1)) } /// Storage: `Multisig::Multisigs` (r:1 w:1) @@ -72,13 +72,13 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `262 + s * (2 ±0)` // Estimated: `6811` - // Minimum execution time: 45_244_000 picoseconds. - Weight::from_parts(33_848_875, 0) + // Minimum execution time: 44_955_000 picoseconds. + Weight::from_parts(33_814_981, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 960 - .saturating_add(Weight::from_parts(131_936, 0).saturating_mul(s.into())) - // Standard Error: 9 - .saturating_add(Weight::from_parts(1_560, 0).saturating_mul(z.into())) + // Standard Error: 1_109 + .saturating_add(Weight::from_parts(130_551, 0).saturating_mul(s.into())) + // Standard Error: 10 + .saturating_add(Weight::from_parts(1_497, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -90,13 +90,13 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `282` // Estimated: `6811` - // Minimum execution time: 30_064_000 picoseconds. - Weight::from_parts(20_373_883, 0) + // Minimum execution time: 30_074_000 picoseconds. + Weight::from_parts(20_490_541, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 652 - .saturating_add(Weight::from_parts(107_082, 0).saturating_mul(s.into())) + // Standard Error: 714 + .saturating_add(Weight::from_parts(110_631, 0).saturating_mul(s.into())) // Standard Error: 6 - .saturating_add(Weight::from_parts(1_526, 0).saturating_mul(z.into())) + .saturating_add(Weight::from_parts(1_423, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -112,13 +112,13 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `485 + s * (33 ±0)` // Estimated: `6811` - // Minimum execution time: 55_885_000 picoseconds. - Weight::from_parts(40_619_248, 0) + // Minimum execution time: 55_376_000 picoseconds. + Weight::from_parts(39_818_090, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 1_196 - .saturating_add(Weight::from_parts(169_881, 0).saturating_mul(s.into())) - // Standard Error: 11 - .saturating_add(Weight::from_parts(1_678, 0).saturating_mul(z.into())) + // Standard Error: 1_744 + .saturating_add(Weight::from_parts(178_608, 0).saturating_mul(s.into())) + // Standard Error: 17 + .saturating_add(Weight::from_parts(1_704, 0).saturating_mul(z.into())) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -129,11 +129,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `263 + s * (2 ±0)` // Estimated: `6811` - // Minimum execution time: 32_475_000 picoseconds. - Weight::from_parts(32_822_991, 0) + // Minimum execution time: 31_722_000 picoseconds. + Weight::from_parts(32_498_157, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 1_021 - .saturating_add(Weight::from_parts(124_869, 0).saturating_mul(s.into())) + // Standard Error: 1_039 + .saturating_add(Weight::from_parts(127_068, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -144,11 +144,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `282` // Estimated: `6811` - // Minimum execution time: 18_126_000 picoseconds. - Weight::from_parts(18_547_228, 0) + // Minimum execution time: 18_119_000 picoseconds. + Weight::from_parts(18_198_701, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 624 - .saturating_add(Weight::from_parts(107_773, 0).saturating_mul(s.into())) + // Standard Error: 820 + .saturating_add(Weight::from_parts(116_735, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -159,11 +159,11 @@ impl pallet_multisig::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `454 + s * (1 ±0)` // Estimated: `6811` - // Minimum execution time: 33_096_000 picoseconds. - Weight::from_parts(33_611_091, 0) + // Minimum execution time: 33_025_000 picoseconds. + Weight::from_parts(34_108_577, 0) .saturating_add(Weight::from_parts(0, 6811)) - // Standard Error: 858 - .saturating_add(Weight::from_parts(131_158, 0).saturating_mul(s.into())) + // Standard Error: 1_017 + .saturating_add(Weight::from_parts(122_467, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } diff --git a/runtime/trappist/src/weights/pallet_nfts.rs b/runtime/trappist/src/weights/pallet_nfts.rs new file mode 100644 index 00000000..56d6b864 --- /dev/null +++ b/runtime/trappist/src/weights/pallet_nfts.rs @@ -0,0 +1,773 @@ +// This file is part of Trappist. + +// Copyright (C) Parity Technologies (UK) Ltd. +// SPDX-License-Identifier: Apache-2.0 + +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +//! Autogenerated weights for `pallet_nfts` +//! +//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev +//! DATE: 2023-10-04, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! WORST CASE MAP SIZE: `1000000` +//! HOSTNAME: `runner-nbnwcyh-project-647-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz` +//! EXECUTION: ``, WASM-EXECUTION: `Compiled`, CHAIN: `Some("trappist-dev")`, DB CACHE: 1024 + +// Executed Command: +// ./target/production/trappist-node +// benchmark +// pallet +// --chain=trappist-dev +// --steps=50 +// --repeat=20 +// --no-storage-info +// --no-median-slopes +// --no-min-squares +// --pallet=pallet_nfts +// --extrinsic=* +// --wasm-execution=compiled +// --header=./templates/file_header.txt +// --output=./runtime/trappist/src/weights/ + +#![cfg_attr(rustfmt, rustfmt_skip)] +#![allow(unused_parens)] +#![allow(unused_imports)] +#![allow(missing_docs)] + +use frame_support::{traits::Get, weights::Weight}; +use core::marker::PhantomData; + +/// Weight functions for `pallet_nfts`. +pub struct WeightInfo(PhantomData); +impl pallet_nfts::WeightInfo for WeightInfo { + /// Storage: `Nfts::NextCollectionId` (r:1 w:1) + /// Proof: `Nfts::NextCollectionId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Collection` (r:1 w:1) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionRoleOf` (r:0 w:1) + /// Proof: `Nfts::CollectionRoleOf` (`max_values`: None, `max_size`: Some(69), added: 2544, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:0 w:1) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionAccount` (r:0 w:1) + /// Proof: `Nfts::CollectionAccount` (`max_values`: None, `max_size`: Some(68), added: 2543, mode: `MaxEncodedLen`) + fn create() -> Weight { + // Proof Size summary in bytes: + // Measured: `179` + // Estimated: `3549` + // Minimum execution time: 39_348_000 picoseconds. + Weight::from_parts(40_056_000, 0) + .saturating_add(Weight::from_parts(0, 3549)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(5)) + } + /// Storage: `Nfts::NextCollectionId` (r:1 w:1) + /// Proof: `Nfts::NextCollectionId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Collection` (r:1 w:1) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionRoleOf` (r:0 w:1) + /// Proof: `Nfts::CollectionRoleOf` (`max_values`: None, `max_size`: Some(69), added: 2544, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:0 w:1) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionAccount` (r:0 w:1) + /// Proof: `Nfts::CollectionAccount` (`max_values`: None, `max_size`: Some(68), added: 2543, mode: `MaxEncodedLen`) + fn force_create() -> Weight { + // Proof Size summary in bytes: + // Measured: `76` + // Estimated: `3549` + // Minimum execution time: 23_989_000 picoseconds. + Weight::from_parts(24_824_000, 0) + .saturating_add(Weight::from_parts(0, 3549)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(5)) + } + /// Storage: `Nfts::Collection` (r:1 w:1) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemMetadataOf` (r:1 w:0) + /// Proof: `Nfts::ItemMetadataOf` (`max_values`: None, `max_size`: Some(219), added: 2694, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionRoleOf` (r:1 w:1) + /// Proof: `Nfts::CollectionRoleOf` (`max_values`: None, `max_size`: Some(69), added: 2544, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Attribute` (r:1001 w:1000) + /// Proof: `Nfts::Attribute` (`max_values`: None, `max_size`: Some(254), added: 2729, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemConfigOf` (r:1000 w:1000) + /// Proof: `Nfts::ItemConfigOf` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionMetadataOf` (r:0 w:1) + /// Proof: `Nfts::CollectionMetadataOf` (`max_values`: None, `max_size`: Some(166), added: 2641, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:0 w:1) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionAccount` (r:0 w:1) + /// Proof: `Nfts::CollectionAccount` (`max_values`: None, `max_size`: Some(68), added: 2543, mode: `MaxEncodedLen`) + /// The range of component `m` is `[0, 1000]`. + /// The range of component `c` is `[0, 1000]`. + /// The range of component `a` is `[0, 1000]`. + fn destroy(_m: u32, _c: u32, a: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `32220 + a * (140 ±0)` + // Estimated: `2523990 + a * (2729 ±0)` + // Minimum execution time: 1_181_494_000 picoseconds. + Weight::from_parts(1_328_439_345, 0) + .saturating_add(Weight::from_parts(0, 2523990)) + // Standard Error: 10_428 + .saturating_add(Weight::from_parts(6_195_153, 0).saturating_mul(a.into())) + .saturating_add(T::DbWeight::get().reads(1004)) + .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(a.into()))) + .saturating_add(T::DbWeight::get().writes(1005)) + .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(a.into()))) + .saturating_add(Weight::from_parts(0, 2729).saturating_mul(a.into())) + } + /// Storage: `Nfts::CollectionConfigOf` (r:1 w:0) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Item` (r:1 w:1) + /// Proof: `Nfts::Item` (`max_values`: None, `max_size`: Some(861), added: 3336, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Collection` (r:1 w:1) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionRoleOf` (r:1 w:0) + /// Proof: `Nfts::CollectionRoleOf` (`max_values`: None, `max_size`: Some(69), added: 2544, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemConfigOf` (r:1 w:1) + /// Proof: `Nfts::ItemConfigOf` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Account` (r:0 w:1) + /// Proof: `Nfts::Account` (`max_values`: None, `max_size`: Some(88), added: 2563, mode: `MaxEncodedLen`) + fn mint() -> Weight { + // Proof Size summary in bytes: + // Measured: `455` + // Estimated: `4326` + // Minimum execution time: 49_593_000 picoseconds. + Weight::from_parts(50_263_000, 0) + .saturating_add(Weight::from_parts(0, 4326)) + .saturating_add(T::DbWeight::get().reads(5)) + .saturating_add(T::DbWeight::get().writes(4)) + } + /// Storage: `Nfts::CollectionRoleOf` (r:1 w:0) + /// Proof: `Nfts::CollectionRoleOf` (`max_values`: None, `max_size`: Some(69), added: 2544, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Item` (r:1 w:1) + /// Proof: `Nfts::Item` (`max_values`: None, `max_size`: Some(861), added: 3336, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Collection` (r:1 w:1) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:1 w:0) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemConfigOf` (r:1 w:1) + /// Proof: `Nfts::ItemConfigOf` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Account` (r:0 w:1) + /// Proof: `Nfts::Account` (`max_values`: None, `max_size`: Some(88), added: 2563, mode: `MaxEncodedLen`) + fn force_mint() -> Weight { + // Proof Size summary in bytes: + // Measured: `455` + // Estimated: `4326` + // Minimum execution time: 48_136_000 picoseconds. + Weight::from_parts(49_500_000, 0) + .saturating_add(Weight::from_parts(0, 4326)) + .saturating_add(T::DbWeight::get().reads(5)) + .saturating_add(T::DbWeight::get().writes(4)) + } + /// Storage: `Nfts::Attribute` (r:1 w:0) + /// Proof: `Nfts::Attribute` (`max_values`: None, `max_size`: Some(254), added: 2729, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemConfigOf` (r:1 w:1) + /// Proof: `Nfts::ItemConfigOf` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Collection` (r:1 w:1) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Item` (r:1 w:1) + /// Proof: `Nfts::Item` (`max_values`: None, `max_size`: Some(861), added: 3336, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemMetadataOf` (r:1 w:0) + /// Proof: `Nfts::ItemMetadataOf` (`max_values`: None, `max_size`: Some(219), added: 2694, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Account` (r:0 w:1) + /// Proof: `Nfts::Account` (`max_values`: None, `max_size`: Some(88), added: 2563, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemPriceOf` (r:0 w:1) + /// Proof: `Nfts::ItemPriceOf` (`max_values`: None, `max_size`: Some(89), added: 2564, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemAttributesApprovalsOf` (r:0 w:1) + /// Proof: `Nfts::ItemAttributesApprovalsOf` (`max_values`: None, `max_size`: Some(1001), added: 3476, mode: `MaxEncodedLen`) + /// Storage: `Nfts::PendingSwapOf` (r:0 w:1) + /// Proof: `Nfts::PendingSwapOf` (`max_values`: None, `max_size`: Some(71), added: 2546, mode: `MaxEncodedLen`) + fn burn() -> Weight { + // Proof Size summary in bytes: + // Measured: `564` + // Estimated: `4326` + // Minimum execution time: 54_306_000 picoseconds. + Weight::from_parts(55_647_000, 0) + .saturating_add(Weight::from_parts(0, 4326)) + .saturating_add(T::DbWeight::get().reads(5)) + .saturating_add(T::DbWeight::get().writes(7)) + } + /// Storage: `Nfts::Collection` (r:1 w:0) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Attribute` (r:1 w:0) + /// Proof: `Nfts::Attribute` (`max_values`: None, `max_size`: Some(254), added: 2729, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:1 w:0) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemConfigOf` (r:1 w:0) + /// Proof: `Nfts::ItemConfigOf` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Item` (r:1 w:1) + /// Proof: `Nfts::Item` (`max_values`: None, `max_size`: Some(861), added: 3336, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Account` (r:0 w:2) + /// Proof: `Nfts::Account` (`max_values`: None, `max_size`: Some(88), added: 2563, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemPriceOf` (r:0 w:1) + /// Proof: `Nfts::ItemPriceOf` (`max_values`: None, `max_size`: Some(89), added: 2564, mode: `MaxEncodedLen`) + /// Storage: `Nfts::PendingSwapOf` (r:0 w:1) + /// Proof: `Nfts::PendingSwapOf` (`max_values`: None, `max_size`: Some(71), added: 2546, mode: `MaxEncodedLen`) + fn transfer() -> Weight { + // Proof Size summary in bytes: + // Measured: `593` + // Estimated: `4326` + // Minimum execution time: 40_196_000 picoseconds. + Weight::from_parts(40_939_000, 0) + .saturating_add(Weight::from_parts(0, 4326)) + .saturating_add(T::DbWeight::get().reads(5)) + .saturating_add(T::DbWeight::get().writes(5)) + } + /// Storage: `Nfts::Collection` (r:1 w:0) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:1 w:0) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Item` (r:5000 w:5000) + /// Proof: `Nfts::Item` (`max_values`: None, `max_size`: Some(861), added: 3336, mode: `MaxEncodedLen`) + /// The range of component `i` is `[0, 5000]`. + fn redeposit(i: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `763 + i * (108 ±0)` + // Estimated: `3549 + i * (3336 ±0)` + // Minimum execution time: 15_967_000 picoseconds. + Weight::from_parts(16_393_000, 0) + .saturating_add(Weight::from_parts(0, 3549)) + // Standard Error: 18_090 + .saturating_add(Weight::from_parts(17_841_266, 0).saturating_mul(i.into())) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(i.into()))) + .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into()))) + .saturating_add(Weight::from_parts(0, 3336).saturating_mul(i.into())) + } + /// Storage: `Nfts::CollectionRoleOf` (r:1 w:0) + /// Proof: `Nfts::CollectionRoleOf` (`max_values`: None, `max_size`: Some(69), added: 2544, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemConfigOf` (r:1 w:1) + /// Proof: `Nfts::ItemConfigOf` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) + fn lock_item_transfer() -> Weight { + // Proof Size summary in bytes: + // Measured: `435` + // Estimated: `3534` + // Minimum execution time: 19_966_000 picoseconds. + Weight::from_parts(20_406_000, 0) + .saturating_add(Weight::from_parts(0, 3534)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Nfts::CollectionRoleOf` (r:1 w:0) + /// Proof: `Nfts::CollectionRoleOf` (`max_values`: None, `max_size`: Some(69), added: 2544, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemConfigOf` (r:1 w:1) + /// Proof: `Nfts::ItemConfigOf` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) + fn unlock_item_transfer() -> Weight { + // Proof Size summary in bytes: + // Measured: `435` + // Estimated: `3534` + // Minimum execution time: 19_923_000 picoseconds. + Weight::from_parts(20_380_000, 0) + .saturating_add(Weight::from_parts(0, 3534)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Nfts::Collection` (r:1 w:0) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:1 w:1) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + fn lock_collection() -> Weight { + // Proof Size summary in bytes: + // Measured: `340` + // Estimated: `3549` + // Minimum execution time: 16_898_000 picoseconds. + Weight::from_parts(17_328_000, 0) + .saturating_add(Weight::from_parts(0, 3549)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Nfts::OwnershipAcceptance` (r:1 w:1) + /// Proof: `Nfts::OwnershipAcceptance` (`max_values`: None, `max_size`: Some(52), added: 2527, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Collection` (r:1 w:1) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionAccount` (r:0 w:2) + /// Proof: `Nfts::CollectionAccount` (`max_values`: None, `max_size`: Some(68), added: 2543, mode: `MaxEncodedLen`) + fn transfer_ownership() -> Weight { + // Proof Size summary in bytes: + // Measured: `388` + // Estimated: `3549` + // Minimum execution time: 22_100_000 picoseconds. + Weight::from_parts(22_726_000, 0) + .saturating_add(Weight::from_parts(0, 3549)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(4)) + } + /// Storage: `Nfts::Collection` (r:1 w:1) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionRoleOf` (r:2 w:4) + /// Proof: `Nfts::CollectionRoleOf` (`max_values`: None, `max_size`: Some(69), added: 2544, mode: `MaxEncodedLen`) + fn set_team() -> Weight { + // Proof Size summary in bytes: + // Measured: `369` + // Estimated: `6078` + // Minimum execution time: 40_093_000 picoseconds. + Weight::from_parts(40_835_000, 0) + .saturating_add(Weight::from_parts(0, 6078)) + .saturating_add(T::DbWeight::get().reads(3)) + .saturating_add(T::DbWeight::get().writes(5)) + } + /// Storage: `Nfts::Collection` (r:1 w:1) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionAccount` (r:0 w:2) + /// Proof: `Nfts::CollectionAccount` (`max_values`: None, `max_size`: Some(68), added: 2543, mode: `MaxEncodedLen`) + fn force_collection_owner() -> Weight { + // Proof Size summary in bytes: + // Measured: `311` + // Estimated: `3549` + // Minimum execution time: 17_216_000 picoseconds. + Weight::from_parts(17_770_000, 0) + .saturating_add(Weight::from_parts(0, 3549)) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(3)) + } + /// Storage: `Nfts::Collection` (r:1 w:0) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:0 w:1) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + fn force_collection_config() -> Weight { + // Proof Size summary in bytes: + // Measured: `276` + // Estimated: `3549` + // Minimum execution time: 14_022_000 picoseconds. + Weight::from_parts(14_575_000, 0) + .saturating_add(Weight::from_parts(0, 3549)) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Nfts::CollectionRoleOf` (r:1 w:0) + /// Proof: `Nfts::CollectionRoleOf` (`max_values`: None, `max_size`: Some(69), added: 2544, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemConfigOf` (r:1 w:1) + /// Proof: `Nfts::ItemConfigOf` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) + fn lock_item_properties() -> Weight { + // Proof Size summary in bytes: + // Measured: `435` + // Estimated: `3534` + // Minimum execution time: 19_413_000 picoseconds. + Weight::from_parts(19_836_000, 0) + .saturating_add(Weight::from_parts(0, 3534)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Nfts::Collection` (r:1 w:1) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionRoleOf` (r:1 w:0) + /// Proof: `Nfts::CollectionRoleOf` (`max_values`: None, `max_size`: Some(69), added: 2544, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:1 w:0) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemConfigOf` (r:1 w:0) + /// Proof: `Nfts::ItemConfigOf` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Attribute` (r:1 w:1) + /// Proof: `Nfts::Attribute` (`max_values`: None, `max_size`: Some(254), added: 2729, mode: `MaxEncodedLen`) + fn set_attribute() -> Weight { + // Proof Size summary in bytes: + // Measured: `539` + // Estimated: `3719` + // Minimum execution time: 48_321_000 picoseconds. + Weight::from_parts(49_046_000, 0) + .saturating_add(Weight::from_parts(0, 3719)) + .saturating_add(T::DbWeight::get().reads(5)) + .saturating_add(T::DbWeight::get().writes(2)) + } + /// Storage: `Nfts::Collection` (r:1 w:1) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Attribute` (r:1 w:1) + /// Proof: `Nfts::Attribute` (`max_values`: None, `max_size`: Some(254), added: 2729, mode: `MaxEncodedLen`) + fn force_set_attribute() -> Weight { + // Proof Size summary in bytes: + // Measured: `344` + // Estimated: `3719` + // Minimum execution time: 24_988_000 picoseconds. + Weight::from_parts(25_456_000, 0) + .saturating_add(Weight::from_parts(0, 3719)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(2)) + } + /// Storage: `Nfts::Attribute` (r:1 w:1) + /// Proof: `Nfts::Attribute` (`max_values`: None, `max_size`: Some(254), added: 2729, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionRoleOf` (r:1 w:0) + /// Proof: `Nfts::CollectionRoleOf` (`max_values`: None, `max_size`: Some(69), added: 2544, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemConfigOf` (r:1 w:0) + /// Proof: `Nfts::ItemConfigOf` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Collection` (r:1 w:1) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + fn clear_attribute() -> Weight { + // Proof Size summary in bytes: + // Measured: `758` + // Estimated: `3719` + // Minimum execution time: 46_004_000 picoseconds. + Weight::from_parts(46_766_000, 0) + .saturating_add(Weight::from_parts(0, 3719)) + .saturating_add(T::DbWeight::get().reads(4)) + .saturating_add(T::DbWeight::get().writes(2)) + } + /// Storage: `Nfts::Item` (r:1 w:0) + /// Proof: `Nfts::Item` (`max_values`: None, `max_size`: Some(861), added: 3336, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemAttributesApprovalsOf` (r:1 w:1) + /// Proof: `Nfts::ItemAttributesApprovalsOf` (`max_values`: None, `max_size`: Some(1001), added: 3476, mode: `MaxEncodedLen`) + fn approve_item_attributes() -> Weight { + // Proof Size summary in bytes: + // Measured: `381` + // Estimated: `4466` + // Minimum execution time: 16_899_000 picoseconds. + Weight::from_parts(17_373_000, 0) + .saturating_add(Weight::from_parts(0, 4466)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Nfts::Item` (r:1 w:0) + /// Proof: `Nfts::Item` (`max_values`: None, `max_size`: Some(861), added: 3336, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemAttributesApprovalsOf` (r:1 w:1) + /// Proof: `Nfts::ItemAttributesApprovalsOf` (`max_values`: None, `max_size`: Some(1001), added: 3476, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Attribute` (r:1001 w:1000) + /// Proof: `Nfts::Attribute` (`max_values`: None, `max_size`: Some(254), added: 2729, mode: `MaxEncodedLen`) + /// Storage: `System::Account` (r:1 w:1) + /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) + /// The range of component `n` is `[0, 1000]`. + fn cancel_item_attributes_approval(n: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `803 + n * (172 ±0)` + // Estimated: `4466 + n * (2729 ±0)` + // Minimum execution time: 25_536_000 picoseconds. + Weight::from_parts(25_982_000, 0) + .saturating_add(Weight::from_parts(0, 4466)) + // Standard Error: 3_663 + .saturating_add(Weight::from_parts(5_934_632, 0).saturating_mul(n.into())) + .saturating_add(T::DbWeight::get().reads(4)) + .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into()))) + .saturating_add(T::DbWeight::get().writes(2)) + .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into()))) + .saturating_add(Weight::from_parts(0, 2729).saturating_mul(n.into())) + } + /// Storage: `Nfts::CollectionRoleOf` (r:1 w:0) + /// Proof: `Nfts::CollectionRoleOf` (`max_values`: None, `max_size`: Some(69), added: 2544, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Collection` (r:1 w:1) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemConfigOf` (r:1 w:0) + /// Proof: `Nfts::ItemConfigOf` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:1 w:0) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemMetadataOf` (r:1 w:1) + /// Proof: `Nfts::ItemMetadataOf` (`max_values`: None, `max_size`: Some(219), added: 2694, mode: `MaxEncodedLen`) + fn set_metadata() -> Weight { + // Proof Size summary in bytes: + // Measured: `539` + // Estimated: `3684` + // Minimum execution time: 40_969_000 picoseconds. + Weight::from_parts(41_770_000, 0) + .saturating_add(Weight::from_parts(0, 3684)) + .saturating_add(T::DbWeight::get().reads(5)) + .saturating_add(T::DbWeight::get().writes(2)) + } + /// Storage: `Nfts::CollectionRoleOf` (r:1 w:0) + /// Proof: `Nfts::CollectionRoleOf` (`max_values`: None, `max_size`: Some(69), added: 2544, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemMetadataOf` (r:1 w:1) + /// Proof: `Nfts::ItemMetadataOf` (`max_values`: None, `max_size`: Some(219), added: 2694, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Collection` (r:1 w:1) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemConfigOf` (r:1 w:0) + /// Proof: `Nfts::ItemConfigOf` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) + fn clear_metadata() -> Weight { + // Proof Size summary in bytes: + // Measured: `721` + // Estimated: `3684` + // Minimum execution time: 39_829_000 picoseconds. + Weight::from_parts(40_763_000, 0) + .saturating_add(Weight::from_parts(0, 3684)) + .saturating_add(T::DbWeight::get().reads(4)) + .saturating_add(T::DbWeight::get().writes(2)) + } + /// Storage: `Nfts::CollectionRoleOf` (r:1 w:0) + /// Proof: `Nfts::CollectionRoleOf` (`max_values`: None, `max_size`: Some(69), added: 2544, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:1 w:0) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Collection` (r:1 w:1) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionMetadataOf` (r:1 w:1) + /// Proof: `Nfts::CollectionMetadataOf` (`max_values`: None, `max_size`: Some(166), added: 2641, mode: `MaxEncodedLen`) + fn set_collection_metadata() -> Weight { + // Proof Size summary in bytes: + // Measured: `398` + // Estimated: `3631` + // Minimum execution time: 38_375_000 picoseconds. + Weight::from_parts(39_327_000, 0) + .saturating_add(Weight::from_parts(0, 3631)) + .saturating_add(T::DbWeight::get().reads(4)) + .saturating_add(T::DbWeight::get().writes(2)) + } + /// Storage: `Nfts::CollectionRoleOf` (r:1 w:0) + /// Proof: `Nfts::CollectionRoleOf` (`max_values`: None, `max_size`: Some(69), added: 2544, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Collection` (r:1 w:0) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:1 w:0) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionMetadataOf` (r:1 w:1) + /// Proof: `Nfts::CollectionMetadataOf` (`max_values`: None, `max_size`: Some(166), added: 2641, mode: `MaxEncodedLen`) + fn clear_collection_metadata() -> Weight { + // Proof Size summary in bytes: + // Measured: `588` + // Estimated: `3631` + // Minimum execution time: 37_103_000 picoseconds. + Weight::from_parts(38_136_000, 0) + .saturating_add(Weight::from_parts(0, 3631)) + .saturating_add(T::DbWeight::get().reads(4)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Nfts::Item` (r:1 w:1) + /// Proof: `Nfts::Item` (`max_values`: None, `max_size`: Some(861), added: 3336, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:1 w:0) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + fn approve_transfer() -> Weight { + // Proof Size summary in bytes: + // Measured: `410` + // Estimated: `4326` + // Minimum execution time: 20_772_000 picoseconds. + Weight::from_parts(21_451_000, 0) + .saturating_add(Weight::from_parts(0, 4326)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Nfts::Item` (r:1 w:1) + /// Proof: `Nfts::Item` (`max_values`: None, `max_size`: Some(861), added: 3336, mode: `MaxEncodedLen`) + fn cancel_approval() -> Weight { + // Proof Size summary in bytes: + // Measured: `418` + // Estimated: `4326` + // Minimum execution time: 18_262_000 picoseconds. + Weight::from_parts(18_935_000, 0) + .saturating_add(Weight::from_parts(0, 4326)) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Nfts::Item` (r:1 w:1) + /// Proof: `Nfts::Item` (`max_values`: None, `max_size`: Some(861), added: 3336, mode: `MaxEncodedLen`) + fn clear_all_transfer_approvals() -> Weight { + // Proof Size summary in bytes: + // Measured: `418` + // Estimated: `4326` + // Minimum execution time: 17_425_000 picoseconds. + Weight::from_parts(18_048_000, 0) + .saturating_add(Weight::from_parts(0, 4326)) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Nfts::OwnershipAcceptance` (r:1 w:1) + /// Proof: `Nfts::OwnershipAcceptance` (`max_values`: None, `max_size`: Some(52), added: 2527, mode: `MaxEncodedLen`) + fn set_accept_ownership() -> Weight { + // Proof Size summary in bytes: + // Measured: `76` + // Estimated: `3517` + // Minimum execution time: 14_491_000 picoseconds. + Weight::from_parts(15_034_000, 0) + .saturating_add(Weight::from_parts(0, 3517)) + .saturating_add(T::DbWeight::get().reads(1)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Nfts::CollectionConfigOf` (r:1 w:1) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Collection` (r:1 w:0) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + fn set_collection_max_supply() -> Weight { + // Proof Size summary in bytes: + // Measured: `340` + // Estimated: `3549` + // Minimum execution time: 18_872_000 picoseconds. + Weight::from_parts(19_364_000, 0) + .saturating_add(Weight::from_parts(0, 3549)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Nfts::CollectionRoleOf` (r:1 w:0) + /// Proof: `Nfts::CollectionRoleOf` (`max_values`: None, `max_size`: Some(69), added: 2544, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:1 w:1) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + fn update_mint_settings() -> Weight { + // Proof Size summary in bytes: + // Measured: `323` + // Estimated: `3538` + // Minimum execution time: 18_435_000 picoseconds. + Weight::from_parts(18_917_000, 0) + .saturating_add(Weight::from_parts(0, 3538)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Nfts::Item` (r:1 w:0) + /// Proof: `Nfts::Item` (`max_values`: None, `max_size`: Some(861), added: 3336, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:1 w:0) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemConfigOf` (r:1 w:0) + /// Proof: `Nfts::ItemConfigOf` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemPriceOf` (r:0 w:1) + /// Proof: `Nfts::ItemPriceOf` (`max_values`: None, `max_size`: Some(89), added: 2564, mode: `MaxEncodedLen`) + fn set_price() -> Weight { + // Proof Size summary in bytes: + // Measured: `518` + // Estimated: `4326` + // Minimum execution time: 22_968_000 picoseconds. + Weight::from_parts(23_739_000, 0) + .saturating_add(Weight::from_parts(0, 4326)) + .saturating_add(T::DbWeight::get().reads(3)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Nfts::Item` (r:1 w:1) + /// Proof: `Nfts::Item` (`max_values`: None, `max_size`: Some(861), added: 3336, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemPriceOf` (r:1 w:1) + /// Proof: `Nfts::ItemPriceOf` (`max_values`: None, `max_size`: Some(89), added: 2564, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Collection` (r:1 w:0) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Attribute` (r:1 w:0) + /// Proof: `Nfts::Attribute` (`max_values`: None, `max_size`: Some(254), added: 2729, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:1 w:0) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemConfigOf` (r:1 w:0) + /// Proof: `Nfts::ItemConfigOf` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Account` (r:0 w:2) + /// Proof: `Nfts::Account` (`max_values`: None, `max_size`: Some(88), added: 2563, mode: `MaxEncodedLen`) + /// Storage: `Nfts::PendingSwapOf` (r:0 w:1) + /// Proof: `Nfts::PendingSwapOf` (`max_values`: None, `max_size`: Some(71), added: 2546, mode: `MaxEncodedLen`) + fn buy_item() -> Weight { + // Proof Size summary in bytes: + // Measured: `705` + // Estimated: `4326` + // Minimum execution time: 50_214_000 picoseconds. + Weight::from_parts(51_138_000, 0) + .saturating_add(Weight::from_parts(0, 4326)) + .saturating_add(T::DbWeight::get().reads(6)) + .saturating_add(T::DbWeight::get().writes(5)) + } + /// The range of component `n` is `[0, 10]`. + fn pay_tips(n: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `0` + // Estimated: `0` + // Minimum execution time: 2_118_000 picoseconds. + Weight::from_parts(3_225_766, 0) + .saturating_add(Weight::from_parts(0, 0)) + // Standard Error: 6_222 + .saturating_add(Weight::from_parts(4_152_510, 0).saturating_mul(n.into())) + } + /// Storage: `Nfts::Item` (r:2 w:0) + /// Proof: `Nfts::Item` (`max_values`: None, `max_size`: Some(861), added: 3336, mode: `MaxEncodedLen`) + /// Storage: `Nfts::PendingSwapOf` (r:0 w:1) + /// Proof: `Nfts::PendingSwapOf` (`max_values`: None, `max_size`: Some(71), added: 2546, mode: `MaxEncodedLen`) + fn create_swap() -> Weight { + // Proof Size summary in bytes: + // Measured: `494` + // Estimated: `7662` + // Minimum execution time: 20_760_000 picoseconds. + Weight::from_parts(21_287_000, 0) + .saturating_add(Weight::from_parts(0, 7662)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Nfts::PendingSwapOf` (r:1 w:1) + /// Proof: `Nfts::PendingSwapOf` (`max_values`: None, `max_size`: Some(71), added: 2546, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Item` (r:1 w:0) + /// Proof: `Nfts::Item` (`max_values`: None, `max_size`: Some(861), added: 3336, mode: `MaxEncodedLen`) + fn cancel_swap() -> Weight { + // Proof Size summary in bytes: + // Measured: `513` + // Estimated: `4326` + // Minimum execution time: 20_841_000 picoseconds. + Weight::from_parts(21_607_000, 0) + .saturating_add(Weight::from_parts(0, 4326)) + .saturating_add(T::DbWeight::get().reads(2)) + .saturating_add(T::DbWeight::get().writes(1)) + } + /// Storage: `Nfts::Item` (r:2 w:2) + /// Proof: `Nfts::Item` (`max_values`: None, `max_size`: Some(861), added: 3336, mode: `MaxEncodedLen`) + /// Storage: `Nfts::PendingSwapOf` (r:1 w:2) + /// Proof: `Nfts::PendingSwapOf` (`max_values`: None, `max_size`: Some(71), added: 2546, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Collection` (r:1 w:0) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Attribute` (r:2 w:0) + /// Proof: `Nfts::Attribute` (`max_values`: None, `max_size`: Some(254), added: 2729, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:1 w:0) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemConfigOf` (r:2 w:0) + /// Proof: `Nfts::ItemConfigOf` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Account` (r:0 w:4) + /// Proof: `Nfts::Account` (`max_values`: None, `max_size`: Some(88), added: 2563, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemPriceOf` (r:0 w:2) + /// Proof: `Nfts::ItemPriceOf` (`max_values`: None, `max_size`: Some(89), added: 2564, mode: `MaxEncodedLen`) + fn claim_swap() -> Weight { + // Proof Size summary in bytes: + // Measured: `834` + // Estimated: `7662` + // Minimum execution time: 84_447_000 picoseconds. + Weight::from_parts(85_850_000, 0) + .saturating_add(Weight::from_parts(0, 7662)) + .saturating_add(T::DbWeight::get().reads(9)) + .saturating_add(T::DbWeight::get().writes(10)) + } + /// Storage: `Nfts::CollectionRoleOf` (r:2 w:0) + /// Proof: `Nfts::CollectionRoleOf` (`max_values`: None, `max_size`: Some(69), added: 2544, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:1 w:0) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Item` (r:1 w:1) + /// Proof: `Nfts::Item` (`max_values`: None, `max_size`: Some(861), added: 3336, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Collection` (r:1 w:1) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemConfigOf` (r:1 w:1) + /// Proof: `Nfts::ItemConfigOf` (`max_values`: None, `max_size`: Some(48), added: 2523, mode: `MaxEncodedLen`) + /// Storage: `System::Account` (r:1 w:1) + /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Attribute` (r:10 w:10) + /// Proof: `Nfts::Attribute` (`max_values`: None, `max_size`: Some(254), added: 2729, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemMetadataOf` (r:1 w:1) + /// Proof: `Nfts::ItemMetadataOf` (`max_values`: None, `max_size`: Some(219), added: 2694, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Account` (r:0 w:1) + /// Proof: `Nfts::Account` (`max_values`: None, `max_size`: Some(88), added: 2563, mode: `MaxEncodedLen`) + /// The range of component `n` is `[0, 10]`. + fn mint_pre_signed(n: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `595` + // Estimated: `6078 + n * (2729 ±0)` + // Minimum execution time: 144_775_000 picoseconds. + Weight::from_parts(151_710_764, 0) + .saturating_add(Weight::from_parts(0, 6078)) + // Standard Error: 39_921 + .saturating_add(Weight::from_parts(30_530_121, 0).saturating_mul(n.into())) + .saturating_add(T::DbWeight::get().reads(8)) + .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into()))) + .saturating_add(T::DbWeight::get().writes(6)) + .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into()))) + .saturating_add(Weight::from_parts(0, 2729).saturating_mul(n.into())) + } + /// Storage: `Nfts::Item` (r:1 w:0) + /// Proof: `Nfts::Item` (`max_values`: None, `max_size`: Some(861), added: 3336, mode: `MaxEncodedLen`) + /// Storage: `Nfts::ItemAttributesApprovalsOf` (r:1 w:1) + /// Proof: `Nfts::ItemAttributesApprovalsOf` (`max_values`: None, `max_size`: Some(1001), added: 3476, mode: `MaxEncodedLen`) + /// Storage: `Nfts::CollectionConfigOf` (r:1 w:0) + /// Proof: `Nfts::CollectionConfigOf` (`max_values`: None, `max_size`: Some(73), added: 2548, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Collection` (r:1 w:1) + /// Proof: `Nfts::Collection` (`max_values`: None, `max_size`: Some(84), added: 2559, mode: `MaxEncodedLen`) + /// Storage: `Nfts::Attribute` (r:10 w:10) + /// Proof: `Nfts::Attribute` (`max_values`: None, `max_size`: Some(254), added: 2729, mode: `MaxEncodedLen`) + /// Storage: `System::Account` (r:1 w:1) + /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`) + /// The range of component `n` is `[0, 10]`. + fn set_attributes_pre_signed(n: u32, ) -> Weight { + // Proof Size summary in bytes: + // Measured: `588` + // Estimated: `4466 + n * (2729 ±0)` + // Minimum execution time: 83_513_000 picoseconds. + Weight::from_parts(95_071_457, 0) + .saturating_add(Weight::from_parts(0, 4466)) + // Standard Error: 60_375 + .saturating_add(Weight::from_parts(29_928_552, 0).saturating_mul(n.into())) + .saturating_add(T::DbWeight::get().reads(4)) + .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into()))) + .saturating_add(T::DbWeight::get().writes(2)) + .saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into()))) + .saturating_add(Weight::from_parts(0, 2729).saturating_mul(n.into())) + } +} diff --git a/runtime/trappist/src/weights/pallet_preimage.rs b/runtime/trappist/src/weights/pallet_preimage.rs index 6f3b4cb6..014cccb4 100644 --- a/runtime/trappist/src/weights/pallet_preimage.rs +++ b/runtime/trappist/src/weights/pallet_preimage.rs @@ -59,11 +59,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `143` // Estimated: `3556` - // Minimum execution time: 30_625_000 picoseconds. - Weight::from_parts(31_002_000, 0) + // Minimum execution time: 29_677_000 picoseconds. + Weight::from_parts(30_386_000, 0) .saturating_add(Weight::from_parts(0, 3556)) - // Standard Error: 6 - .saturating_add(Weight::from_parts(2_560, 0).saturating_mul(s.into())) + // Standard Error: 8 + .saturating_add(Weight::from_parts(2_469, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -76,11 +76,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 17_809_000 picoseconds. - Weight::from_parts(18_037_000, 0) + // Minimum execution time: 16_917_000 picoseconds. + Weight::from_parts(17_207_000, 0) .saturating_add(Weight::from_parts(0, 3556)) - // Standard Error: 5 - .saturating_add(Weight::from_parts(2_516, 0).saturating_mul(s.into())) + // Standard Error: 4 + .saturating_add(Weight::from_parts(2_454, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -93,11 +93,11 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 16_738_000 picoseconds. - Weight::from_parts(17_004_000, 0) + // Minimum execution time: 16_230_000 picoseconds. + Weight::from_parts(26_546_065, 0) .saturating_add(Weight::from_parts(0, 3556)) - // Standard Error: 4 - .saturating_add(Weight::from_parts(2_530, 0).saturating_mul(s.into())) + // Standard Error: 6 + .saturating_add(Weight::from_parts(2_420, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -109,8 +109,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `289` // Estimated: `3556` - // Minimum execution time: 56_184_000 picoseconds. - Weight::from_parts(60_363_000, 0) + // Minimum execution time: 56_579_000 picoseconds. + Weight::from_parts(61_862_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -123,8 +123,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 38_172_000 picoseconds. - Weight::from_parts(42_240_000, 0) + // Minimum execution time: 37_659_000 picoseconds. + Weight::from_parts(39_844_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -135,8 +135,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `188` // Estimated: `3556` - // Minimum execution time: 33_708_000 picoseconds. - Weight::from_parts(36_992_000, 0) + // Minimum execution time: 35_337_000 picoseconds. + Weight::from_parts(38_733_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -147,8 +147,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 20_306_000 picoseconds. - Weight::from_parts(23_418_000, 0) + // Minimum execution time: 22_458_000 picoseconds. + Weight::from_parts(23_614_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -159,8 +159,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `42` // Estimated: `3556` - // Minimum execution time: 25_894_000 picoseconds. - Weight::from_parts(29_098_000, 0) + // Minimum execution time: 27_409_000 picoseconds. + Weight::from_parts(29_064_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -171,8 +171,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 11_009_000 picoseconds. - Weight::from_parts(12_523_000, 0) + // Minimum execution time: 11_938_000 picoseconds. + Weight::from_parts(13_058_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -185,8 +185,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `144` // Estimated: `3556` - // Minimum execution time: 33_930_000 picoseconds. - Weight::from_parts(38_666_000, 0) + // Minimum execution time: 34_000_000 picoseconds. + Weight::from_parts(35_205_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -197,8 +197,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 10_220_000 picoseconds. - Weight::from_parts(11_490_000, 0) + // Minimum execution time: 11_559_000 picoseconds. + Weight::from_parts(12_417_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -209,8 +209,8 @@ impl pallet_preimage::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `106` // Estimated: `3556` - // Minimum execution time: 11_358_000 picoseconds. - Weight::from_parts(12_120_000, 0) + // Minimum execution time: 10_248_000 picoseconds. + Weight::from_parts(11_514_000, 0) .saturating_add(Weight::from_parts(0, 3556)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) diff --git a/runtime/trappist/src/weights/pallet_scheduler.rs b/runtime/trappist/src/weights/pallet_scheduler.rs index 7e87c796..92c6d776 100644 --- a/runtime/trappist/src/weights/pallet_scheduler.rs +++ b/runtime/trappist/src/weights/pallet_scheduler.rs @@ -56,8 +56,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `31` // Estimated: `1489` - // Minimum execution time: 3_357_000 picoseconds. - Weight::from_parts(3_501_000, 0) + // Minimum execution time: 3_281_000 picoseconds. + Weight::from_parts(3_510_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -69,11 +69,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `81 + s * (177 ±0)` // Estimated: `402327` - // Minimum execution time: 2_930_000 picoseconds. - Weight::from_parts(3_039_000, 0) + // Minimum execution time: 2_999_000 picoseconds. + Weight::from_parts(3_067_000, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 1_468 - .saturating_add(Weight::from_parts(998_525, 0).saturating_mul(s.into())) + // Standard Error: 1_815 + .saturating_add(Weight::from_parts(959_585, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -81,8 +81,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 6_043_000 picoseconds. - Weight::from_parts(6_262_000, 0) + // Minimum execution time: 5_735_000 picoseconds. + Weight::from_parts(5_874_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Preimage::PreimageFor` (r:1 w:1) @@ -94,11 +94,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `179 + s * (1 ±0)` // Estimated: `3644 + s * (1 ±0)` - // Minimum execution time: 21_244_000 picoseconds. - Weight::from_parts(21_702_000, 0) + // Minimum execution time: 20_770_000 picoseconds. + Weight::from_parts(21_250_000, 0) .saturating_add(Weight::from_parts(0, 3644)) - // Standard Error: 12 - .saturating_add(Weight::from_parts(1_599, 0).saturating_mul(s.into())) + // Standard Error: 6 + .saturating_add(Weight::from_parts(1_367, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) .saturating_add(Weight::from_parts(0, 1).saturating_mul(s.into())) @@ -109,8 +109,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 7_512_000 picoseconds. - Weight::from_parts(7_726_000, 0) + // Minimum execution time: 7_003_000 picoseconds. + Weight::from_parts(7_237_000, 0) .saturating_add(Weight::from_parts(0, 0)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -118,8 +118,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 6_062_000 picoseconds. - Weight::from_parts(6_492_000, 0) + // Minimum execution time: 5_601_000 picoseconds. + Weight::from_parts(5_855_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `LockdownMode::LockdownModeStatus` (r:1 w:0) @@ -128,8 +128,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 7_207_000 picoseconds. - Weight::from_parts(7_467_000, 0) + // Minimum execution time: 6_713_000 picoseconds. + Weight::from_parts(6_994_000, 0) .saturating_add(Weight::from_parts(0, 1486)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -137,8 +137,8 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_874_000 picoseconds. - Weight::from_parts(3_095_000, 0) + // Minimum execution time: 2_577_000 picoseconds. + Weight::from_parts(2_784_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Scheduler::Agenda` (r:1 w:1) @@ -148,11 +148,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `81 + s * (177 ±0)` // Estimated: `402327` - // Minimum execution time: 12_546_000 picoseconds. - Weight::from_parts(13_862_907, 0) + // Minimum execution time: 11_857_000 picoseconds. + Weight::from_parts(12_505_291, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 3_462 - .saturating_add(Weight::from_parts(1_042_931, 0).saturating_mul(s.into())) + // Standard Error: 4_463 + .saturating_add(Weight::from_parts(1_020_297, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -165,11 +165,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `81 + s * (177 ±0)` // Estimated: `402327` - // Minimum execution time: 18_005_000 picoseconds. - Weight::from_parts(12_723_681, 0) + // Minimum execution time: 17_322_000 picoseconds. + Weight::from_parts(9_154_817, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 3_325 - .saturating_add(Weight::from_parts(1_789_789, 0).saturating_mul(s.into())) + // Standard Error: 4_314 + .saturating_add(Weight::from_parts(1_678_751, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -182,11 +182,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `596 + s * (178 ±0)` // Estimated: `402327` - // Minimum execution time: 15_855_000 picoseconds. - Weight::from_parts(18_571_980, 0) + // Minimum execution time: 15_054_000 picoseconds. + Weight::from_parts(14_687_320, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 3_388 - .saturating_add(Weight::from_parts(1_048_606, 0).saturating_mul(s.into())) + // Standard Error: 3_998 + .saturating_add(Weight::from_parts(1_014_326, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -199,11 +199,11 @@ impl pallet_scheduler::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `709 + s * (177 ±0)` // Estimated: `402327` - // Minimum execution time: 19_535_000 picoseconds. - Weight::from_parts(15_702_979, 0) + // Minimum execution time: 18_765_000 picoseconds. + Weight::from_parts(8_162_245, 0) .saturating_add(Weight::from_parts(0, 402327)) - // Standard Error: 3_739 - .saturating_add(Weight::from_parts(1_795_809, 0).saturating_mul(s.into())) + // Standard Error: 4_107 + .saturating_add(Weight::from_parts(1_695_984, 0).saturating_mul(s.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/runtime/trappist/src/weights/pallet_session.rs b/runtime/trappist/src/weights/pallet_session.rs index a85b30a1..d8e3fb3c 100644 --- a/runtime/trappist/src/weights/pallet_session.rs +++ b/runtime/trappist/src/weights/pallet_session.rs @@ -58,8 +58,8 @@ impl pallet_session::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `297` // Estimated: `3762` - // Minimum execution time: 15_718_000 picoseconds. - Weight::from_parts(16_378_000, 0) + // Minimum execution time: 15_968_000 picoseconds. + Weight::from_parts(16_415_000, 0) .saturating_add(Weight::from_parts(0, 3762)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -72,8 +72,8 @@ impl pallet_session::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `279` // Estimated: `3744` - // Minimum execution time: 11_214_000 picoseconds. - Weight::from_parts(11_751_000, 0) + // Minimum execution time: 11_294_000 picoseconds. + Weight::from_parts(11_673_000, 0) .saturating_add(Weight::from_parts(0, 3744)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) diff --git a/runtime/trappist/src/weights/pallet_timestamp.rs b/runtime/trappist/src/weights/pallet_timestamp.rs index 2afd6d04..549887fa 100644 --- a/runtime/trappist/src/weights/pallet_timestamp.rs +++ b/runtime/trappist/src/weights/pallet_timestamp.rs @@ -58,8 +58,8 @@ impl pallet_timestamp::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `190` // Estimated: `1493` - // Minimum execution time: 9_578_000 picoseconds. - Weight::from_parts(10_119_000, 0) + // Minimum execution time: 9_678_000 picoseconds. + Weight::from_parts(9_988_000, 0) .saturating_add(Weight::from_parts(0, 1493)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -68,8 +68,8 @@ impl pallet_timestamp::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `128` // Estimated: `0` - // Minimum execution time: 4_737_000 picoseconds. - Weight::from_parts(4_904_000, 0) + // Minimum execution time: 4_633_000 picoseconds. + Weight::from_parts(4_989_000, 0) .saturating_add(Weight::from_parts(0, 0)) } } diff --git a/runtime/trappist/src/weights/pallet_treasury.rs b/runtime/trappist/src/weights/pallet_treasury.rs index 01fb7cae..fbd7d139 100644 --- a/runtime/trappist/src/weights/pallet_treasury.rs +++ b/runtime/trappist/src/weights/pallet_treasury.rs @@ -54,8 +54,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 201_000 picoseconds. - Weight::from_parts(244_000, 0) + // Minimum execution time: 209_000 picoseconds. + Weight::from_parts(230_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `Treasury::ProposalCount` (r:1 w:1) @@ -66,8 +66,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `107` // Estimated: `1489` - // Minimum execution time: 28_341_000 picoseconds. - Weight::from_parts(29_268_000, 0) + // Minimum execution time: 27_382_000 picoseconds. + Weight::from_parts(28_009_000, 0) .saturating_add(Weight::from_parts(0, 1489)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -80,8 +80,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `368` // Estimated: `6196` - // Minimum execution time: 44_725_000 picoseconds. - Weight::from_parts(45_649_000, 0) + // Minimum execution time: 42_971_000 picoseconds. + Weight::from_parts(43_673_000, 0) .saturating_add(Weight::from_parts(0, 6196)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -95,11 +95,11 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `433 + p * (8 ±0)` // Estimated: `3573` - // Minimum execution time: 9_377_000 picoseconds. - Weight::from_parts(11_727_768, 0) + // Minimum execution time: 9_047_000 picoseconds. + Weight::from_parts(11_421_583, 0) .saturating_add(Weight::from_parts(0, 3573)) - // Standard Error: 1_077 - .saturating_add(Weight::from_parts(86_963, 0).saturating_mul(p.into())) + // Standard Error: 998 + .saturating_add(Weight::from_parts(93_648, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -109,8 +109,8 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `90` // Estimated: `1887` - // Minimum execution time: 6_718_000 picoseconds. - Weight::from_parts(7_024_000, 0) + // Minimum execution time: 6_416_000 picoseconds. + Weight::from_parts(6_549_000, 0) .saturating_add(Weight::from_parts(0, 1887)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -130,11 +130,11 @@ impl pallet_treasury::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `0 + p * (251 ±0)` // Estimated: `3593 + p * (5206 ±0)` - // Minimum execution time: 31_019_000 picoseconds. - Weight::from_parts(26_871_822, 0) + // Minimum execution time: 29_463_000 picoseconds. + Weight::from_parts(32_128_992, 0) .saturating_add(Weight::from_parts(0, 3593)) - // Standard Error: 24_500 - .saturating_add(Weight::from_parts(43_675_486, 0).saturating_mul(p.into())) + // Standard Error: 33_954 + .saturating_add(Weight::from_parts(41_133_934, 0).saturating_mul(p.into())) .saturating_add(T::DbWeight::get().reads(4)) .saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(p.into()))) .saturating_add(T::DbWeight::get().writes(4)) diff --git a/runtime/trappist/src/weights/pallet_uniques.rs b/runtime/trappist/src/weights/pallet_uniques.rs index 0fa11010..1965c39a 100644 --- a/runtime/trappist/src/weights/pallet_uniques.rs +++ b/runtime/trappist/src/weights/pallet_uniques.rs @@ -58,8 +58,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `179` // Estimated: `3643` - // Minimum execution time: 29_353_000 picoseconds. - Weight::from_parts(30_056_000, 0) + // Minimum execution time: 28_737_000 picoseconds. + Weight::from_parts(29_780_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -72,8 +72,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3643` - // Minimum execution time: 15_060_000 picoseconds. - Weight::from_parts(15_569_000, 0) + // Minimum execution time: 14_485_000 picoseconds. + Weight::from_parts(15_163_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -101,15 +101,15 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `327 + a * (107 ±0) + m * (56 ±0) + n * (76 ±0)` // Estimated: `3643 + a * (2839 ±0) + m * (2583 ±0) + n * (2597 ±0)` - // Minimum execution time: 2_935_347_000 picoseconds. - Weight::from_parts(3_006_152_000, 0) + // Minimum execution time: 2_895_663_000 picoseconds. + Weight::from_parts(2_952_675_000, 0) .saturating_add(Weight::from_parts(0, 3643)) - // Standard Error: 36_419 - .saturating_add(Weight::from_parts(7_448_090, 0).saturating_mul(n.into())) - // Standard Error: 36_419 - .saturating_add(Weight::from_parts(418_973, 0).saturating_mul(m.into())) - // Standard Error: 36_419 - .saturating_add(Weight::from_parts(527_328, 0).saturating_mul(a.into())) + // Standard Error: 33_410 + .saturating_add(Weight::from_parts(7_163_776, 0).saturating_mul(n.into())) + // Standard Error: 33_410 + .saturating_add(Weight::from_parts(270_297, 0).saturating_mul(m.into())) + // Standard Error: 33_410 + .saturating_add(Weight::from_parts(778_358, 0).saturating_mul(a.into())) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into()))) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(m.into()))) @@ -134,8 +134,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 34_903_000 picoseconds. - Weight::from_parts(35_743_000, 0) + // Minimum execution time: 34_144_000 picoseconds. + Weight::from_parts(34_981_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(3)) @@ -152,8 +152,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `462` // Estimated: `3643` - // Minimum execution time: 36_679_000 picoseconds. - Weight::from_parts(37_722_000, 0) + // Minimum execution time: 36_001_000 picoseconds. + Weight::from_parts(36_577_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(4)) @@ -170,8 +170,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `462` // Estimated: `3643` - // Minimum execution time: 26_213_000 picoseconds. - Weight::from_parts(26_885_000, 0) + // Minimum execution time: 25_932_000 picoseconds. + Weight::from_parts(26_394_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(4)) @@ -185,11 +185,11 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `772 + i * (76 ±0)` // Estimated: `3643 + i * (2597 ±0)` - // Minimum execution time: 14_082_000 picoseconds. - Weight::from_parts(14_406_000, 0) + // Minimum execution time: 13_534_000 picoseconds. + Weight::from_parts(13_874_000, 0) .saturating_add(Weight::from_parts(0, 3643)) - // Standard Error: 20_171 - .saturating_add(Weight::from_parts(17_895_576, 0).saturating_mul(i.into())) + // Standard Error: 22_861 + .saturating_add(Weight::from_parts(17_387_612, 0).saturating_mul(i.into())) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(i.into()))) .saturating_add(T::DbWeight::get().writes(1)) @@ -204,8 +204,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `462` // Estimated: `3643` - // Minimum execution time: 18_217_000 picoseconds. - Weight::from_parts(18_887_000, 0) + // Minimum execution time: 17_640_000 picoseconds. + Weight::from_parts(18_183_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -218,8 +218,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `462` // Estimated: `3643` - // Minimum execution time: 17_985_000 picoseconds. - Weight::from_parts(18_483_000, 0) + // Minimum execution time: 17_464_000 picoseconds. + Weight::from_parts(18_246_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -230,8 +230,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 13_053_000 picoseconds. - Weight::from_parts(13_691_000, 0) + // Minimum execution time: 13_064_000 picoseconds. + Weight::from_parts(13_367_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -242,8 +242,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 13_232_000 picoseconds. - Weight::from_parts(13_607_000, 0) + // Minimum execution time: 12_711_000 picoseconds. + Weight::from_parts(13_323_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -258,8 +258,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `390` // Estimated: `3643` - // Minimum execution time: 21_208_000 picoseconds. - Weight::from_parts(21_829_000, 0) + // Minimum execution time: 20_861_000 picoseconds. + Weight::from_parts(21_489_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(4)) @@ -270,8 +270,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 13_346_000 picoseconds. - Weight::from_parts(13_801_000, 0) + // Minimum execution time: 12_984_000 picoseconds. + Weight::from_parts(13_469_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -284,8 +284,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 16_861_000 picoseconds. - Weight::from_parts(17_309_000, 0) + // Minimum execution time: 15_838_000 picoseconds. + Weight::from_parts(16_575_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(2)) @@ -300,8 +300,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `514` // Estimated: `3829` - // Minimum execution time: 38_677_000 picoseconds. - Weight::from_parts(40_351_000, 0) + // Minimum execution time: 38_033_000 picoseconds. + Weight::from_parts(39_007_000, 0) .saturating_add(Weight::from_parts(0, 3829)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) @@ -316,8 +316,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `903` // Estimated: `3829` - // Minimum execution time: 38_179_000 picoseconds. - Weight::from_parts(38_947_000, 0) + // Minimum execution time: 36_840_000 picoseconds. + Weight::from_parts(38_010_000, 0) .saturating_add(Weight::from_parts(0, 3829)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(2)) @@ -330,8 +330,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `382` // Estimated: `3643` - // Minimum execution time: 29_523_000 picoseconds. - Weight::from_parts(29_793_000, 0) + // Minimum execution time: 28_589_000 picoseconds. + Weight::from_parts(29_273_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -344,8 +344,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `514` // Estimated: `3643` - // Minimum execution time: 30_325_000 picoseconds. - Weight::from_parts(31_101_000, 0) + // Minimum execution time: 29_704_000 picoseconds. + Weight::from_parts(30_364_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -358,8 +358,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 30_166_000 picoseconds. - Weight::from_parts(30_674_000, 0) + // Minimum execution time: 29_396_000 picoseconds. + Weight::from_parts(30_076_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) @@ -372,8 +372,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `428` // Estimated: `3643` - // Minimum execution time: 29_847_000 picoseconds. - Weight::from_parts(30_538_000, 0) + // Minimum execution time: 28_774_000 picoseconds. + Weight::from_parts(29_431_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -386,8 +386,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `462` // Estimated: `3643` - // Minimum execution time: 18_771_000 picoseconds. - Weight::from_parts(19_375_000, 0) + // Minimum execution time: 18_635_000 picoseconds. + Weight::from_parts(19_373_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -400,8 +400,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `495` // Estimated: `3643` - // Minimum execution time: 18_623_000 picoseconds. - Weight::from_parts(19_141_000, 0) + // Minimum execution time: 18_206_000 picoseconds. + Weight::from_parts(18_899_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -412,8 +412,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `76` // Estimated: `3517` - // Minimum execution time: 14_816_000 picoseconds. - Weight::from_parts(15_181_000, 0) + // Minimum execution time: 14_310_000 picoseconds. + Weight::from_parts(14_878_000, 0) .saturating_add(Weight::from_parts(0, 3517)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -426,8 +426,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `316` // Estimated: `3643` - // Minimum execution time: 15_857_000 picoseconds. - Weight::from_parts(16_273_000, 0) + // Minimum execution time: 15_338_000 picoseconds. + Weight::from_parts(15_958_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(1)) @@ -440,8 +440,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `293` // Estimated: `3587` - // Minimum execution time: 15_632_000 picoseconds. - Weight::from_parts(16_016_000, 0) + // Minimum execution time: 15_300_000 picoseconds. + Weight::from_parts(15_726_000, 0) .saturating_add(Weight::from_parts(0, 3587)) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) @@ -458,8 +458,8 @@ impl pallet_uniques::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `574` // Estimated: `3643` - // Minimum execution time: 35_142_000 picoseconds. - Weight::from_parts(36_077_000, 0) + // Minimum execution time: 34_510_000 picoseconds. + Weight::from_parts(35_792_000, 0) .saturating_add(Weight::from_parts(0, 3643)) .saturating_add(T::DbWeight::get().reads(3)) .saturating_add(T::DbWeight::get().writes(4)) diff --git a/runtime/trappist/src/weights/pallet_utility.rs b/runtime/trappist/src/weights/pallet_utility.rs index 00c40230..328d89f7 100644 --- a/runtime/trappist/src/weights/pallet_utility.rs +++ b/runtime/trappist/src/weights/pallet_utility.rs @@ -57,11 +57,11 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 7_169_000 picoseconds. - Weight::from_parts(7_327_000, 0) + // Minimum execution time: 6_933_000 picoseconds. + Weight::from_parts(7_958_702, 0) .saturating_add(Weight::from_parts(0, 1486)) - // Standard Error: 2_252 - .saturating_add(Weight::from_parts(7_026_003, 0).saturating_mul(c.into())) + // Standard Error: 5_065 + .saturating_add(Weight::from_parts(6_397_055, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(1)) } /// Storage: `LockdownMode::LockdownModeStatus` (r:1 w:0) @@ -70,8 +70,8 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 9_334_000 picoseconds. - Weight::from_parts(9_624_000, 0) + // Minimum execution time: 8_866_000 picoseconds. + Weight::from_parts(9_208_000, 0) .saturating_add(Weight::from_parts(0, 1486)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -82,19 +82,19 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 7_216_000 picoseconds. - Weight::from_parts(9_153_457, 0) + // Minimum execution time: 6_575_000 picoseconds. + Weight::from_parts(22_573_315, 0) .saturating_add(Weight::from_parts(0, 1486)) - // Standard Error: 3_630 - .saturating_add(Weight::from_parts(7_326_631, 0).saturating_mul(c.into())) + // Standard Error: 5_415 + .saturating_add(Weight::from_parts(6_635_620, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(1)) } fn dispatch_as() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 9_376_000 picoseconds. - Weight::from_parts(9_795_000, 0) + // Minimum execution time: 8_573_000 picoseconds. + Weight::from_parts(8_989_000, 0) .saturating_add(Weight::from_parts(0, 0)) } /// Storage: `LockdownMode::LockdownModeStatus` (r:1 w:0) @@ -104,11 +104,11 @@ impl pallet_utility::WeightInfo for WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 7_185_000 picoseconds. - Weight::from_parts(10_318_186, 0) + // Minimum execution time: 6_703_000 picoseconds. + Weight::from_parts(20_201_279, 0) .saturating_add(Weight::from_parts(0, 1486)) - // Standard Error: 3_481 - .saturating_add(Weight::from_parts(7_029_779, 0).saturating_mul(c.into())) + // Standard Error: 4_655 + .saturating_add(Weight::from_parts(6_389_825, 0).saturating_mul(c.into())) .saturating_add(T::DbWeight::get().reads(1)) } } diff --git a/runtime/trappist/src/weights/pallet_withdraw_teleport.rs b/runtime/trappist/src/weights/pallet_withdraw_teleport.rs index ddec85a7..0d97b7e2 100644 --- a/runtime/trappist/src/weights/pallet_withdraw_teleport.rs +++ b/runtime/trappist/src/weights/pallet_withdraw_teleport.rs @@ -64,11 +64,11 @@ impl pallet_withdraw_teleport::WeightInfo for WeightInf /// Proof: `ParachainSystem::PendingUpwardMessages` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn withdraw_and_teleport() -> Weight { // Proof Size summary in bytes: - // Measured: `177` - // Estimated: `3642` - // Minimum execution time: 94_878_000 picoseconds. - Weight::from_parts(97_451_000, 0) - .saturating_add(Weight::from_parts(0, 3642)) + // Measured: `211` + // Estimated: `3676` + // Minimum execution time: 91_216_000 picoseconds. + Weight::from_parts(93_677_000, 0) + .saturating_add(Weight::from_parts(0, 3676)) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/runtime/trappist/src/weights/trappist_runtime_benchmarks.rs b/runtime/trappist/src/weights/trappist_runtime_benchmarks.rs index 632cdcb7..f855245b 100644 --- a/runtime/trappist/src/weights/trappist_runtime_benchmarks.rs +++ b/runtime/trappist/src/weights/trappist_runtime_benchmarks.rs @@ -58,8 +58,8 @@ impl trappist_runtime_benchmarks::WeightInfo for Weight // Proof Size summary in bytes: // Measured: `131` // Estimated: `4087` - // Minimum execution time: 8_638_000 picoseconds. - Weight::from_parts(8_888_000, 0) + // Minimum execution time: 8_659_000 picoseconds. + Weight::from_parts(8_947_000, 0) .saturating_add(Weight::from_parts(0, 4087)) .saturating_add(T::DbWeight::get().reads(2)) } @@ -69,8 +69,8 @@ impl trappist_runtime_benchmarks::WeightInfo for Weight // Proof Size summary in bytes: // Measured: `42` // Estimated: `4087` - // Minimum execution time: 4_652_000 picoseconds. - Weight::from_parts(4_925_000, 0) + // Minimum execution time: 4_500_000 picoseconds. + Weight::from_parts(4_670_000, 0) .saturating_add(Weight::from_parts(0, 4087)) .saturating_add(T::DbWeight::get().reads(1)) } @@ -78,8 +78,8 @@ impl trappist_runtime_benchmarks::WeightInfo for Weight // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 1_230_000 picoseconds. - Weight::from_parts(1_272_000, 0) + // Minimum execution time: 1_084_000 picoseconds. + Weight::from_parts(1_135_000, 0) .saturating_add(Weight::from_parts(0, 0)) } } diff --git a/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_fungible.rs b/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_fungible.rs index 62c896ad..11200e16 100644 --- a/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_fungible.rs +++ b/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_fungible.rs @@ -57,8 +57,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `101` // Estimated: `3593` - // Minimum execution time: 27_262_000 picoseconds. - Weight::from_parts(27_954_000, 3593) + // Minimum execution time: 27_056_000 picoseconds. + Weight::from_parts(27_738_000, 3593) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -68,8 +68,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `101` // Estimated: `6196` - // Minimum execution time: 52_058_000 picoseconds. - Weight::from_parts(52_923_000, 6196) + // Minimum execution time: 52_863_000 picoseconds. + Weight::from_parts(53_628_000, 6196) .saturating_add(T::DbWeight::get().reads(2)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -89,10 +89,10 @@ impl WeightInfo { /// Proof: `ParachainSystem::PendingUpwardMessages` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) pub(crate) fn transfer_reserve_asset() -> Weight { // Proof Size summary in bytes: - // Measured: `278` + // Measured: `312` // Estimated: `6196` - // Minimum execution time: 75_544_000 picoseconds. - Weight::from_parts(76_797_000, 6196) + // Minimum execution time: 76_076_000 picoseconds. + Weight::from_parts(77_664_000, 6196) .saturating_add(T::DbWeight::get().reads(8)) .saturating_add(T::DbWeight::get().writes(4)) } @@ -102,8 +102,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `42` // Estimated: `4087` - // Minimum execution time: 7_785_000 picoseconds. - Weight::from_parts(8_034_000, 4087) + // Minimum execution time: 7_345_000 picoseconds. + Weight::from_parts(7_824_000, 4087) .saturating_add(T::DbWeight::get().reads(1)) } /// Storage: `System::Account` (r:1 w:1) @@ -112,8 +112,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `3593` - // Minimum execution time: 26_642_000 picoseconds. - Weight::from_parts(27_428_000, 3593) + // Minimum execution time: 26_430_000 picoseconds. + Weight::from_parts(27_266_000, 3593) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -133,10 +133,10 @@ impl WeightInfo { /// Proof: `ParachainSystem::PendingUpwardMessages` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) pub(crate) fn deposit_reserve_asset() -> Weight { // Proof Size summary in bytes: - // Measured: `177` - // Estimated: `3642` - // Minimum execution time: 53_890_000 picoseconds. - Weight::from_parts(55_225_000, 3642) + // Measured: `211` + // Estimated: `3676` + // Minimum execution time: 53_058_000 picoseconds. + Weight::from_parts(54_507_000, 3676) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -156,10 +156,10 @@ impl WeightInfo { /// Proof: `ParachainSystem::PendingUpwardMessages` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) pub(crate) fn initiate_teleport() -> Weight { // Proof Size summary in bytes: - // Measured: `219` + // Measured: `253` // Estimated: `4087` - // Minimum execution time: 36_038_000 picoseconds. - Weight::from_parts(37_199_000, 4087) + // Minimum execution time: 35_273_000 picoseconds. + Weight::from_parts(36_357_000, 4087) .saturating_add(T::DbWeight::get().reads(7)) .saturating_add(T::DbWeight::get().writes(2)) } diff --git a/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_generic.rs b/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_generic.rs index d81ee06b..68e6aa07 100644 --- a/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_generic.rs +++ b/runtime/trappist/src/weights/xcm/pallet_xcm_benchmarks_generic.rs @@ -65,10 +65,10 @@ impl WeightInfo { /// Proof: `ParachainSystem::PendingUpwardMessages` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) pub(crate) fn report_holding() -> Weight { // Proof Size summary in bytes: - // Measured: `177` - // Estimated: `3642` - // Minimum execution time: 429_107_000 picoseconds. - Weight::from_parts(432_486_000, 3642) + // Measured: `211` + // Estimated: `3676` + // Minimum execution time: 368_464_000 picoseconds. + Weight::from_parts(402_215_000, 3676) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -76,17 +76,17 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_240_000 picoseconds. - Weight::from_parts(4_413_000, 0) + // Minimum execution time: 3_790_000 picoseconds. + Weight::from_parts(4_159_000, 0) } /// Storage: `PolkadotXcm::Queries` (r:1 w:0) /// Proof: `PolkadotXcm::Queries` (`max_values`: None, `max_size`: None, mode: `Measured`) pub(crate) fn query_response() -> Weight { // Proof Size summary in bytes: - // Measured: `69` - // Estimated: `3534` - // Minimum execution time: 12_562_000 picoseconds. - Weight::from_parts(12_993_000, 3534) + // Measured: `103` + // Estimated: `3568` + // Minimum execution time: 12_018_000 picoseconds. + Weight::from_parts(12_534_000, 3568) .saturating_add(T::DbWeight::get().reads(1)) } /// Storage: `LockdownMode::LockdownModeStatus` (r:1 w:0) @@ -95,51 +95,51 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `100` // Estimated: `1486` - // Minimum execution time: 17_325_000 picoseconds. - Weight::from_parts(18_049_000, 1486) + // Minimum execution time: 16_427_000 picoseconds. + Weight::from_parts(16_991_000, 1486) .saturating_add(T::DbWeight::get().reads(1)) } pub(crate) fn refund_surplus() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_256_000 picoseconds. - Weight::from_parts(4_512_000, 0) + // Minimum execution time: 4_042_000 picoseconds. + Weight::from_parts(4_350_000, 0) } pub(crate) fn set_error_handler() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_756_000 picoseconds. - Weight::from_parts(2_966_000, 0) + // Minimum execution time: 2_598_000 picoseconds. + Weight::from_parts(2_783_000, 0) } pub(crate) fn set_appendix() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_789_000 picoseconds. - Weight::from_parts(2_952_000, 0) + // Minimum execution time: 2_590_000 picoseconds. + Weight::from_parts(2_774_000, 0) } pub(crate) fn clear_error() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_744_000 picoseconds. - Weight::from_parts(2_960_000, 0) + // Minimum execution time: 2_604_000 picoseconds. + Weight::from_parts(2_736_000, 0) } pub(crate) fn descend_origin() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 3_649_000 picoseconds. - Weight::from_parts(3_875_000, 0) + // Minimum execution time: 3_284_000 picoseconds. + Weight::from_parts(3_505_000, 0) } pub(crate) fn clear_origin() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_792_000 picoseconds. - Weight::from_parts(2_947_000, 0) + // Minimum execution time: 2_626_000 picoseconds. + Weight::from_parts(2_775_000, 0) } /// Storage: `ParachainInfo::ParachainId` (r:1 w:0) /// Proof: `ParachainInfo::ParachainId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) @@ -155,10 +155,10 @@ impl WeightInfo { /// Proof: `ParachainSystem::PendingUpwardMessages` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) pub(crate) fn report_error() -> Weight { // Proof Size summary in bytes: - // Measured: `177` - // Estimated: `3642` - // Minimum execution time: 27_866_000 picoseconds. - Weight::from_parts(28_766_000, 3642) + // Measured: `211` + // Estimated: `3676` + // Minimum execution time: 26_598_000 picoseconds. + Weight::from_parts(27_500_000, 3676) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -166,10 +166,10 @@ impl WeightInfo { /// Proof: `PolkadotXcm::AssetTraps` (`max_values`: None, `max_size`: None, mode: `Measured`) pub(crate) fn claim_asset() -> Weight { // Proof Size summary in bytes: - // Measured: `126` - // Estimated: `3591` - // Minimum execution time: 16_874_000 picoseconds. - Weight::from_parts(17_290_000, 3591) + // Measured: `160` + // Estimated: `3625` + // Minimum execution time: 16_175_000 picoseconds. + Weight::from_parts(16_444_000, 3625) .saturating_add(T::DbWeight::get().reads(1)) .saturating_add(T::DbWeight::get().writes(1)) } @@ -177,8 +177,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_798_000 picoseconds. - Weight::from_parts(2_970_000, 0) + // Minimum execution time: 2_612_000 picoseconds. + Weight::from_parts(2_737_000, 0) } /// Storage: `PolkadotXcm::VersionNotifyTargets` (r:1 w:1) /// Proof: `PolkadotXcm::VersionNotifyTargets` (`max_values`: None, `max_size`: None, mode: `Measured`) @@ -194,10 +194,10 @@ impl WeightInfo { /// Proof: `ParachainSystem::PendingUpwardMessages` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) pub(crate) fn subscribe_version() -> Weight { // Proof Size summary in bytes: - // Measured: `145` - // Estimated: `3610` - // Minimum execution time: 29_417_000 picoseconds. - Weight::from_parts(29_937_000, 3610) + // Measured: `179` + // Estimated: `3644` + // Minimum execution time: 28_430_000 picoseconds. + Weight::from_parts(29_173_000, 3644) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(3)) } @@ -207,8 +207,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 4_660_000 picoseconds. - Weight::from_parts(4_789_000, 0) + // Minimum execution time: 4_471_000 picoseconds. + Weight::from_parts(4_698_000, 0) .saturating_add(T::DbWeight::get().writes(1)) } /// Storage: `ParachainInfo::ParachainId` (r:1 w:0) @@ -225,10 +225,10 @@ impl WeightInfo { /// Proof: `ParachainSystem::PendingUpwardMessages` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) pub(crate) fn initiate_reserve_withdraw() -> Weight { // Proof Size summary in bytes: - // Measured: `177` - // Estimated: `3642` - // Minimum execution time: 472_248_000 picoseconds. - Weight::from_parts(482_888_000, 3642) + // Measured: `211` + // Estimated: `3676` + // Minimum execution time: 436_186_000 picoseconds. + Weight::from_parts(451_920_000, 3676) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -236,36 +236,36 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 134_643_000 picoseconds. - Weight::from_parts(138_191_000, 0) + // Minimum execution time: 129_703_000 picoseconds. + Weight::from_parts(132_191_000, 0) } pub(crate) fn expect_asset() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 13_144_000 picoseconds. - Weight::from_parts(13_282_000, 0) + // Minimum execution time: 11_968_000 picoseconds. + Weight::from_parts(12_228_000, 0) } pub(crate) fn expect_origin() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_985_000 picoseconds. - Weight::from_parts(3_130_000, 0) + // Minimum execution time: 2_666_000 picoseconds. + Weight::from_parts(2_860_000, 0) } pub(crate) fn expect_error() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_821_000 picoseconds. - Weight::from_parts(2_932_000, 0) + // Minimum execution time: 2_634_000 picoseconds. + Weight::from_parts(2_765_000, 0) } pub(crate) fn expect_transact_status() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_968_000 picoseconds. - Weight::from_parts(3_176_000, 0) + // Minimum execution time: 2_871_000 picoseconds. + Weight::from_parts(2_987_000, 0) } /// Storage: `ParachainInfo::ParachainId` (r:1 w:0) /// Proof: `ParachainInfo::ParachainId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) @@ -281,10 +281,10 @@ impl WeightInfo { /// Proof: `ParachainSystem::PendingUpwardMessages` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) pub(crate) fn query_pallet() -> Weight { // Proof Size summary in bytes: - // Measured: `177` - // Estimated: `3642` - // Minimum execution time: 33_687_000 picoseconds. - Weight::from_parts(34_426_000, 3642) + // Measured: `211` + // Estimated: `3676` + // Minimum execution time: 31_693_000 picoseconds. + Weight::from_parts(32_439_000, 3676) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -292,8 +292,8 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 6_569_000 picoseconds. - Weight::from_parts(6_710_000, 0) + // Minimum execution time: 6_251_000 picoseconds. + Weight::from_parts(6_427_000, 0) } /// Storage: `ParachainInfo::ParachainId` (r:1 w:0) /// Proof: `ParachainInfo::ParachainId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) @@ -309,10 +309,10 @@ impl WeightInfo { /// Proof: `ParachainSystem::PendingUpwardMessages` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) pub(crate) fn report_transact_status() -> Weight { // Proof Size summary in bytes: - // Measured: `177` - // Estimated: `3642` - // Minimum execution time: 28_217_000 picoseconds. - Weight::from_parts(28_760_000, 3642) + // Measured: `211` + // Estimated: `3676` + // Minimum execution time: 26_804_000 picoseconds. + Weight::from_parts(27_437_000, 3676) .saturating_add(T::DbWeight::get().reads(6)) .saturating_add(T::DbWeight::get().writes(2)) } @@ -320,35 +320,35 @@ impl WeightInfo { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_902_000 picoseconds. - Weight::from_parts(3_008_000, 0) + // Minimum execution time: 2_668_000 picoseconds. + Weight::from_parts(2_801_000, 0) } pub(crate) fn set_topic() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_815_000 picoseconds. - Weight::from_parts(2_957_000, 0) + // Minimum execution time: 2_588_000 picoseconds. + Weight::from_parts(2_751_000, 0) } pub(crate) fn clear_topic() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_780_000 picoseconds. - Weight::from_parts(2_938_000, 0) + // Minimum execution time: 2_569_000 picoseconds. + Weight::from_parts(2_726_000, 0) } pub(crate) fn set_fees_mode() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_728_000 picoseconds. - Weight::from_parts(2_927_000, 0) + // Minimum execution time: 2_611_000 picoseconds. + Weight::from_parts(2_769_000, 0) } pub(crate) fn unpaid_execution() -> Weight { // Proof Size summary in bytes: // Measured: `0` // Estimated: `0` - // Minimum execution time: 2_912_000 picoseconds. - Weight::from_parts(3_053_000, 0) + // Minimum execution time: 2_735_000 picoseconds. + Weight::from_parts(2_838_000, 0) } }