From ecc4b427685278eded682e55058e6ace153c05b5 Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Wed, 27 Dec 2023 13:54:05 +0100 Subject: [PATCH 01/13] fix: migration for storage versions alignment --- Cargo.lock | 4 +- Cargo.toml | 3 + devops/parachain-launch/config.yml | 58 +++++++-------- pallets/bootstrap/src/lib.rs | 11 --- runtime/common/src/migration.rs | 110 +++++++++++++++++++++++++---- runtime/mangata-kusama/src/lib.rs | 6 +- runtime/mangata-rococo/src/lib.rs | 5 +- 7 files changed, 132 insertions(+), 65 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5b94557a34..e3414e475a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3457,7 +3457,7 @@ dependencies = [ [[package]] name = "fflonk" version = "0.1.0" -source = "git+https://github.com/w3f/fflonk#1beb0585e1c8488956fac7f05da061f9b41e8948" +source = "git+https://github.com/w3f/fflonk#1e854f35e9a65d08b11a86291405cdc95baa0a35" dependencies = [ "ark-ec", "ark-ff", @@ -7232,7 +7232,7 @@ dependencies = [ [[package]] name = "pallet-crowdloan-rewards" version = "0.6.0" -source = "git+https://github.com/mangata-finance/crowdloan-rewards?branch=develop#a6df9b9a431d2094821c9df0c9d0dbbaad07926c" +source = "git+https://github.com/mangata-finance/crowdloan-rewards?branch=develop#35b019518304088eebe1ff72e92130347612fb08" dependencies = [ "ed25519-dalek 1.0.1", "frame-benchmarking", diff --git a/Cargo.toml b/Cargo.toml index 527947f1ec..76bfbb3b25 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,6 +26,9 @@ members = [ 'runtime/integration-test', ] +# [patch."https://github.com/mangata-finance/crowdloan-rewards"] +# pallet-crowdloan-rewards = { git = "https://github.com/mangata-finance//crowdloan-rewards", branch = "feature/remove-migration" } + # `orml/develop` & `crowdloan/develop` points to versioned `polkadot-sdk/release-mangata-v*`, # but mangata-node uses `polkadot-sdk/develop` so we need to patch to use the same refs # patch generated by './scripts/dev_manifest.sh ../polkadot-sdk' & replaced local path with `develop` branch on polkadot-sdk diff --git a/devops/parachain-launch/config.yml b/devops/parachain-launch/config.yml index 28bb4d80b9..f88f36d138 100644 --- a/devops/parachain-launch/config.yml +++ b/devops/parachain-launch/config.yml @@ -7,7 +7,7 @@ relaychain: validation_upgrade_cooldown: 10 validation_upgrade_delay: 10 env: - RUST_LOG: parachain::candidate-backing=trace,parachain::candidate-selection=trace,parachain::pvf=trace,parachain::collator-protocol=trace,parachain::provisioner=trace + RUST_LOG: info flags: - --rpc-methods=unsafe - --wasm-execution=compiled @@ -17,31 +17,31 @@ relaychain: - name: bob parachains: -- image: mangatasolutions/mangata-node:dev - chain: - base: mangata-rococo-local - collators: - - alice - - bob - sudo: alice - skipCollatorSelection: true - skipBalances: true - id: 2110 - parachain: true - flags: - - --rpc-methods=unsafe - - --force-authoring - - --wasm-execution=compiled - - --execution=wasm - relaychainFlags: - - --wasm-execution=compiled - - --execution=wasm - env: - # RUST_LOG: info,block_builder=trace,block_shuffler=trace,runtime::ver=trace,txpool=trace,rpc::nonce=trace - RUST_LOG: info,block_builder=trace - volumePath: /mangata/data - nodes: - - flags: - - --alice - - flags: - - --bob + - image: mangatasolutions/mangata-node:rc-0.32.0 + chain: + base: mangata-rococo-local + collators: + - alice + - bob + sudo: alice + skipCollatorSelection: true + skipBalances: true + id: 2110 + parachain: true + flags: + - --rpc-methods=unsafe + - --force-authoring + - --wasm-execution=compiled + - --execution=wasm + relaychainFlags: + - --wasm-execution=compiled + - --execution=wasm + env: + # RUST_LOG: info,block_builder=trace,block_shuffler=trace,runtime::ver=trace,txpool=trace,rpc::nonce=trace + RUST_LOG: info,block_builder=trace + volumePath: /mangata/data + nodes: + - flags: + - --alice + - flags: + - --bob diff --git a/pallets/bootstrap/src/lib.rs b/pallets/bootstrap/src/lib.rs index 2cf9f675e7..d45ab8d45e 100644 --- a/pallets/bootstrap/src/lib.rs +++ b/pallets/bootstrap/src/lib.rs @@ -270,17 +270,6 @@ pub mod pallet { T::DbWeight::get().reads(2) } } - - fn on_runtime_upgrade() -> Weight { - let onchain = Pallet::::on_chain_storage_version(); - if onchain == 0 { - STORAGE_VERSION.put::>(); - T::DbWeight::get().reads_writes(1, 1) - } else { - log!(warn, "skipping version upgrade, remove migration"); - T::DbWeight::get().reads(1) - } - } } #[cfg(feature = "runtime-benchmarks")] diff --git a/runtime/common/src/migration.rs b/runtime/common/src/migration.rs index 07c2810d1d..dc086e710a 100644 --- a/runtime/common/src/migration.rs +++ b/runtime/common/src/migration.rs @@ -7,30 +7,112 @@ use log::info; use mangata_types::assets::CustomMetadata; use sp_std::marker::PhantomData; -pub struct AssetRegistryMigration(PhantomData); +pub struct PalletsVersionsAlignment(PhantomData); -impl OnRuntimeUpgrade for AssetRegistryMigration +impl OnRuntimeUpgrade for PalletsVersionsAlignment where - T: orml_asset_registry::Config< - CustomMetadata = CustomMetadata, - AssetId = TokenId, - Balance = Balance, - StringLimit = StringLimit, - > + orml_tokens::Config, + T: orml_asset_registry::Config, + T: orml_tokens::Config, + T: pallet_maintenance::Config, + T: orml_unknown_tokens::Config, + T: pallet_xcm::Config, + T: pallet_bootstrap::Config, + T: pallet_crowdloan_rewards::Config, + T: pallet_fee_lock::Config, { fn on_runtime_upgrade() -> Weight { info!( - target: "asset_registry", + target: "migration::versions-alignment", "on_runtime_upgrade: Attempted to apply AssetRegistry migration" ); - let version = orml_asset_registry::Pallet::::on_chain_storage_version(); - if version == 2 { + let mut reads = 0; + let mut writes = 0; + + // Maintanance -> 0 + // currently set to null that defaults to 0 + StorageVersion::new(0).put::>(); + writes += 1; + + // AssetRegistry -> 2 + if orml_asset_registry::Pallet::::on_chain_storage_version() == 2 { info!(target: "asset-registry", "No migration applied, remove"); - T::DbWeight::get().reads(1) + reads += 1; } else { StorageVersion::new(2).put::>(); - T::DbWeight::get().reads_writes(1, 1) - } + reads += 1; + writes += 1; + }; + + //UnknwonTokens -> 2 + if orml_unknown_tokens::Pallet::::on_chain_storage_version() == 2 { + info!(target: "unknown-tokens", "No migration applied, remove"); + reads += 1; + } else { + StorageVersion::new(2).put::>(); + reads += 1; + writes += 1; + }; + + // PolkadotXcm -> 1 + if pallet_xcm::Pallet::::on_chain_storage_version() == 2 { + info!(target: "pallet_xcm", "No migration applied, remove"); + reads += 1; + } else { + StorageVersion::new(1).put::>(); + reads += 1; + writes += 1; + }; + + // Bootstrap -> 2 + if pallet_bootstrap::Pallet::::on_chain_storage_version() == 2 { + info!(target: "pallet_bootstrap", "No migration applied, remove"); + reads += 1; + } else { + StorageVersion::new(1).put::>(); + reads += 1; + writes += 1; + }; + + // Crowdloan -> 1 + if pallet_crowdloan_rewards::Pallet::::on_chain_storage_version() == 1 { + info!(target: "pallet_crowdloan_rewards", "No migration applied, remove"); + reads += 1; + } else { + StorageVersion::new(1).put::>(); + reads += 1; + writes += 1; + }; + + // FeeLock -> 0 + // currently set to null that defaults to 0 + StorageVersion::new(0).put::>(); + writes += 1; + + T::DbWeight::get().reads_writes(reads, writes) + } + + #[cfg(feature = "try-runtime")] + fn pre_upgrade() -> Result, TryRuntimeError> { + assert_eq!(orml_asset_registry::Pallet::::on_chain_storage_version(), 0); + assert_eq!(pallet_maintenance::Pallet::::on_chain_storage_version(), 0); + assert_eq!(orml_unknown_tokens::Pallet::::on_chain_storage_version(), 0); + assert_eq!(pallet_xcm::Pallet::::on_chain_storage_version(), 0); + assert_eq!(pallet_bootstrap::Pallet::::on_chain_storage_version(), 0); + assert_eq!(pallet_crowdloan_rewards::Pallet::::on_chain_storage_version(), 0); + assert_eq!(pallet_fee_lock::Pallet::::on_chain_storage_version(), 0); + Ok(Vec::new()) + } + + #[cfg(feature = "try-runtime")] + fn post_upgrade(_state: Vec) -> Result<(), TryRuntimeError> { + assert_eq!(orml_asset_registry::Pallet::::on_chain_storage_version(), 2); + assert_eq!(pallet_maintenance::Pallet::::on_chain_storage_version(), 0); + assert_eq!(orml_unknown_tokens::Pallet::::on_chain_storage_version(), 2); + assert_eq!(pallet_xcm::Pallet::::on_chain_storage_version(), 1); + assert_eq!(pallet_bootstrap::Pallet::::on_chain_storage_version(), 2); + assert_eq!(pallet_crowdloan_rewards::Pallet::::on_chain_storage_version(), 1); + assert_eq!(pallet_fee_lock::Pallet::::on_chain_storage_version(), 0); + Ok(()) } } diff --git a/runtime/mangata-kusama/src/lib.rs b/runtime/mangata-kusama/src/lib.rs index e93b993b49..4b5b031b4f 100644 --- a/runtime/mangata-kusama/src/lib.rs +++ b/runtime/mangata-kusama/src/lib.rs @@ -80,11 +80,7 @@ pub type Executive = frame_executive::Executive< Migrations, >; -type Migrations = ( - common_runtime::migration::AssetRegistryMigration, - pallet_xcm::migration::v1::VersionUncheckedMigrateToV1, - orml_unknown_tokens::Migration, -); +type Migrations = (common_runtime::migration::PalletsVersionsAlignment,); /// Opaque types. These are used by the CLI to instantiate machinery that don't need to know /// the specifics of the runtime. They can then be made to be agnostic over specific formats diff --git a/runtime/mangata-rococo/src/lib.rs b/runtime/mangata-rococo/src/lib.rs index 1382c161f1..3d96ecd749 100644 --- a/runtime/mangata-rococo/src/lib.rs +++ b/runtime/mangata-rococo/src/lib.rs @@ -82,10 +82,7 @@ pub type Executive = frame_executive::Executive< Migrations, >; -type Migrations = ( - pallet_xcm::migration::v1::VersionUncheckedMigrateToV1, - orml_unknown_tokens::Migration, -); +type Migrations = (); /// Opaque types. These are used by the CLI to instantiate machinery that don't need to know /// the specifics of the runtime. They can then be made to be agnostic over specific formats From e32096094d7ffb5f1a9bf49a4e0b3d053ee3aa1a Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Wed, 27 Dec 2023 14:04:58 +0100 Subject: [PATCH 02/13] try-runtime post check for storage migration --- runtime/common/src/migration.rs | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/runtime/common/src/migration.rs b/runtime/common/src/migration.rs index dc086e710a..c109e2d59b 100644 --- a/runtime/common/src/migration.rs +++ b/runtime/common/src/migration.rs @@ -69,7 +69,7 @@ where info!(target: "pallet_bootstrap", "No migration applied, remove"); reads += 1; } else { - StorageVersion::new(1).put::>(); + StorageVersion::new(2).put::>(); reads += 1; writes += 1; }; @@ -93,19 +93,7 @@ where } #[cfg(feature = "try-runtime")] - fn pre_upgrade() -> Result, TryRuntimeError> { - assert_eq!(orml_asset_registry::Pallet::::on_chain_storage_version(), 0); - assert_eq!(pallet_maintenance::Pallet::::on_chain_storage_version(), 0); - assert_eq!(orml_unknown_tokens::Pallet::::on_chain_storage_version(), 0); - assert_eq!(pallet_xcm::Pallet::::on_chain_storage_version(), 0); - assert_eq!(pallet_bootstrap::Pallet::::on_chain_storage_version(), 0); - assert_eq!(pallet_crowdloan_rewards::Pallet::::on_chain_storage_version(), 0); - assert_eq!(pallet_fee_lock::Pallet::::on_chain_storage_version(), 0); - Ok(Vec::new()) - } - - #[cfg(feature = "try-runtime")] - fn post_upgrade(_state: Vec) -> Result<(), TryRuntimeError> { + fn post_upgrade(_state: sp_std::vec::Vec) -> Result<(), sp_runtime::TryRuntimeError> { assert_eq!(orml_asset_registry::Pallet::::on_chain_storage_version(), 2); assert_eq!(pallet_maintenance::Pallet::::on_chain_storage_version(), 0); assert_eq!(orml_unknown_tokens::Pallet::::on_chain_storage_version(), 2); From 9e1996c9871584affd4b6e67398a63f27fced511 Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Wed, 27 Dec 2023 15:13:43 +0100 Subject: [PATCH 03/13] add more logs --- runtime/common/src/migration.rs | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/runtime/common/src/migration.rs b/runtime/common/src/migration.rs index c109e2d59b..209692efbc 100644 --- a/runtime/common/src/migration.rs +++ b/runtime/common/src/migration.rs @@ -36,9 +36,10 @@ where // AssetRegistry -> 2 if orml_asset_registry::Pallet::::on_chain_storage_version() == 2 { - info!(target: "asset-registry", "No migration applied, remove"); + info!(target: "migration::asset-registry", "No migration applied, remove"); reads += 1; } else { + info!(target: "migration::asset-registry", "Migration applied"); StorageVersion::new(2).put::>(); reads += 1; writes += 1; @@ -46,19 +47,21 @@ where //UnknwonTokens -> 2 if orml_unknown_tokens::Pallet::::on_chain_storage_version() == 2 { - info!(target: "unknown-tokens", "No migration applied, remove"); + info!(target: "migration::unknown-tokens", "No migration applied, remove"); reads += 1; } else { + info!(target: "migration::unknown-tokens", "Migration applied"); StorageVersion::new(2).put::>(); reads += 1; writes += 1; }; // PolkadotXcm -> 1 - if pallet_xcm::Pallet::::on_chain_storage_version() == 2 { - info!(target: "pallet_xcm", "No migration applied, remove"); + if pallet_xcm::Pallet::::on_chain_storage_version() != 1 { + info!(target: "migration::pallet_xcm", "No migration applied, remove"); reads += 1; } else { + info!(target: "migration::pallet_xcm", "Migration applied"); StorageVersion::new(1).put::>(); reads += 1; writes += 1; @@ -66,9 +69,10 @@ where // Bootstrap -> 2 if pallet_bootstrap::Pallet::::on_chain_storage_version() == 2 { - info!(target: "pallet_bootstrap", "No migration applied, remove"); + info!(target: "migration::pallet_bootstrap", "No migration applied, remove"); reads += 1; } else { + info!(target: "migration::pallet_bootstrap", "Migration applied"); StorageVersion::new(2).put::>(); reads += 1; writes += 1; @@ -76,9 +80,10 @@ where // Crowdloan -> 1 if pallet_crowdloan_rewards::Pallet::::on_chain_storage_version() == 1 { - info!(target: "pallet_crowdloan_rewards", "No migration applied, remove"); + info!(target: "migration::pallet_crowdloan_rewards", "No migration applied, remove"); reads += 1; } else { + info!(target: "migration::pallet_crowdloan_rewards", "Migration applied"); StorageVersion::new(1).put::>(); reads += 1; writes += 1; From 58fa5ac41a4eeeaa6fdd1410be5e585613724d67 Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Wed, 27 Dec 2023 15:17:45 +0100 Subject: [PATCH 04/13] apply migrations for rococo --- devops/parachain-launch/config.yml | 10 +++++----- runtime/mangata-rococo/src/lib.rs | 2 +- scripts/build-image.sh | 26 +++++++++++++------------- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/devops/parachain-launch/config.yml b/devops/parachain-launch/config.yml index f88f36d138..39b917199b 100644 --- a/devops/parachain-launch/config.yml +++ b/devops/parachain-launch/config.yml @@ -1,6 +1,6 @@ relaychain: - image: --platform=linux/amd64 parity/polkadot:v1.1.0@sha256:cacf6f2f18f65d4d2ae4dd75b77ea655972d31e8f9c000bd393b70734c376d89 - chain: rococo-local + image: p1k1m4n/polkadot-fast-runtime:1.1.0-6 + chain: kusama-local runtimeGenesisConfig: configuration: config: @@ -17,9 +17,9 @@ relaychain: - name: bob parachains: - - image: mangatasolutions/mangata-node:rc-0.32.0 + - image: mangatasolutions/mangata-node:rc-0.32.1 chain: - base: mangata-rococo-local + base: mangata-kusama-local collators: - alice - bob @@ -38,7 +38,7 @@ parachains: - --execution=wasm env: # RUST_LOG: info,block_builder=trace,block_shuffler=trace,runtime::ver=trace,txpool=trace,rpc::nonce=trace - RUST_LOG: info,block_builder=trace + RUST_LOG: info,migration=debug volumePath: /mangata/data nodes: - flags: diff --git a/runtime/mangata-rococo/src/lib.rs b/runtime/mangata-rococo/src/lib.rs index 3d96ecd749..9c6bbc9072 100644 --- a/runtime/mangata-rococo/src/lib.rs +++ b/runtime/mangata-rococo/src/lib.rs @@ -82,7 +82,7 @@ pub type Executive = frame_executive::Executive< Migrations, >; -type Migrations = (); +type Migrations = (common_runtime::migration::PalletsVersionsAlignment,); /// Opaque types. These are used by the CLI to instantiate machinery that don't need to know /// the specifics of the runtime. They can then be made to be agnostic over specific formats diff --git a/scripts/build-image.sh b/scripts/build-image.sh index caa6a41d1d..08bec5c6fc 100755 --- a/scripts/build-image.sh +++ b/scripts/build-image.sh @@ -2,17 +2,17 @@ REPO_ROOT=$(readlink -f $(dirname $(dirname $(readlink -f $0)))) if [ -z "${SKIP_BUILD}" ]; then - ${REPO_ROOT}/docker-cargo.sh build --release --features=mangata-rococo,mangata-kusama + ${REPO_ROOT}/docker-cargo.sh build --release --features=mangata-rococo,mangata-kusama,fast-runtime else - echo "build skipped because SKIP_BUILD flag is set" + echo "build skipped because SKIP_BUILD flag is set" fi BUILD_DIR=${BUILD_DIR:-./docker-cargo/release} GIT_REV=$(git -C ${REPO_ROOT} rev-parse HEAD) if git -C ${REPO_ROOT} diff --quiet HEAD; then - DOCKER_LABEL=${GIT_REV} + DOCKER_LABEL=${GIT_REV} else - DOCKER_LABEL=${GIT_REV}-dirty + DOCKER_LABEL=${GIT_REV}-dirty fi DOCKER_IMAGE_TAG=${@:-mangatasolutions/mangata-node:dev} @@ -20,18 +20,18 @@ DOCKER_TAGS="" echo "building docker image ${DOCKER_IMAGE_TAG} with tags:" for tag in ${DOCKER_IMAGE_TAG}; do - echo \t - ${tag} - DOCKER_TAGS="${DOCKER_TAGS} -t ${tag}" + echo \t - ${tag} + DOCKER_TAGS="${DOCKER_TAGS} -t ${tag}" done if [ ! -e ${BUILD_DIR} ]; then - echo "env variable 'BUILD_DIR' : ${BUILD_DIR} not found" >&2 - exit 1 + echo "env variable 'BUILD_DIR' : ${BUILD_DIR} not found" >&2 + exit 1 fi docker build \ - --build-arg BUILD_DIR=${BUILD_DIR} \ - --label "git_rev=${DOCKER_LABEL}" \ - ${DOCKER_TAGS} \ - -f ${REPO_ROOT}/devops/dockerfiles/node/Dockerfile \ - ${REPO_ROOT} + --build-arg BUILD_DIR=${BUILD_DIR} \ + --label "git_rev=${DOCKER_LABEL}" \ + ${DOCKER_TAGS} \ + -f ${REPO_ROOT}/devops/dockerfiles/node/Dockerfile \ + ${REPO_ROOT} From 6d03d4d7362151457f14e5df7320290f6f8fc4c1 Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Thu, 28 Dec 2023 13:02:33 +0100 Subject: [PATCH 05/13] fix migration and verify storage version of xcmp & dmp queues --- runtime/common/src/migration.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/runtime/common/src/migration.rs b/runtime/common/src/migration.rs index 209692efbc..8b05ed895f 100644 --- a/runtime/common/src/migration.rs +++ b/runtime/common/src/migration.rs @@ -19,6 +19,8 @@ where T: pallet_bootstrap::Config, T: pallet_crowdloan_rewards::Config, T: pallet_fee_lock::Config, + T: cumulus_pallet_dmp_queue::Config, + T: cumulus_pallet_xcmp_queue::Config, { fn on_runtime_upgrade() -> Weight { info!( @@ -57,7 +59,7 @@ where }; // PolkadotXcm -> 1 - if pallet_xcm::Pallet::::on_chain_storage_version() != 1 { + if pallet_xcm::Pallet::::on_chain_storage_version() == 1 { info!(target: "migration::pallet_xcm", "No migration applied, remove"); reads += 1; } else { @@ -102,10 +104,12 @@ where assert_eq!(orml_asset_registry::Pallet::::on_chain_storage_version(), 2); assert_eq!(pallet_maintenance::Pallet::::on_chain_storage_version(), 0); assert_eq!(orml_unknown_tokens::Pallet::::on_chain_storage_version(), 2); - assert_eq!(pallet_xcm::Pallet::::on_chain_storage_version(), 1); assert_eq!(pallet_bootstrap::Pallet::::on_chain_storage_version(), 2); assert_eq!(pallet_crowdloan_rewards::Pallet::::on_chain_storage_version(), 1); assert_eq!(pallet_fee_lock::Pallet::::on_chain_storage_version(), 0); + assert_eq!(cumulus_pallet_dmp_queue::Pallet::::on_chain_storage_version(), 2); + assert_eq!(cumulus_pallet_xcmp_queue::Pallet::::on_chain_storage_version(), 3); + assert_eq!(pallet_xcm::Pallet::::on_chain_storage_version(), 1); Ok(()) } } From 0be59ad2e8fce1088ee7ef6a25bcb383cd8fb3c3 Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Thu, 28 Dec 2023 13:24:27 +0100 Subject: [PATCH 06/13] remove unrelated changes --- Cargo.toml | 3 -- devops/parachain-launch/config.yml | 62 +++++++++++++++--------------- scripts/build-image.sh | 26 ++++++------- 3 files changed, 44 insertions(+), 47 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 76bfbb3b25..527947f1ec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,9 +26,6 @@ members = [ 'runtime/integration-test', ] -# [patch."https://github.com/mangata-finance/crowdloan-rewards"] -# pallet-crowdloan-rewards = { git = "https://github.com/mangata-finance//crowdloan-rewards", branch = "feature/remove-migration" } - # `orml/develop` & `crowdloan/develop` points to versioned `polkadot-sdk/release-mangata-v*`, # but mangata-node uses `polkadot-sdk/develop` so we need to patch to use the same refs # patch generated by './scripts/dev_manifest.sh ../polkadot-sdk' & replaced local path with `develop` branch on polkadot-sdk diff --git a/devops/parachain-launch/config.yml b/devops/parachain-launch/config.yml index 39b917199b..28bb4d80b9 100644 --- a/devops/parachain-launch/config.yml +++ b/devops/parachain-launch/config.yml @@ -1,13 +1,13 @@ relaychain: - image: p1k1m4n/polkadot-fast-runtime:1.1.0-6 - chain: kusama-local + image: --platform=linux/amd64 parity/polkadot:v1.1.0@sha256:cacf6f2f18f65d4d2ae4dd75b77ea655972d31e8f9c000bd393b70734c376d89 + chain: rococo-local runtimeGenesisConfig: configuration: config: validation_upgrade_cooldown: 10 validation_upgrade_delay: 10 env: - RUST_LOG: info + RUST_LOG: parachain::candidate-backing=trace,parachain::candidate-selection=trace,parachain::pvf=trace,parachain::collator-protocol=trace,parachain::provisioner=trace flags: - --rpc-methods=unsafe - --wasm-execution=compiled @@ -17,31 +17,31 @@ relaychain: - name: bob parachains: - - image: mangatasolutions/mangata-node:rc-0.32.1 - chain: - base: mangata-kusama-local - collators: - - alice - - bob - sudo: alice - skipCollatorSelection: true - skipBalances: true - id: 2110 - parachain: true - flags: - - --rpc-methods=unsafe - - --force-authoring - - --wasm-execution=compiled - - --execution=wasm - relaychainFlags: - - --wasm-execution=compiled - - --execution=wasm - env: - # RUST_LOG: info,block_builder=trace,block_shuffler=trace,runtime::ver=trace,txpool=trace,rpc::nonce=trace - RUST_LOG: info,migration=debug - volumePath: /mangata/data - nodes: - - flags: - - --alice - - flags: - - --bob +- image: mangatasolutions/mangata-node:dev + chain: + base: mangata-rococo-local + collators: + - alice + - bob + sudo: alice + skipCollatorSelection: true + skipBalances: true + id: 2110 + parachain: true + flags: + - --rpc-methods=unsafe + - --force-authoring + - --wasm-execution=compiled + - --execution=wasm + relaychainFlags: + - --wasm-execution=compiled + - --execution=wasm + env: + # RUST_LOG: info,block_builder=trace,block_shuffler=trace,runtime::ver=trace,txpool=trace,rpc::nonce=trace + RUST_LOG: info,block_builder=trace + volumePath: /mangata/data + nodes: + - flags: + - --alice + - flags: + - --bob diff --git a/scripts/build-image.sh b/scripts/build-image.sh index 08bec5c6fc..caa6a41d1d 100755 --- a/scripts/build-image.sh +++ b/scripts/build-image.sh @@ -2,17 +2,17 @@ REPO_ROOT=$(readlink -f $(dirname $(dirname $(readlink -f $0)))) if [ -z "${SKIP_BUILD}" ]; then - ${REPO_ROOT}/docker-cargo.sh build --release --features=mangata-rococo,mangata-kusama,fast-runtime + ${REPO_ROOT}/docker-cargo.sh build --release --features=mangata-rococo,mangata-kusama else - echo "build skipped because SKIP_BUILD flag is set" + echo "build skipped because SKIP_BUILD flag is set" fi BUILD_DIR=${BUILD_DIR:-./docker-cargo/release} GIT_REV=$(git -C ${REPO_ROOT} rev-parse HEAD) if git -C ${REPO_ROOT} diff --quiet HEAD; then - DOCKER_LABEL=${GIT_REV} + DOCKER_LABEL=${GIT_REV} else - DOCKER_LABEL=${GIT_REV}-dirty + DOCKER_LABEL=${GIT_REV}-dirty fi DOCKER_IMAGE_TAG=${@:-mangatasolutions/mangata-node:dev} @@ -20,18 +20,18 @@ DOCKER_TAGS="" echo "building docker image ${DOCKER_IMAGE_TAG} with tags:" for tag in ${DOCKER_IMAGE_TAG}; do - echo \t - ${tag} - DOCKER_TAGS="${DOCKER_TAGS} -t ${tag}" + echo \t - ${tag} + DOCKER_TAGS="${DOCKER_TAGS} -t ${tag}" done if [ ! -e ${BUILD_DIR} ]; then - echo "env variable 'BUILD_DIR' : ${BUILD_DIR} not found" >&2 - exit 1 + echo "env variable 'BUILD_DIR' : ${BUILD_DIR} not found" >&2 + exit 1 fi docker build \ - --build-arg BUILD_DIR=${BUILD_DIR} \ - --label "git_rev=${DOCKER_LABEL}" \ - ${DOCKER_TAGS} \ - -f ${REPO_ROOT}/devops/dockerfiles/node/Dockerfile \ - ${REPO_ROOT} + --build-arg BUILD_DIR=${BUILD_DIR} \ + --label "git_rev=${DOCKER_LABEL}" \ + ${DOCKER_TAGS} \ + -f ${REPO_ROOT}/devops/dockerfiles/node/Dockerfile \ + ${REPO_ROOT} From fef35bed17555c5eeb804163cacc854ab622a939 Mon Sep 17 00:00:00 2001 From: Misha Kolesnik Date: Wed, 20 Dec 2023 14:15:02 +0200 Subject: [PATCH 07/13] ci: temporarily change runners (#662) --- .github/workflows/reusable-build-and-test.yml | 44 ++++++++++++++----- .github/workflows/reusable-e2e-tests.yml | 6 ++- .../workflows/reusable-perfomance-tests.yml | 6 ++- 3 files changed, 44 insertions(+), 12 deletions(-) diff --git a/.github/workflows/reusable-build-and-test.yml b/.github/workflows/reusable-build-and-test.yml index 82f6db7dd6..2981e2df89 100644 --- a/.github/workflows/reusable-build-and-test.yml +++ b/.github/workflows/reusable-build-and-test.yml @@ -30,13 +30,13 @@ permissions: jobs: build-node-image: name: Build Docker image - runs-on: [compile-gke] + runs-on: [compile] container: image: ${{ inputs.builder_image }} - env: - DOCKER_HOST: "unix:///run/docker/docker.sock" - volumes: - - /run/docker:/run/docker + # env: + # DOCKER_HOST: "unix:///run/docker/docker.sock" + # volumes: + # - /run/docker:/run/docker steps: - uses: actions/checkout@v3 - name: Authenticate to Google Cloud @@ -109,6 +109,10 @@ jobs: ./mangata_rococo_runtime-${{ inputs.version }}.compact.compressed.wasm ./mangata_kusama_runtime-${{ inputs.version }}-fast.compact.compressed.wasm ./mangata_rococo_runtime-${{ inputs.version }}-fast.compact.compressed.wasm + + - name: Fix permissions on self-hosted runner + if: always() + run: chown -R 1100:1100 $GITHUB_WORKSPACE rustfmt-check: name: Formatting check @@ -146,7 +150,7 @@ jobs: unit-test: name: Unit tests - runs-on: [compile-gke] + runs-on: [compile] container: image: ${{ inputs.builder_image }} steps: @@ -167,10 +171,14 @@ jobs: key: cargo-unit-cache-${{ inputs.cache_version }}-${{ hashFiles('Cargo.lock') }} - name: Run unit tests run: cargo test -j2 + + - name: Fix permissions on self-hosted runner + if: always() + run: chown -R 1100:1100 $GITHUB_WORKSPACE coverage-report: name: Coverage report - runs-on: [compile-gke] + runs-on: [compile] container: image: ${{ inputs.builder_image }} options: --security-opt seccomp=unconfined @@ -199,6 +207,10 @@ jobs: with: token: ${{ secrets.ORG_CODECOV_TOKEN }} fail_ci_if_error: true + + - name: Fix permissions on self-hosted runner + if: always() + run: chown -R 1100:1100 $GITHUB_WORKSPACE run-benchmarks-tests: name: Run benchmark tests @@ -231,7 +243,7 @@ jobs: build-and-run-try-runtime: name: Run try-runtime checks - runs-on: [compile-gke] + runs-on: [compile] container: image: ${{ inputs.builder_image }} steps: @@ -261,10 +273,14 @@ jobs: - name: Run try-runtime Kusama Mainnet run: try-runtime --runtime=target/release/wbuild/mangata-kusama-runtime/mangata_kusama_runtime.wasm on-runtime-upgrade live --uri wss://kusama-rpc.mangata.online:443 + - name: Fix permissions on self-hosted runner + if: always() + run: chown -R 1100:1100 $GITHUB_WORKSPACE + run-benchmarks: name: Run runtime benchmarks # `performance` self-hosted runners have 8 cores and 16GB of RAM - runs-on: [performance-gke] + runs-on: [compile] env: STEPS: 2 REPEATS: 1 @@ -323,10 +339,14 @@ jobs: with: name: benchmarks path: ./benchmarks + + - name: Fix permissions on self-hosted runner + if: always() + run: chown -R 1100:1100 $GITHUB_WORKSPACE build-wasms: name: Export wasm artifacts - runs-on: [compile-gke] + runs-on: [compile] env: STEPS: 2 REPEATS: 1 @@ -364,3 +384,7 @@ jobs: /bin/bash -c 'target/release/mangata-node export-genesis-wasm --chain=mangata-rococo -l=info,xyk=error > /dev/null' /bin/bash -c 'target/release/mangata-node export-genesis-state --chain=mangata-rococo-local -l=info,xyk=error > /dev/null' /bin/bash -c 'target/release/mangata-node export-genesis-wasm --chain=mangata-rococo-local -l=info,xyk=error > /dev/null' + + - name: Fix permissions on self-hosted runner + if: always() + run: chown -R 1100:1100 $GITHUB_WORKSPACE diff --git a/.github/workflows/reusable-e2e-tests.yml b/.github/workflows/reusable-e2e-tests.yml index f847691c6e..092a694aac 100644 --- a/.github/workflows/reusable-e2e-tests.yml +++ b/.github/workflows/reusable-e2e-tests.yml @@ -123,7 +123,7 @@ jobs: fast: false - command: "yarn test-sdk" fast: true - runs-on: [e2e-gke] + runs-on: [compile] timeout-minutes: 180 env: API_URL: "ws://127.0.0.1:9946" @@ -285,6 +285,10 @@ jobs: run: | docker kill $(docker ps -q) 2>/dev/null && echo $? docker-compose down -v + + - name: Fix permissions on self-hosted runner + if: always() + run: chown -R 1100:1100 $GITHUB_WORKSPACE test-complete: needs: [setup-report, e2e-test-matrix] diff --git a/.github/workflows/reusable-perfomance-tests.yml b/.github/workflows/reusable-perfomance-tests.yml index e0116ab65f..3b54fe5fd1 100644 --- a/.github/workflows/reusable-perfomance-tests.yml +++ b/.github/workflows/reusable-perfomance-tests.yml @@ -22,7 +22,7 @@ jobs: performance-tests: # Allows to keep e2e tests jobs running even if performance-tests fail continue-on-error: true - runs-on: [compile-gke] + runs-on: [compile] timeout-minutes: 180 env: ENV_REF: ${{ inputs.targetEnv || format('pr-{0}', github.event.number) }} @@ -90,3 +90,7 @@ jobs: ./e2e/performance/enqueued.txt ./e2e/performance/executed.txt ./e2e/performance/pending.txt + + - name: Fix permissions on self-hosted runner + if: always() + run: chown -R 1100:1100 $GITHUB_WORKSPACE \ No newline at end of file From e15830e82bfd110134454ccbc7f8c429974f8176 Mon Sep 17 00:00:00 2001 From: devdanco Date: Wed, 3 Jan 2024 10:33:37 +0100 Subject: [PATCH 08/13] chore: update release workflow in order to generate types --- .github/workflows/branch-release.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/branch-release.yml b/.github/workflows/branch-release.yml index faf899e2e3..40bbe88fea 100644 --- a/.github/workflows/branch-release.yml +++ b/.github/workflows/branch-release.yml @@ -114,9 +114,19 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} env: pr-${{ github.event.number }} + generate-types: + name: Generate types + needs: [ init, build-and-test ] + uses: ./.github/workflows/reusable-generate-types.yml + secrets: inherit + with: + branch: ${{ needs.init.outputs.GIT_BRANCH }} + parachainDocker: ${{ github.event.inputs.parachainDocker }} + globalVersion: ${{ needs.init.outputs.GLOBAL_VERSION }} + run-e2e-test: name: Run e2e tests - needs: [init, validate-branch-name, build-and-test] + needs: [init, validate-branch-name, build-and-test, generate-types] uses: ./.github/workflows/reusable-e2e-tests.yml secrets: inherit permissions: From 1224bb90cd3804ba0fb955f196d7f809a61fd1bf Mon Sep 17 00:00:00 2001 From: devdanco Date: Wed, 3 Jan 2024 12:19:03 +0100 Subject: [PATCH 09/13] chore: fix branch name --- .github/workflows/branch-release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/branch-release.yml b/.github/workflows/branch-release.yml index 40bbe88fea..276e0caec8 100644 --- a/.github/workflows/branch-release.yml +++ b/.github/workflows/branch-release.yml @@ -46,6 +46,7 @@ jobs: GIT_BRANCH: ${{ steps.set_vars.outputs.GIT_BRANCH }} RELEASE_BRANCH_PATTERN: ${{ steps.set_vars.outputs.RELEASE_BRANCH_PATTERN }} RELEASE_TAG: ${{ steps.set_vars.outputs.RELEASE_TAG }} + GIT_BRANCH_UNFORMATTED: ${{ steps.branch-name.outputs.current_branch }} steps: - name: Get branch name id: branch-name @@ -120,7 +121,7 @@ jobs: uses: ./.github/workflows/reusable-generate-types.yml secrets: inherit with: - branch: ${{ needs.init.outputs.GIT_BRANCH }} + branch: ${{ needs.init.outputs.GIT_BRANCH_UNFORMATTED }} parachainDocker: ${{ github.event.inputs.parachainDocker }} globalVersion: ${{ needs.init.outputs.GLOBAL_VERSION }} From 0611937bf924ce4cbb75d63b7e096fe6d6738c07 Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Thu, 4 Jan 2024 07:05:14 +0100 Subject: [PATCH 10/13] apply benchmarks from ci --- .../src/weights/block_weights.rs | 20 +- .../src/weights/extrinsic_weights.rs | 20 +- .../src/weights/frame_system.rs | 66 ++--- .../src/weights/orml_asset_registry.rs | 10 +- .../mangata-kusama/src/weights/orml_tokens.rs | 30 +-- .../src/weights/pallet_bootstrap.rs | 18 +- .../src/weights/pallet_collective_mangata.rs | 206 +++++++-------- .../src/weights/pallet_crowdloan_rewards.rs | 46 ++-- .../src/weights/pallet_fee_lock.rs | 10 +- .../src/weights/pallet_issuance.rs | 22 +- .../weights/pallet_multipurpose_liquidity.rs | 10 +- .../src/weights/pallet_proof_of_stake.rs | 34 +-- .../src/weights/pallet_session.rs | 10 +- .../src/weights/pallet_timestamp.rs | 10 +- .../src/weights/pallet_treasury.rs | 38 +-- .../src/weights/pallet_utility_mangata.rs | 46 ++-- .../src/weights/pallet_vesting_mangata.rs | 86 +++--- .../mangata-kusama/src/weights/pallet_xyk.rs | 58 ++--- .../src/weights/parachain_staking.rs | 246 +++++++++--------- .../src/weights/block_weights.rs | 20 +- .../src/weights/extrinsic_weights.rs | 20 +- .../src/weights/frame_system.rs | 66 ++--- .../src/weights/orml_asset_registry.rs | 10 +- .../mangata-rococo/src/weights/orml_tokens.rs | 30 +-- .../src/weights/pallet_bootstrap.rs | 18 +- .../src/weights/pallet_collective_mangata.rs | 206 +++++++-------- .../src/weights/pallet_crowdloan_rewards.rs | 46 ++-- .../src/weights/pallet_fee_lock.rs | 10 +- .../src/weights/pallet_issuance.rs | 22 +- .../weights/pallet_multipurpose_liquidity.rs | 10 +- .../src/weights/pallet_proof_of_stake.rs | 34 +-- .../src/weights/pallet_session.rs | 10 +- .../src/weights/pallet_timestamp.rs | 10 +- .../src/weights/pallet_treasury.rs | 38 +-- .../src/weights/pallet_utility_mangata.rs | 46 ++-- .../src/weights/pallet_vesting_mangata.rs | 86 +++--- .../mangata-rococo/src/weights/pallet_xyk.rs | 58 ++--- .../src/weights/parachain_staking.rs | 246 +++++++++--------- 38 files changed, 982 insertions(+), 990 deletions(-) diff --git a/runtime/mangata-kusama/src/weights/block_weights.rs b/runtime/mangata-kusama/src/weights/block_weights.rs index 72c5fac1c5..90c7e57cf7 100644 --- a/runtime/mangata-kusama/src/weights/block_weights.rs +++ b/runtime/mangata-kusama/src/weights/block_weights.rs @@ -1,6 +1,6 @@ //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29 (Y/M/D) -//! HOSTNAME: `cd63f32c58dd`, CPU: `AMD EPYC 7B12` +//! DATE: 2024-01-03 (Y/M/D) +//! HOSTNAME: `7f40434a6f98`, CPU: `AMD EPYC 7B13` //! //! SHORT-NAME: `block`, LONG-NAME: `BlockExecution`, RUNTIME: `Mangata Kusama Local` //! WARMUPS: `10`, REPEAT: `100` @@ -29,17 +29,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 24_891_029, 26_810_049 - /// Average: 25_377_421 - /// Median: 25_276_259 - /// Std-Dev: 401027.07 + /// Min, Max: 27_843_717, 32_531_118 + /// Average: 29_873_562 + /// Median: 29_743_918 + /// Std-Dev: 918740.49 /// /// Percentiles nanoseconds: - /// 99th: 26_762_049 - /// 95th: 26_403_029 - /// 75th: 25_427_019 + /// 99th: 32_046_977 + /// 95th: 31_472_667 + /// 75th: 30_410_057 pub const BlockExecutionWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(25_377_421), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(29_873_562), 0); } #[cfg(test)] diff --git a/runtime/mangata-kusama/src/weights/extrinsic_weights.rs b/runtime/mangata-kusama/src/weights/extrinsic_weights.rs index 339ed27983..143c674af2 100644 --- a/runtime/mangata-kusama/src/weights/extrinsic_weights.rs +++ b/runtime/mangata-kusama/src/weights/extrinsic_weights.rs @@ -1,6 +1,6 @@ //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29 (Y/M/D) -//! HOSTNAME: `cd63f32c58dd`, CPU: `AMD EPYC 7B12` +//! DATE: 2024-01-03 (Y/M/D) +//! HOSTNAME: `7f40434a6f98`, CPU: `AMD EPYC 7B13` //! //! SHORT-NAME: `extrinsic`, LONG-NAME: `ExtrinsicBase`, RUNTIME: `Mangata Kusama Local` //! WARMUPS: `10`, REPEAT: `100` @@ -29,17 +29,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 207_838, 229_040 - /// Average: 213_832 - /// Median: 213_109 - /// Std-Dev: 4058.62 + /// Min, Max: 185_312, 198_829 + /// Average: 192_481 + /// Median: 192_653 + /// Std-Dev: 2986.81 /// /// Percentiles nanoseconds: - /// 99th: 225_744 - /// 95th: 220_845 - /// 75th: 216_205 + /// 99th: 198_365 + /// 95th: 197_706 + /// 75th: 194_213 pub const ExtrinsicBaseWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(213_832), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(192_481), 0); } #[cfg(test)] diff --git a/runtime/mangata-kusama/src/weights/frame_system.rs b/runtime/mangata-kusama/src/weights/frame_system.rs index 2424b0e8aa..e500415691 100644 --- a/runtime/mangata-kusama/src/weights/frame_system.rs +++ b/runtime/mangata-kusama/src/weights/frame_system.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for frame_system //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -69,21 +69,21 @@ pub trait WeightInfo { pub struct ModuleWeight(PhantomData); impl frame_system::WeightInfo for ModuleWeight { fn remark(b: u32, ) -> Weight { - (Weight::from_parts(3_960_000, 0)) + (Weight::from_parts(8_068_407, 0)) // Standard Error: 0 - .saturating_add((Weight::from_parts(402, 0)).saturating_mul(b as u64)) + .saturating_add((Weight::from_parts(301, 0)).saturating_mul(b as u64)) } fn remark_with_event(b: u32, ) -> Weight { - (Weight::from_parts(12_890_000, 0)) - // Standard Error: 0 - .saturating_add((Weight::from_parts(1_688, 0)).saturating_mul(b as u64)) + (Weight::from_parts(8_629_253, 0)) + // Standard Error: 3 + .saturating_add((Weight::from_parts(1_566, 0)).saturating_mul(b as u64)) } // Storage: `System::Digest` (r:1 w:1) // Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) // Storage: UNKNOWN KEY `0x3a686561707061676573` (r:0 w:1) // Proof: UNKNOWN KEY `0x3a686561707061676573` (r:0 w:1) fn set_heap_pages() -> Weight { - (Weight::from_parts(7_200_000, 0)) + (Weight::from_parts(7_550_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -102,32 +102,32 @@ impl frame_system::WeightInfo for ModuleWeight { // Storage: `ParachainSystem::DidSetValidationCode` (r:0 w:1) // Proof: `ParachainSystem::DidSetValidationCode` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_code() -> Weight { - (Weight::from_parts(164_512_187_000, 0)) + (Weight::from_parts(153_609_518_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_storage(i: u32, ) -> Weight { - (Weight::from_parts(4_120_000, 0)) - // Standard Error: 2_770 - .saturating_add((Weight::from_parts(1_335_517, 0)).saturating_mul(i as u64)) + (Weight::from_parts(4_029_000, 0)) + // Standard Error: 2_553 + .saturating_add((Weight::from_parts(1_209_775, 0)).saturating_mul(i as u64)) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(i as u64))) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn kill_storage(i: u32, ) -> Weight { - (Weight::from_parts(4_110_000, 0)) - // Standard Error: 1_271 - .saturating_add((Weight::from_parts(915_035, 0)).saturating_mul(i as u64)) + (Weight::from_parts(3_660_000, 0)) + // Standard Error: 1_695 + .saturating_add((Weight::from_parts(781_486, 0)).saturating_mul(i as u64)) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(i as u64))) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn kill_prefix(p: u32, ) -> Weight { - (Weight::from_parts(7_640_000, 0)) - // Standard Error: 1_997 - .saturating_add((Weight::from_parts(1_597_399, 0)).saturating_mul(p as u64)) + (Weight::from_parts(6_871_000, 0)) + // Standard Error: 2_662 + .saturating_add((Weight::from_parts(1_353_159, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(p as u64))) } @@ -136,21 +136,21 @@ impl frame_system::WeightInfo for ModuleWeight { // For backwards compatibility and tests impl WeightInfo for () { fn remark(b: u32, ) -> Weight { - (Weight::from_parts(3_960_000, 0)) + (Weight::from_parts(8_068_407, 0)) // Standard Error: 0 - .saturating_add((Weight::from_parts(402, 0)).saturating_mul(b as u64)) + .saturating_add((Weight::from_parts(301, 0)).saturating_mul(b as u64)) } fn remark_with_event(b: u32, ) -> Weight { - (Weight::from_parts(12_890_000, 0)) - // Standard Error: 0 - .saturating_add((Weight::from_parts(1_688, 0)).saturating_mul(b as u64)) + (Weight::from_parts(8_629_253, 0)) + // Standard Error: 3 + .saturating_add((Weight::from_parts(1_566, 0)).saturating_mul(b as u64)) } // Storage: `System::Digest` (r:1 w:1) // Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) // Storage: UNKNOWN KEY `0x3a686561707061676573` (r:0 w:1) // Proof: UNKNOWN KEY `0x3a686561707061676573` (r:0 w:1) fn set_heap_pages() -> Weight { - (Weight::from_parts(7_200_000, 0)) + (Weight::from_parts(7_550_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -169,32 +169,32 @@ impl WeightInfo for () { // Storage: `ParachainSystem::DidSetValidationCode` (r:0 w:1) // Proof: `ParachainSystem::DidSetValidationCode` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_code() -> Weight { - (Weight::from_parts(164_512_187_000, 0)) + (Weight::from_parts(153_609_518_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_storage(i: u32, ) -> Weight { - (Weight::from_parts(4_120_000, 0)) - // Standard Error: 2_770 - .saturating_add((Weight::from_parts(1_335_517, 0)).saturating_mul(i as u64)) + (Weight::from_parts(4_029_000, 0)) + // Standard Error: 2_553 + .saturating_add((Weight::from_parts(1_209_775, 0)).saturating_mul(i as u64)) .saturating_add(RocksDbWeight::get().writes((1 as u64).saturating_mul(i as u64))) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn kill_storage(i: u32, ) -> Weight { - (Weight::from_parts(4_110_000, 0)) - // Standard Error: 1_271 - .saturating_add((Weight::from_parts(915_035, 0)).saturating_mul(i as u64)) + (Weight::from_parts(3_660_000, 0)) + // Standard Error: 1_695 + .saturating_add((Weight::from_parts(781_486, 0)).saturating_mul(i as u64)) .saturating_add(RocksDbWeight::get().writes((1 as u64).saturating_mul(i as u64))) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn kill_prefix(p: u32, ) -> Weight { - (Weight::from_parts(7_640_000, 0)) - // Standard Error: 1_997 - .saturating_add((Weight::from_parts(1_597_399, 0)).saturating_mul(p as u64)) + (Weight::from_parts(6_871_000, 0)) + // Standard Error: 2_662 + .saturating_add((Weight::from_parts(1_353_159, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(RocksDbWeight::get().writes((1 as u64).saturating_mul(p as u64))) } diff --git a/runtime/mangata-kusama/src/weights/orml_asset_registry.rs b/runtime/mangata-kusama/src/weights/orml_asset_registry.rs index 9e1c3728ed..a75a7ffaa7 100644 --- a/runtime/mangata-kusama/src/weights/orml_asset_registry.rs +++ b/runtime/mangata-kusama/src/weights/orml_asset_registry.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for orml_asset_registry //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -72,7 +72,7 @@ impl orml_asset_registry::WeightInfo for ModuleWeight Weight { - (Weight::from_parts(44_011_000, 0)) + (Weight::from_parts(44_920_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -81,7 +81,7 @@ impl orml_asset_registry::WeightInfo for ModuleWeight Weight { - (Weight::from_parts(29_660_000, 0)) + (Weight::from_parts(30_110_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -98,7 +98,7 @@ impl WeightInfo for () { // Storage: `AssetRegistry::LocationToAssetId` (r:1 w:1) // Proof: `AssetRegistry::LocationToAssetId` (`max_values`: None, `max_size`: Some(614), added: 3089, mode: `MaxEncodedLen`) fn register_asset() -> Weight { - (Weight::from_parts(44_011_000, 0)) + (Weight::from_parts(44_920_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -107,7 +107,7 @@ impl WeightInfo for () { // Storage: `AssetRegistry::LocationToAssetId` (r:1 w:1) // Proof: `AssetRegistry::LocationToAssetId` (`max_values`: None, `max_size`: Some(614), added: 3089, mode: `MaxEncodedLen`) fn update_asset() -> Weight { - (Weight::from_parts(29_660_000, 0)) + (Weight::from_parts(30_110_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/orml_tokens.rs b/runtime/mangata-kusama/src/weights/orml_tokens.rs index a5316a418d..08779e91ef 100644 --- a/runtime/mangata-kusama/src/weights/orml_tokens.rs +++ b/runtime/mangata-kusama/src/weights/orml_tokens.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for orml_tokens //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -73,7 +73,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer() -> Weight { - (Weight::from_parts(53_180_000, 0)) + (Weight::from_parts(55_440_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -82,7 +82,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer_all() -> Weight { - (Weight::from_parts(55_680_000, 0)) + (Weight::from_parts(58_409_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -91,7 +91,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer_keep_alive() -> Weight { - (Weight::from_parts(50_880_000, 0)) + (Weight::from_parts(49_520_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -100,7 +100,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn force_transfer() -> Weight { - (Weight::from_parts(56_430_000, 0)) + (Weight::from_parts(58_090_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -109,7 +109,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn set_balance() -> Weight { - (Weight::from_parts(31_470_000, 0)) + (Weight::from_parts(29_440_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -122,7 +122,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn create() -> Weight { - (Weight::from_parts(58_020_000, 0)) + (Weight::from_parts(56_320_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -135,7 +135,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn mint() -> Weight { - (Weight::from_parts(58_200_000, 0)) + (Weight::from_parts(55_450_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -148,7 +148,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer() -> Weight { - (Weight::from_parts(53_180_000, 0)) + (Weight::from_parts(55_440_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -157,7 +157,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer_all() -> Weight { - (Weight::from_parts(55_680_000, 0)) + (Weight::from_parts(58_409_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -166,7 +166,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer_keep_alive() -> Weight { - (Weight::from_parts(50_880_000, 0)) + (Weight::from_parts(49_520_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -175,7 +175,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn force_transfer() -> Weight { - (Weight::from_parts(56_430_000, 0)) + (Weight::from_parts(58_090_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -184,7 +184,7 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn set_balance() -> Weight { - (Weight::from_parts(31_470_000, 0)) + (Weight::from_parts(29_440_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -197,7 +197,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn create() -> Weight { - (Weight::from_parts(58_020_000, 0)) + (Weight::from_parts(56_320_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -210,7 +210,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn mint() -> Weight { - (Weight::from_parts(58_200_000, 0)) + (Weight::from_parts(55_450_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/pallet_bootstrap.rs b/runtime/mangata-kusama/src/weights/pallet_bootstrap.rs index 99dba8180d..e14436d06d 100644 --- a/runtime/mangata-kusama/src/weights/pallet_bootstrap.rs +++ b/runtime/mangata-kusama/src/weights/pallet_bootstrap.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_bootstrap //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -78,7 +78,7 @@ impl pallet_bootstrap::WeightInfo for ModuleWeight { // Storage: `Bootstrap::ActivePair` (r:0 w:1) // Proof: `Bootstrap::ActivePair` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_bootstrap() -> Weight { - (Weight::from_parts(34_030_000, 0)) + (Weight::from_parts(31_660_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -103,7 +103,7 @@ impl pallet_bootstrap::WeightInfo for ModuleWeight { // Storage: `Bootstrap::ProvisionAccounts` (r:0 w:1) // Proof: `Bootstrap::ProvisionAccounts` (`max_values`: None, `max_size`: None, mode: `Measured`) fn provision() -> Weight { - (Weight::from_parts(105_661_000, 0)) + (Weight::from_parts(97_651_000, 0)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -136,7 +136,7 @@ impl pallet_bootstrap::WeightInfo for ModuleWeight { // Storage: `Bootstrap::ProvisionAccounts` (r:0 w:1) // Proof: `Bootstrap::ProvisionAccounts` (`max_values`: None, `max_size`: None, mode: `Measured`) fn claim_and_activate_liquidity_tokens() -> Weight { - (Weight::from_parts(231_920_000, 0)) + (Weight::from_parts(239_080_000, 0)) .saturating_add(T::DbWeight::get().reads(17 as u64)) .saturating_add(T::DbWeight::get().writes(8 as u64)) } @@ -167,7 +167,7 @@ impl pallet_bootstrap::WeightInfo for ModuleWeight { // Storage: `Bootstrap::ActivePair` (r:0 w:1) // Proof: `Bootstrap::ActivePair` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn finalize() -> Weight { - (Weight::from_parts(85_180_000, 0)) + (Weight::from_parts(76_100_000, 0)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(7 as u64)) } @@ -188,7 +188,7 @@ impl WeightInfo for () { // Storage: `Bootstrap::ActivePair` (r:0 w:1) // Proof: `Bootstrap::ActivePair` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_bootstrap() -> Weight { - (Weight::from_parts(34_030_000, 0)) + (Weight::from_parts(31_660_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -213,7 +213,7 @@ impl WeightInfo for () { // Storage: `Bootstrap::ProvisionAccounts` (r:0 w:1) // Proof: `Bootstrap::ProvisionAccounts` (`max_values`: None, `max_size`: None, mode: `Measured`) fn provision() -> Weight { - (Weight::from_parts(105_661_000, 0)) + (Weight::from_parts(97_651_000, 0)) .saturating_add(RocksDbWeight::get().reads(10 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -246,7 +246,7 @@ impl WeightInfo for () { // Storage: `Bootstrap::ProvisionAccounts` (r:0 w:1) // Proof: `Bootstrap::ProvisionAccounts` (`max_values`: None, `max_size`: None, mode: `Measured`) fn claim_and_activate_liquidity_tokens() -> Weight { - (Weight::from_parts(231_920_000, 0)) + (Weight::from_parts(239_080_000, 0)) .saturating_add(RocksDbWeight::get().reads(17 as u64)) .saturating_add(RocksDbWeight::get().writes(8 as u64)) } @@ -277,7 +277,7 @@ impl WeightInfo for () { // Storage: `Bootstrap::ActivePair` (r:0 w:1) // Proof: `Bootstrap::ActivePair` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn finalize() -> Weight { - (Weight::from_parts(85_180_000, 0)) + (Weight::from_parts(76_100_000, 0)) .saturating_add(RocksDbWeight::get().reads(10 as u64)) .saturating_add(RocksDbWeight::get().writes(7 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/pallet_collective_mangata.rs b/runtime/mangata-kusama/src/weights/pallet_collective_mangata.rs index 89ce02a83a..156c6147d1 100644 --- a/runtime/mangata-kusama/src/weights/pallet_collective_mangata.rs +++ b/runtime/mangata-kusama/src/weights/pallet_collective_mangata.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_collective_mangata //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -80,11 +80,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Prime` (r:0 w:1) // Proof: `Council::Prime` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_members(m: u32, _n: u32, p: u32, ) -> Weight { - (Weight::from_parts(57_070_000, 0)) - // Standard Error: 80_826 - .saturating_add((Weight::from_parts(5_743_808, 0)).saturating_mul(m as u64)) - // Standard Error: 80_826 - .saturating_add((Weight::from_parts(11_380_621, 0)).saturating_mul(p as u64)) + (Weight::from_parts(50_090_000, 0)) + // Standard Error: 72_056 + .saturating_add((Weight::from_parts(4_845_252, 0)).saturating_mul(m as u64)) + // Standard Error: 72_056 + .saturating_add((Weight::from_parts(9_794_059, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(T::DbWeight::get().writes(2 as u64)) @@ -93,11 +93,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Members` (r:1 w:0) // Proof: `Council::Members` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute(b: u32, m: u32, ) -> Weight { - (Weight::from_parts(31_264_021, 0)) - // Standard Error: 153 - .saturating_add((Weight::from_parts(1_555, 0)).saturating_mul(b as u64)) - // Standard Error: 1_585 - .saturating_add((Weight::from_parts(19_347, 0)).saturating_mul(m as u64)) + (Weight::from_parts(30_607_433, 0)) + // Standard Error: 163 + .saturating_add((Weight::from_parts(1_259, 0)).saturating_mul(b as u64)) + // Standard Error: 1_683 + .saturating_add((Weight::from_parts(18_998, 0)).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) } // Storage: `Council::Members` (r:1 w:0) @@ -105,11 +105,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::ProposalOf` (r:1 w:0) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn propose_execute(b: u32, m: u32, ) -> Weight { - (Weight::from_parts(34_470_959, 0)) - // Standard Error: 112 - .saturating_add((Weight::from_parts(2_336, 0)).saturating_mul(b as u64)) - // Standard Error: 1_157 - .saturating_add((Weight::from_parts(49_021, 0)).saturating_mul(m as u64)) + (Weight::from_parts(34_212_021, 0)) + // Standard Error: 182 + .saturating_add((Weight::from_parts(2_073, 0)).saturating_mul(b as u64)) + // Standard Error: 1_878 + .saturating_add((Weight::from_parts(35_729, 0)).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) } // Storage: `Council::Members` (r:1 w:0) @@ -125,13 +125,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Voting` (r:0 w:1) // Proof: `Council::Voting` (`max_values`: None, `max_size`: None, mode: `Measured`) fn propose_proposed(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(52_246_247, 0)) - // Standard Error: 310 - .saturating_add((Weight::from_parts(3_431, 0)).saturating_mul(b as u64)) - // Standard Error: 3_243 - .saturating_add((Weight::from_parts(18_576, 0)).saturating_mul(m as u64)) - // Standard Error: 3_202 - .saturating_add((Weight::from_parts(347_105, 0)).saturating_mul(p as u64)) + (Weight::from_parts(51_719_195, 0)) + // Standard Error: 343 + .saturating_add((Weight::from_parts(4_806, 0)).saturating_mul(b as u64)) + // Standard Error: 3_540 + .saturating_add((Weight::from_parts(307_635, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -140,9 +138,9 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Voting` (r:1 w:1) // Proof: `Council::Voting` (`max_values`: None, `max_size`: None, mode: `Measured`) fn vote(m: u32, ) -> Weight { - (Weight::from_parts(48_666_664, 0)) - // Standard Error: 2_582 - .saturating_add((Weight::from_parts(61_948, 0)).saturating_mul(m as u64)) + (Weight::from_parts(46_719_287, 0)) + // Standard Error: 3_404 + .saturating_add((Weight::from_parts(20_273, 0)).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -157,11 +155,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn close_early_disapproved(m: u32, p: u32, ) -> Weight { - (Weight::from_parts(72_643_764, 0)) - // Standard Error: 3_322 - .saturating_add((Weight::from_parts(75_632, 0)).saturating_mul(m as u64)) - // Standard Error: 3_239 - .saturating_add((Weight::from_parts(325_327, 0)).saturating_mul(p as u64)) + (Weight::from_parts(66_985_259, 0)) + // Standard Error: 4_430 + .saturating_add((Weight::from_parts(47_134, 0)).saturating_mul(m as u64)) + // Standard Error: 4_320 + .saturating_add((Weight::from_parts(316_910, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -176,13 +174,13 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Proposals` (r:1 w:1) // Proof: `Council::Proposals` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn close_early_approved(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(91_862_749, 0)) - // Standard Error: 446 - .saturating_add((Weight::from_parts(10_002, 0)).saturating_mul(b as u64)) - // Standard Error: 4_716 - .saturating_add((Weight::from_parts(79_710, 0)).saturating_mul(m as u64)) - // Standard Error: 4_597 - .saturating_add((Weight::from_parts(403_860, 0)).saturating_mul(p as u64)) + (Weight::from_parts(86_026_209, 0)) + // Standard Error: 595 + .saturating_add((Weight::from_parts(9_907, 0)).saturating_mul(b as u64)) + // Standard Error: 6_297 + .saturating_add((Weight::from_parts(40_342, 0)).saturating_mul(m as u64)) + // Standard Error: 6_138 + .saturating_add((Weight::from_parts(392_639, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -199,11 +197,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn close_disapproved(m: u32, p: u32, ) -> Weight { - (Weight::from_parts(76_862_727, 0)) - // Standard Error: 3_224 - .saturating_add((Weight::from_parts(73_606, 0)).saturating_mul(m as u64)) - // Standard Error: 3_144 - .saturating_add((Weight::from_parts(330_989, 0)).saturating_mul(p as u64)) + (Weight::from_parts(74_401_218, 0)) + // Standard Error: 4_419 + .saturating_add((Weight::from_parts(31_096, 0)).saturating_mul(m as u64)) + // Standard Error: 4_309 + .saturating_add((Weight::from_parts(296_121, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -220,13 +218,13 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Proposals` (r:1 w:1) // Proof: `Council::Proposals` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn close_approved(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(96_913_463, 0)) - // Standard Error: 479 - .saturating_add((Weight::from_parts(11_066, 0)).saturating_mul(b as u64)) - // Standard Error: 5_066 - .saturating_add((Weight::from_parts(75_414, 0)).saturating_mul(m as u64)) - // Standard Error: 4_938 - .saturating_add((Weight::from_parts(409_193, 0)).saturating_mul(p as u64)) + (Weight::from_parts(98_643_873, 0)) + // Standard Error: 560 + .saturating_add((Weight::from_parts(7_326, 0)).saturating_mul(b as u64)) + // Standard Error: 5_927 + .saturating_add((Weight::from_parts(16_387, 0)).saturating_mul(m as u64)) + // Standard Error: 5_778 + .saturating_add((Weight::from_parts(357_802, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -239,9 +237,9 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn disapprove_proposal(p: u32, ) -> Weight { - (Weight::from_parts(38_136_813, 0)) - // Standard Error: 2_436 - .saturating_add((Weight::from_parts(301_299, 0)).saturating_mul(p as u64)) + (Weight::from_parts(35_738_384, 0)) + // Standard Error: 4_396 + .saturating_add((Weight::from_parts(291_651, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -258,11 +256,11 @@ impl WeightInfo for () { // Storage: `Council::Prime` (r:0 w:1) // Proof: `Council::Prime` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_members(m: u32, _n: u32, p: u32, ) -> Weight { - (Weight::from_parts(57_070_000, 0)) - // Standard Error: 80_826 - .saturating_add((Weight::from_parts(5_743_808, 0)).saturating_mul(m as u64)) - // Standard Error: 80_826 - .saturating_add((Weight::from_parts(11_380_621, 0)).saturating_mul(p as u64)) + (Weight::from_parts(50_090_000, 0)) + // Standard Error: 72_056 + .saturating_add((Weight::from_parts(4_845_252, 0)).saturating_mul(m as u64)) + // Standard Error: 72_056 + .saturating_add((Weight::from_parts(9_794_059, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(RocksDbWeight::get().writes(2 as u64)) @@ -271,11 +269,11 @@ impl WeightInfo for () { // Storage: `Council::Members` (r:1 w:0) // Proof: `Council::Members` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute(b: u32, m: u32, ) -> Weight { - (Weight::from_parts(31_264_021, 0)) - // Standard Error: 153 - .saturating_add((Weight::from_parts(1_555, 0)).saturating_mul(b as u64)) - // Standard Error: 1_585 - .saturating_add((Weight::from_parts(19_347, 0)).saturating_mul(m as u64)) + (Weight::from_parts(30_607_433, 0)) + // Standard Error: 163 + .saturating_add((Weight::from_parts(1_259, 0)).saturating_mul(b as u64)) + // Standard Error: 1_683 + .saturating_add((Weight::from_parts(18_998, 0)).saturating_mul(m as u64)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) } // Storage: `Council::Members` (r:1 w:0) @@ -283,11 +281,11 @@ impl WeightInfo for () { // Storage: `Council::ProposalOf` (r:1 w:0) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn propose_execute(b: u32, m: u32, ) -> Weight { - (Weight::from_parts(34_470_959, 0)) - // Standard Error: 112 - .saturating_add((Weight::from_parts(2_336, 0)).saturating_mul(b as u64)) - // Standard Error: 1_157 - .saturating_add((Weight::from_parts(49_021, 0)).saturating_mul(m as u64)) + (Weight::from_parts(34_212_021, 0)) + // Standard Error: 182 + .saturating_add((Weight::from_parts(2_073, 0)).saturating_mul(b as u64)) + // Standard Error: 1_878 + .saturating_add((Weight::from_parts(35_729, 0)).saturating_mul(m as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) } // Storage: `Council::Members` (r:1 w:0) @@ -303,13 +301,11 @@ impl WeightInfo for () { // Storage: `Council::Voting` (r:0 w:1) // Proof: `Council::Voting` (`max_values`: None, `max_size`: None, mode: `Measured`) fn propose_proposed(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(52_246_247, 0)) - // Standard Error: 310 - .saturating_add((Weight::from_parts(3_431, 0)).saturating_mul(b as u64)) - // Standard Error: 3_243 - .saturating_add((Weight::from_parts(18_576, 0)).saturating_mul(m as u64)) - // Standard Error: 3_202 - .saturating_add((Weight::from_parts(347_105, 0)).saturating_mul(p as u64)) + (Weight::from_parts(51_719_195, 0)) + // Standard Error: 343 + .saturating_add((Weight::from_parts(4_806, 0)).saturating_mul(b as u64)) + // Standard Error: 3_540 + .saturating_add((Weight::from_parts(307_635, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } @@ -318,9 +314,9 @@ impl WeightInfo for () { // Storage: `Council::Voting` (r:1 w:1) // Proof: `Council::Voting` (`max_values`: None, `max_size`: None, mode: `Measured`) fn vote(m: u32, ) -> Weight { - (Weight::from_parts(48_666_664, 0)) - // Standard Error: 2_582 - .saturating_add((Weight::from_parts(61_948, 0)).saturating_mul(m as u64)) + (Weight::from_parts(46_719_287, 0)) + // Standard Error: 3_404 + .saturating_add((Weight::from_parts(20_273, 0)).saturating_mul(m as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -335,11 +331,11 @@ impl WeightInfo for () { // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn close_early_disapproved(m: u32, p: u32, ) -> Weight { - (Weight::from_parts(72_643_764, 0)) - // Standard Error: 3_322 - .saturating_add((Weight::from_parts(75_632, 0)).saturating_mul(m as u64)) - // Standard Error: 3_239 - .saturating_add((Weight::from_parts(325_327, 0)).saturating_mul(p as u64)) + (Weight::from_parts(66_985_259, 0)) + // Standard Error: 4_430 + .saturating_add((Weight::from_parts(47_134, 0)).saturating_mul(m as u64)) + // Standard Error: 4_320 + .saturating_add((Weight::from_parts(316_910, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -354,13 +350,13 @@ impl WeightInfo for () { // Storage: `Council::Proposals` (r:1 w:1) // Proof: `Council::Proposals` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn close_early_approved(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(91_862_749, 0)) - // Standard Error: 446 - .saturating_add((Weight::from_parts(10_002, 0)).saturating_mul(b as u64)) - // Standard Error: 4_716 - .saturating_add((Weight::from_parts(79_710, 0)).saturating_mul(m as u64)) - // Standard Error: 4_597 - .saturating_add((Weight::from_parts(403_860, 0)).saturating_mul(p as u64)) + (Weight::from_parts(86_026_209, 0)) + // Standard Error: 595 + .saturating_add((Weight::from_parts(9_907, 0)).saturating_mul(b as u64)) + // Standard Error: 6_297 + .saturating_add((Weight::from_parts(40_342, 0)).saturating_mul(m as u64)) + // Standard Error: 6_138 + .saturating_add((Weight::from_parts(392_639, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -377,11 +373,11 @@ impl WeightInfo for () { // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn close_disapproved(m: u32, p: u32, ) -> Weight { - (Weight::from_parts(76_862_727, 0)) - // Standard Error: 3_224 - .saturating_add((Weight::from_parts(73_606, 0)).saturating_mul(m as u64)) - // Standard Error: 3_144 - .saturating_add((Weight::from_parts(330_989, 0)).saturating_mul(p as u64)) + (Weight::from_parts(74_401_218, 0)) + // Standard Error: 4_419 + .saturating_add((Weight::from_parts(31_096, 0)).saturating_mul(m as u64)) + // Standard Error: 4_309 + .saturating_add((Weight::from_parts(296_121, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -398,13 +394,13 @@ impl WeightInfo for () { // Storage: `Council::Proposals` (r:1 w:1) // Proof: `Council::Proposals` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn close_approved(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(96_913_463, 0)) - // Standard Error: 479 - .saturating_add((Weight::from_parts(11_066, 0)).saturating_mul(b as u64)) - // Standard Error: 5_066 - .saturating_add((Weight::from_parts(75_414, 0)).saturating_mul(m as u64)) - // Standard Error: 4_938 - .saturating_add((Weight::from_parts(409_193, 0)).saturating_mul(p as u64)) + (Weight::from_parts(98_643_873, 0)) + // Standard Error: 560 + .saturating_add((Weight::from_parts(7_326, 0)).saturating_mul(b as u64)) + // Standard Error: 5_927 + .saturating_add((Weight::from_parts(16_387, 0)).saturating_mul(m as u64)) + // Standard Error: 5_778 + .saturating_add((Weight::from_parts(357_802, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -417,9 +413,9 @@ impl WeightInfo for () { // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn disapprove_proposal(p: u32, ) -> Weight { - (Weight::from_parts(38_136_813, 0)) - // Standard Error: 2_436 - .saturating_add((Weight::from_parts(301_299, 0)).saturating_mul(p as u64)) + (Weight::from_parts(35_738_384, 0)) + // Standard Error: 4_396 + .saturating_add((Weight::from_parts(291_651, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/pallet_crowdloan_rewards.rs b/runtime/mangata-kusama/src/weights/pallet_crowdloan_rewards.rs index 6d056975fa..c457c66b7c 100644 --- a/runtime/mangata-kusama/src/weights/pallet_crowdloan_rewards.rs +++ b/runtime/mangata-kusama/src/weights/pallet_crowdloan_rewards.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_crowdloan_rewards //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -77,7 +77,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::CrowdloanAllocation` (r:0 w:1) // Proof: `Crowdloan::CrowdloanAllocation` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_crowdloan_allocation() -> Weight { - (Weight::from_parts(14_060_000, 0)) + (Weight::from_parts(14_470_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -98,9 +98,9 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::AccountsPayable` (r:100 w:100) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn initialize_reward_vec(x: u32, ) -> Weight { - (Weight::from_parts(110_032_669, 0)) - // Standard Error: 40_472 - .saturating_add((Weight::from_parts(26_743_344, 0)).saturating_mul(x as u64)) + (Weight::from_parts(141_666_911, 0)) + // Standard Error: 73_439 + .saturating_add((Weight::from_parts(26_080_457, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(2 as u64)) @@ -119,7 +119,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::CrowdloanPeriod` (r:0 w:1) // Proof: `Crowdloan::CrowdloanPeriod` (`max_values`: None, `max_size`: None, mode: `Measured`) fn complete_initialization() -> Weight { - (Weight::from_parts(27_640_000, 0)) + (Weight::from_parts(27_570_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -144,7 +144,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn claim() -> Weight { - (Weight::from_parts(129_789_000, 0)) + (Weight::from_parts(131_760_000, 0)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -153,7 +153,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::AccountsPayable` (r:2 w:2) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn update_reward_address() -> Weight { - (Weight::from_parts(35_230_000, 0)) + (Weight::from_parts(35_020_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -166,7 +166,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::AccountsPayable` (r:1 w:1) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn associate_native_identity() -> Weight { - (Weight::from_parts(118_950_000, 0)) + (Weight::from_parts(115_070_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -175,9 +175,9 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::AccountsPayable` (r:2 w:2) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn change_association_with_relay_keys(x: u32, ) -> Weight { - (Weight::from_parts(43_061_678, 0)) - // Standard Error: 30_884 - .saturating_add((Weight::from_parts(67_301_911, 0)).saturating_mul(x as u64)) + (Weight::from_parts(22_606_472, 0)) + // Standard Error: 117_254 + .saturating_add((Weight::from_parts(62_758_102, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -194,7 +194,7 @@ impl WeightInfo for () { // Storage: `Crowdloan::CrowdloanAllocation` (r:0 w:1) // Proof: `Crowdloan::CrowdloanAllocation` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_crowdloan_allocation() -> Weight { - (Weight::from_parts(14_060_000, 0)) + (Weight::from_parts(14_470_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -215,9 +215,9 @@ impl WeightInfo for () { // Storage: `Crowdloan::AccountsPayable` (r:100 w:100) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn initialize_reward_vec(x: u32, ) -> Weight { - (Weight::from_parts(110_032_669, 0)) - // Standard Error: 40_472 - .saturating_add((Weight::from_parts(26_743_344, 0)).saturating_mul(x as u64)) + (Weight::from_parts(141_666_911, 0)) + // Standard Error: 73_439 + .saturating_add((Weight::from_parts(26_080_457, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().reads((3 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(2 as u64)) @@ -236,7 +236,7 @@ impl WeightInfo for () { // Storage: `Crowdloan::CrowdloanPeriod` (r:0 w:1) // Proof: `Crowdloan::CrowdloanPeriod` (`max_values`: None, `max_size`: None, mode: `Measured`) fn complete_initialization() -> Weight { - (Weight::from_parts(27_640_000, 0)) + (Weight::from_parts(27_570_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -261,7 +261,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn claim() -> Weight { - (Weight::from_parts(129_789_000, 0)) + (Weight::from_parts(131_760_000, 0)) .saturating_add(RocksDbWeight::get().reads(10 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -270,7 +270,7 @@ impl WeightInfo for () { // Storage: `Crowdloan::AccountsPayable` (r:2 w:2) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn update_reward_address() -> Weight { - (Weight::from_parts(35_230_000, 0)) + (Weight::from_parts(35_020_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -283,7 +283,7 @@ impl WeightInfo for () { // Storage: `Crowdloan::AccountsPayable` (r:1 w:1) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn associate_native_identity() -> Weight { - (Weight::from_parts(118_950_000, 0)) + (Weight::from_parts(115_070_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -292,9 +292,9 @@ impl WeightInfo for () { // Storage: `Crowdloan::AccountsPayable` (r:2 w:2) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn change_association_with_relay_keys(x: u32, ) -> Weight { - (Weight::from_parts(43_061_678, 0)) - // Standard Error: 30_884 - .saturating_add((Weight::from_parts(67_301_911, 0)).saturating_mul(x as u64)) + (Weight::from_parts(22_606_472, 0)) + // Standard Error: 117_254 + .saturating_add((Weight::from_parts(62_758_102, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/pallet_fee_lock.rs b/runtime/mangata-kusama/src/weights/pallet_fee_lock.rs index bb48337f90..c3b7988d63 100644 --- a/runtime/mangata-kusama/src/weights/pallet_fee_lock.rs +++ b/runtime/mangata-kusama/src/weights/pallet_fee_lock.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_fee_lock //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -66,7 +66,7 @@ impl pallet_fee_lock::WeightInfo for ModuleWeight { // Storage: `FeeLock::FeeLockMetadata` (r:1 w:1) // Proof: `FeeLock::FeeLockMetadata` (`max_values`: Some(1), `max_size`: Some(438), added: 933, mode: `MaxEncodedLen`) fn update_fee_lock_metadata() -> Weight { - (Weight::from_parts(29_350_000, 0)) + (Weight::from_parts(28_480_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -81,7 +81,7 @@ impl pallet_fee_lock::WeightInfo for ModuleWeight { // Storage: `FeeLock::UnlockQueue` (r:1 w:1) // Proof: `FeeLock::UnlockQueue` (`max_values`: None, `max_size`: Some(56), added: 2531, mode: `MaxEncodedLen`) fn unlock_fee() -> Weight { - (Weight::from_parts(56_300_000, 0)) + (Weight::from_parts(56_480_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -92,7 +92,7 @@ impl WeightInfo for () { // Storage: `FeeLock::FeeLockMetadata` (r:1 w:1) // Proof: `FeeLock::FeeLockMetadata` (`max_values`: Some(1), `max_size`: Some(438), added: 933, mode: `MaxEncodedLen`) fn update_fee_lock_metadata() -> Weight { - (Weight::from_parts(29_350_000, 0)) + (Weight::from_parts(28_480_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -107,7 +107,7 @@ impl WeightInfo for () { // Storage: `FeeLock::UnlockQueue` (r:1 w:1) // Proof: `FeeLock::UnlockQueue` (`max_values`: None, `max_size`: Some(56), added: 2531, mode: `MaxEncodedLen`) fn unlock_fee() -> Weight { - (Weight::from_parts(56_300_000, 0)) + (Weight::from_parts(56_480_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/pallet_issuance.rs b/runtime/mangata-kusama/src/weights/pallet_issuance.rs index 6733396db0..780afe797b 100644 --- a/runtime/mangata-kusama/src/weights/pallet_issuance.rs +++ b/runtime/mangata-kusama/src/weights/pallet_issuance.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_issuance //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -71,14 +71,14 @@ impl pallet_issuance::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:0) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn init_issuance_config() -> Weight { - (Weight::from_parts(27_020_000, 0)) + (Weight::from_parts(27_420_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `Issuance::IsTGEFinalized` (r:1 w:1) // Proof: `Issuance::IsTGEFinalized` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn finalize_tge() -> Weight { - (Weight::from_parts(15_680_000, 0)) + (Weight::from_parts(16_590_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -97,9 +97,9 @@ impl pallet_issuance::WeightInfo for ModuleWeight { // Storage: `Issuance::TGETotal` (r:1 w:1) // Proof: `Issuance::TGETotal` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_tge(x: u32, ) -> Weight { - (Weight::from_parts(27_657_414, 0)) - // Standard Error: 41_711 - .saturating_add((Weight::from_parts(84_730_409, 0)).saturating_mul(x as u64)) + (Weight::from_parts(285_200_000, 0)) + // Standard Error: 142_818 + .saturating_add((Weight::from_parts(83_360_692, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads((4 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(2 as u64)) @@ -116,14 +116,14 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:0) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn init_issuance_config() -> Weight { - (Weight::from_parts(27_020_000, 0)) + (Weight::from_parts(27_420_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `Issuance::IsTGEFinalized` (r:1 w:1) // Proof: `Issuance::IsTGEFinalized` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn finalize_tge() -> Weight { - (Weight::from_parts(15_680_000, 0)) + (Weight::from_parts(16_590_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -142,9 +142,9 @@ impl WeightInfo for () { // Storage: `Issuance::TGETotal` (r:1 w:1) // Proof: `Issuance::TGETotal` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_tge(x: u32, ) -> Weight { - (Weight::from_parts(27_657_414, 0)) - // Standard Error: 41_711 - .saturating_add((Weight::from_parts(84_730_409, 0)).saturating_mul(x as u64)) + (Weight::from_parts(285_200_000, 0)) + // Standard Error: 142_818 + .saturating_add((Weight::from_parts(83_360_692, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().reads((4 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(2 as u64)) diff --git a/runtime/mangata-kusama/src/weights/pallet_multipurpose_liquidity.rs b/runtime/mangata-kusama/src/weights/pallet_multipurpose_liquidity.rs index fb624453d2..02d376e938 100644 --- a/runtime/mangata-kusama/src/weights/pallet_multipurpose_liquidity.rs +++ b/runtime/mangata-kusama/src/weights/pallet_multipurpose_liquidity.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_multipurpose_liquidity //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -76,7 +76,7 @@ impl pallet_multipurpose_liquidity::WeightInfo for Modu // Storage: `MultiPurposeLiquidity::RelockStatus` (r:1 w:1) // Proof: `MultiPurposeLiquidity::RelockStatus` (`max_values`: None, `max_size`: Some(1845), added: 4320, mode: `MaxEncodedLen`) fn reserve_vesting_liquidity_tokens() -> Weight { - (Weight::from_parts(129_510_000, 0)) + (Weight::from_parts(126_910_000, 0)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -91,7 +91,7 @@ impl pallet_multipurpose_liquidity::WeightInfo for Modu // Storage: `Tokens::Locks` (r:1 w:1) // Proof: `Tokens::Locks` (`max_values`: None, `max_size`: Some(1261), added: 3736, mode: `MaxEncodedLen`) fn unreserve_and_relock_instance() -> Weight { - (Weight::from_parts(125_040_000, 0)) + (Weight::from_parts(124_910_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -112,7 +112,7 @@ impl WeightInfo for () { // Storage: `MultiPurposeLiquidity::RelockStatus` (r:1 w:1) // Proof: `MultiPurposeLiquidity::RelockStatus` (`max_values`: None, `max_size`: Some(1845), added: 4320, mode: `MaxEncodedLen`) fn reserve_vesting_liquidity_tokens() -> Weight { - (Weight::from_parts(129_510_000, 0)) + (Weight::from_parts(126_910_000, 0)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } @@ -127,7 +127,7 @@ impl WeightInfo for () { // Storage: `Tokens::Locks` (r:1 w:1) // Proof: `Tokens::Locks` (`max_values`: None, `max_size`: Some(1261), added: 3736, mode: `MaxEncodedLen`) fn unreserve_and_relock_instance() -> Weight { - (Weight::from_parts(125_040_000, 0)) + (Weight::from_parts(124_910_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/pallet_proof_of_stake.rs b/runtime/mangata-kusama/src/weights/pallet_proof_of_stake.rs index 1db600cf2b..9de88c5528 100644 --- a/runtime/mangata-kusama/src/weights/pallet_proof_of_stake.rs +++ b/runtime/mangata-kusama/src/weights/pallet_proof_of_stake.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_proof_of_stake //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -76,7 +76,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `Tokens::Accounts` (r:2 w:2) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn claim_native_rewards() -> Weight { - (Weight::from_parts(95_260_000, 0)) + (Weight::from_parts(104_800_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -85,7 +85,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::PromotedPoolRewards` (r:1 w:1) // Proof: `ProofOfStake::PromotedPoolRewards` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn update_pool_promotion() -> Weight { - (Weight::from_parts(27_820_000, 0)) + (Weight::from_parts(27_720_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -100,7 +100,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn activate_liquidity_for_native_rewards() -> Weight { - (Weight::from_parts(108_610_000, 0)) + (Weight::from_parts(104_670_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -117,7 +117,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn deactivate_liquidity_for_native_rewards() -> Weight { - (Weight::from_parts(96_260_000, 0)) + (Weight::from_parts(94_510_000, 0)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -140,7 +140,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::RewardTokensPerPool` (r:0 w:1) // Proof: `ProofOfStake::RewardTokensPerPool` (`max_values`: None, `max_size`: None, mode: `Measured`) fn reward_pool() -> Weight { - (Weight::from_parts(138_580_000, 0)) + (Weight::from_parts(144_790_000, 0)) .saturating_add(T::DbWeight::get().reads(9 as u64)) .saturating_add(T::DbWeight::get().writes(7 as u64)) } @@ -161,7 +161,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::TotalActivatedLiquidityForSchedules` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidityForSchedules` (`max_values`: None, `max_size`: None, mode: `Measured`) fn activate_liquidity_for_3rdparty_rewards() -> Weight { - (Weight::from_parts(127_200_000, 0)) + (Weight::from_parts(129_000_000, 0)) .saturating_add(T::DbWeight::get().reads(9 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -184,7 +184,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::ActivatedNativeRewardsLiq` (r:1 w:1) // Proof: `ProofOfStake::ActivatedNativeRewardsLiq` (`max_values`: None, `max_size`: None, mode: `Measured`) fn deactivate_liquidity_for_3rdparty_rewards() -> Weight { - (Weight::from_parts(138_950_000, 0)) + (Weight::from_parts(137_490_000, 0)) .saturating_add(T::DbWeight::get().reads(11 as u64)) .saturating_add(T::DbWeight::get().writes(7 as u64)) } @@ -201,7 +201,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `Tokens::Accounts` (r:2 w:2) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn claim_3rdparty_rewards() -> Weight { - (Weight::from_parts(128_089_000, 0)) + (Weight::from_parts(142_210_000, 0)) .saturating_add(T::DbWeight::get().reads(8 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -216,7 +216,7 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:2 w:2) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn claim_native_rewards() -> Weight { - (Weight::from_parts(95_260_000, 0)) + (Weight::from_parts(104_800_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -225,7 +225,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::PromotedPoolRewards` (r:1 w:1) // Proof: `ProofOfStake::PromotedPoolRewards` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn update_pool_promotion() -> Weight { - (Weight::from_parts(27_820_000, 0)) + (Weight::from_parts(27_720_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -240,7 +240,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn activate_liquidity_for_native_rewards() -> Weight { - (Weight::from_parts(108_610_000, 0)) + (Weight::from_parts(104_670_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -257,7 +257,7 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn deactivate_liquidity_for_native_rewards() -> Weight { - (Weight::from_parts(96_260_000, 0)) + (Weight::from_parts(94_510_000, 0)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -280,7 +280,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::RewardTokensPerPool` (r:0 w:1) // Proof: `ProofOfStake::RewardTokensPerPool` (`max_values`: None, `max_size`: None, mode: `Measured`) fn reward_pool() -> Weight { - (Weight::from_parts(138_580_000, 0)) + (Weight::from_parts(144_790_000, 0)) .saturating_add(RocksDbWeight::get().reads(9 as u64)) .saturating_add(RocksDbWeight::get().writes(7 as u64)) } @@ -301,7 +301,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::TotalActivatedLiquidityForSchedules` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidityForSchedules` (`max_values`: None, `max_size`: None, mode: `Measured`) fn activate_liquidity_for_3rdparty_rewards() -> Weight { - (Weight::from_parts(127_200_000, 0)) + (Weight::from_parts(129_000_000, 0)) .saturating_add(RocksDbWeight::get().reads(9 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -324,7 +324,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::ActivatedNativeRewardsLiq` (r:1 w:1) // Proof: `ProofOfStake::ActivatedNativeRewardsLiq` (`max_values`: None, `max_size`: None, mode: `Measured`) fn deactivate_liquidity_for_3rdparty_rewards() -> Weight { - (Weight::from_parts(138_950_000, 0)) + (Weight::from_parts(137_490_000, 0)) .saturating_add(RocksDbWeight::get().reads(11 as u64)) .saturating_add(RocksDbWeight::get().writes(7 as u64)) } @@ -341,7 +341,7 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:2 w:2) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn claim_3rdparty_rewards() -> Weight { - (Weight::from_parts(128_089_000, 0)) + (Weight::from_parts(142_210_000, 0)) .saturating_add(RocksDbWeight::get().reads(8 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/pallet_session.rs b/runtime/mangata-kusama/src/weights/pallet_session.rs index aaef324970..d845ee7870 100644 --- a/runtime/mangata-kusama/src/weights/pallet_session.rs +++ b/runtime/mangata-kusama/src/weights/pallet_session.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_session //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -68,7 +68,7 @@ impl pallet_session::WeightInfo for ModuleWeight { // Storage: `Session::KeyOwner` (r:1 w:1) // Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_keys() -> Weight { - (Weight::from_parts(27_160_000, 0)) + (Weight::from_parts(28_720_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -77,7 +77,7 @@ impl pallet_session::WeightInfo for ModuleWeight { // Storage: `Session::KeyOwner` (r:0 w:1) // Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn purge_keys() -> Weight { - (Weight::from_parts(17_370_000, 0)) + (Weight::from_parts(18_130_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -90,7 +90,7 @@ impl WeightInfo for () { // Storage: `Session::KeyOwner` (r:1 w:1) // Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_keys() -> Weight { - (Weight::from_parts(27_160_000, 0)) + (Weight::from_parts(28_720_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -99,7 +99,7 @@ impl WeightInfo for () { // Storage: `Session::KeyOwner` (r:0 w:1) // Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn purge_keys() -> Weight { - (Weight::from_parts(17_370_000, 0)) + (Weight::from_parts(18_130_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/pallet_timestamp.rs b/runtime/mangata-kusama/src/weights/pallet_timestamp.rs index 324b0061c2..32bc7e1481 100644 --- a/runtime/mangata-kusama/src/weights/pallet_timestamp.rs +++ b/runtime/mangata-kusama/src/weights/pallet_timestamp.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_timestamp //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -66,12 +66,12 @@ impl pallet_timestamp::WeightInfo for ModuleWeight { // Storage: `Timestamp::Now` (r:1 w:1) // Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `MaxEncodedLen`) fn set() -> Weight { - (Weight::from_parts(10_160_000, 0)) + (Weight::from_parts(9_740_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } fn on_finalize() -> Weight { - (Weight::from_parts(5_500_000, 0)) + (Weight::from_parts(5_150_000, 0)) } } @@ -80,11 +80,11 @@ impl WeightInfo for () { // Storage: `Timestamp::Now` (r:1 w:1) // Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `MaxEncodedLen`) fn set() -> Weight { - (Weight::from_parts(10_160_000, 0)) + (Weight::from_parts(9_740_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } fn on_finalize() -> Weight { - (Weight::from_parts(5_500_000, 0)) + (Weight::from_parts(5_150_000, 0)) } } diff --git a/runtime/mangata-kusama/src/weights/pallet_treasury.rs b/runtime/mangata-kusama/src/weights/pallet_treasury.rs index 2da5497fb0..faa2e8a72b 100644 --- a/runtime/mangata-kusama/src/weights/pallet_treasury.rs +++ b/runtime/mangata-kusama/src/weights/pallet_treasury.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_treasury //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -77,7 +77,7 @@ impl pallet_treasury::WeightInfo for ModuleWeight { // Storage: `Treasury::Proposals` (r:0 w:1) // Proof: `Treasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn propose_spend() -> Weight { - (Weight::from_parts(44_560_000, 0)) + (Weight::from_parts(44_130_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -88,7 +88,7 @@ impl pallet_treasury::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn reject_proposal() -> Weight { - (Weight::from_parts(51_830_000, 0)) + (Weight::from_parts(52_489_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -97,16 +97,16 @@ impl pallet_treasury::WeightInfo for ModuleWeight { // Storage: `Treasury::Approvals` (r:1 w:1) // Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn approve_proposal(p: u32, ) -> Weight { - (Weight::from_parts(20_732_663, 0)) - // Standard Error: 2_050 - .saturating_add((Weight::from_parts(85_460, 0)).saturating_mul(p as u64)) + (Weight::from_parts(19_551_237, 0)) + // Standard Error: 1_811 + .saturating_add((Weight::from_parts(68_875, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `Treasury::Approvals` (r:1 w:1) // Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn remove_approval() -> Weight { - (Weight::from_parts(12_190_000, 0)) + (Weight::from_parts(12_580_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -121,9 +121,9 @@ impl pallet_treasury::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn on_initialize_proposals(p: u32, ) -> Weight { - (Weight::from_parts(39_555_286, 0)) - // Standard Error: 10_400 - .saturating_add((Weight::from_parts(4_437_275, 0)).saturating_mul(p as u64)) + (Weight::from_parts(39_451_729, 0)) + // Standard Error: 14_637 + .saturating_add((Weight::from_parts(4_433_389, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(T::DbWeight::get().writes(1 as u64)) @@ -142,7 +142,7 @@ impl WeightInfo for () { // Storage: `Treasury::Proposals` (r:0 w:1) // Proof: `Treasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn propose_spend() -> Weight { - (Weight::from_parts(44_560_000, 0)) + (Weight::from_parts(44_130_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -153,7 +153,7 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn reject_proposal() -> Weight { - (Weight::from_parts(51_830_000, 0)) + (Weight::from_parts(52_489_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -162,16 +162,16 @@ impl WeightInfo for () { // Storage: `Treasury::Approvals` (r:1 w:1) // Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn approve_proposal(p: u32, ) -> Weight { - (Weight::from_parts(20_732_663, 0)) - // Standard Error: 2_050 - .saturating_add((Weight::from_parts(85_460, 0)).saturating_mul(p as u64)) + (Weight::from_parts(19_551_237, 0)) + // Standard Error: 1_811 + .saturating_add((Weight::from_parts(68_875, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `Treasury::Approvals` (r:1 w:1) // Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn remove_approval() -> Weight { - (Weight::from_parts(12_190_000, 0)) + (Weight::from_parts(12_580_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -186,9 +186,9 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn on_initialize_proposals(p: u32, ) -> Weight { - (Weight::from_parts(39_555_286, 0)) - // Standard Error: 10_400 - .saturating_add((Weight::from_parts(4_437_275, 0)).saturating_mul(p as u64)) + (Weight::from_parts(39_451_729, 0)) + // Standard Error: 14_637 + .saturating_add((Weight::from_parts(4_433_389, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(RocksDbWeight::get().writes(1 as u64)) diff --git a/runtime/mangata-kusama/src/weights/pallet_utility_mangata.rs b/runtime/mangata-kusama/src/weights/pallet_utility_mangata.rs index aa823f2ccc..9008e85d14 100644 --- a/runtime/mangata-kusama/src/weights/pallet_utility_mangata.rs +++ b/runtime/mangata-kusama/src/weights/pallet_utility_mangata.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_utility_mangata //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -67,49 +67,49 @@ pub trait WeightInfo { pub struct ModuleWeight(PhantomData); impl pallet_utility_mangata::WeightInfo for ModuleWeight { fn batch(c: u32, ) -> Weight { - (Weight::from_parts(15_135_963, 0)) - // Standard Error: 5_453 - .saturating_add((Weight::from_parts(9_834_773, 0)).saturating_mul(c as u64)) + (Weight::from_parts(16_589_619, 0)) + // Standard Error: 16_418 + .saturating_add((Weight::from_parts(10_132_634, 0)).saturating_mul(c as u64)) } fn as_derivative() -> Weight { - (Weight::from_parts(9_310_000, 0)) + (Weight::from_parts(9_780_000, 0)) } fn batch_all(c: u32, ) -> Weight { - (Weight::from_parts(19_212_890, 0)) - // Standard Error: 5_692 - .saturating_add((Weight::from_parts(10_267_333, 0)).saturating_mul(c as u64)) + (Weight::from_parts(54_293_178, 0)) + // Standard Error: 22_178 + .saturating_add((Weight::from_parts(10_507_277, 0)).saturating_mul(c as u64)) } fn dispatch_as() -> Weight { - (Weight::from_parts(16_010_000, 0)) + (Weight::from_parts(16_940_000, 0)) } fn force_batch(c: u32, ) -> Weight { - (Weight::from_parts(9_766_534, 0)) - // Standard Error: 4_956 - .saturating_add((Weight::from_parts(9_840_630, 0)).saturating_mul(c as u64)) + (Weight::from_parts(24_129_155, 0)) + // Standard Error: 21_663 + .saturating_add((Weight::from_parts(10_054_761, 0)).saturating_mul(c as u64)) } } // For backwards compatibility and tests impl WeightInfo for () { fn batch(c: u32, ) -> Weight { - (Weight::from_parts(15_135_963, 0)) - // Standard Error: 5_453 - .saturating_add((Weight::from_parts(9_834_773, 0)).saturating_mul(c as u64)) + (Weight::from_parts(16_589_619, 0)) + // Standard Error: 16_418 + .saturating_add((Weight::from_parts(10_132_634, 0)).saturating_mul(c as u64)) } fn as_derivative() -> Weight { - (Weight::from_parts(9_310_000, 0)) + (Weight::from_parts(9_780_000, 0)) } fn batch_all(c: u32, ) -> Weight { - (Weight::from_parts(19_212_890, 0)) - // Standard Error: 5_692 - .saturating_add((Weight::from_parts(10_267_333, 0)).saturating_mul(c as u64)) + (Weight::from_parts(54_293_178, 0)) + // Standard Error: 22_178 + .saturating_add((Weight::from_parts(10_507_277, 0)).saturating_mul(c as u64)) } fn dispatch_as() -> Weight { - (Weight::from_parts(16_010_000, 0)) + (Weight::from_parts(16_940_000, 0)) } fn force_batch(c: u32, ) -> Weight { - (Weight::from_parts(9_766_534, 0)) - // Standard Error: 4_956 - .saturating_add((Weight::from_parts(9_840_630, 0)).saturating_mul(c as u64)) + (Weight::from_parts(24_129_155, 0)) + // Standard Error: 21_663 + .saturating_add((Weight::from_parts(10_054_761, 0)).saturating_mul(c as u64)) } } diff --git a/runtime/mangata-kusama/src/weights/pallet_vesting_mangata.rs b/runtime/mangata-kusama/src/weights/pallet_vesting_mangata.rs index 2c2a264c8b..af61cc2605 100644 --- a/runtime/mangata-kusama/src/weights/pallet_vesting_mangata.rs +++ b/runtime/mangata-kusama/src/weights/pallet_vesting_mangata.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_vesting_mangata //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -75,9 +75,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_locked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(52_228_571, 0)) - // Standard Error: 8_055 - .saturating_add((Weight::from_parts(206_853, 0)).saturating_mul(s as u64)) + (Weight::from_parts(51_130_831, 0)) + // Standard Error: 7_700 + .saturating_add((Weight::from_parts(172_452, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -88,9 +88,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_unlocked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(71_402_147, 0)) - // Standard Error: 6_446 - .saturating_add((Weight::from_parts(66_709, 0)).saturating_mul(s as u64)) + (Weight::from_parts(68_202_729, 0)) + // Standard Error: 5_640 + .saturating_add((Weight::from_parts(47_460, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -101,9 +101,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_other_locked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(53_787_351, 0)) - // Standard Error: 7_464 - .saturating_add((Weight::from_parts(191_496, 0)).saturating_mul(s as u64)) + (Weight::from_parts(51_573_992, 0)) + // Standard Error: 8_829 + .saturating_add((Weight::from_parts(180_014, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -116,9 +116,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn vest_other_unlocked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(71_275_743, 0)) - // Standard Error: 5_157 - .saturating_add((Weight::from_parts(106_569, 0)).saturating_mul(s as u64)) + (Weight::from_parts(67_659_964, 0)) + // Standard Error: 5_412 + .saturating_add((Weight::from_parts(87_102, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -131,9 +131,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Locks` (r:1 w:0) // Proof: `Tokens::Locks` (`max_values`: None, `max_size`: Some(1261), added: 3736, mode: `MaxEncodedLen`) fn force_vested_transfer(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(88_311_404, 0)) - // Standard Error: 15_390 - .saturating_add((Weight::from_parts(318_758, 0)).saturating_mul(s as u64)) + (Weight::from_parts(91_681_958, 0)) + // Standard Error: 15_906 + .saturating_add((Weight::from_parts(192_751, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -144,9 +144,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn not_unlocking_merge_schedules(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(54_096_909, 0)) - // Standard Error: 7_648 - .saturating_add((Weight::from_parts(202_308, 0)).saturating_mul(s as u64)) + (Weight::from_parts(51_621_276, 0)) + // Standard Error: 8_937 + .saturating_add((Weight::from_parts(187_029, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -157,9 +157,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn unlocking_merge_schedules(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(52_663_896, 0)) - // Standard Error: 12_392 - .saturating_add((Weight::from_parts(305_851, 0)).saturating_mul(s as u64)) + (Weight::from_parts(51_823_056, 0)) + // Standard Error: 15_260 + .saturating_add((Weight::from_parts(266_865, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -174,9 +174,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_locked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(52_228_571, 0)) - // Standard Error: 8_055 - .saturating_add((Weight::from_parts(206_853, 0)).saturating_mul(s as u64)) + (Weight::from_parts(51_130_831, 0)) + // Standard Error: 7_700 + .saturating_add((Weight::from_parts(172_452, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -187,9 +187,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_unlocked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(71_402_147, 0)) - // Standard Error: 6_446 - .saturating_add((Weight::from_parts(66_709, 0)).saturating_mul(s as u64)) + (Weight::from_parts(68_202_729, 0)) + // Standard Error: 5_640 + .saturating_add((Weight::from_parts(47_460, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -200,9 +200,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_other_locked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(53_787_351, 0)) - // Standard Error: 7_464 - .saturating_add((Weight::from_parts(191_496, 0)).saturating_mul(s as u64)) + (Weight::from_parts(51_573_992, 0)) + // Standard Error: 8_829 + .saturating_add((Weight::from_parts(180_014, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -215,9 +215,9 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn vest_other_unlocked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(71_275_743, 0)) - // Standard Error: 5_157 - .saturating_add((Weight::from_parts(106_569, 0)).saturating_mul(s as u64)) + (Weight::from_parts(67_659_964, 0)) + // Standard Error: 5_412 + .saturating_add((Weight::from_parts(87_102, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -230,9 +230,9 @@ impl WeightInfo for () { // Storage: `Tokens::Locks` (r:1 w:0) // Proof: `Tokens::Locks` (`max_values`: None, `max_size`: Some(1261), added: 3736, mode: `MaxEncodedLen`) fn force_vested_transfer(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(88_311_404, 0)) - // Standard Error: 15_390 - .saturating_add((Weight::from_parts(318_758, 0)).saturating_mul(s as u64)) + (Weight::from_parts(91_681_958, 0)) + // Standard Error: 15_906 + .saturating_add((Weight::from_parts(192_751, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -243,9 +243,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn not_unlocking_merge_schedules(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(54_096_909, 0)) - // Standard Error: 7_648 - .saturating_add((Weight::from_parts(202_308, 0)).saturating_mul(s as u64)) + (Weight::from_parts(51_621_276, 0)) + // Standard Error: 8_937 + .saturating_add((Weight::from_parts(187_029, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -256,9 +256,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn unlocking_merge_schedules(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(52_663_896, 0)) - // Standard Error: 12_392 - .saturating_add((Weight::from_parts(305_851, 0)).saturating_mul(s as u64)) + (Weight::from_parts(51_823_056, 0)) + // Standard Error: 15_260 + .saturating_add((Weight::from_parts(266_865, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/pallet_xyk.rs b/runtime/mangata-kusama/src/weights/pallet_xyk.rs index c01a4dc543..f01d0c1e92 100644 --- a/runtime/mangata-kusama/src/weights/pallet_xyk.rs +++ b/runtime/mangata-kusama/src/weights/pallet_xyk.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_xyk //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -90,7 +90,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `Xyk::LiquidityPools` (r:0 w:1) // Proof: `Xyk::LiquidityPools` (`max_values`: None, `max_size`: Some(41), added: 2516, mode: `MaxEncodedLen`) fn create_pool() -> Weight { - (Weight::from_parts(199_390_000, 0)) + (Weight::from_parts(204_890_000, 0)) .saturating_add(T::DbWeight::get().reads(14 as u64)) .saturating_add(T::DbWeight::get().writes(12 as u64)) } @@ -109,7 +109,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn sell_asset() -> Weight { - (Weight::from_parts(248_910_000, 0)) + (Weight::from_parts(244_050_000, 0)) .saturating_add(T::DbWeight::get().reads(16 as u64)) .saturating_add(T::DbWeight::get().writes(9 as u64)) } @@ -128,9 +128,9 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn multiswap_sell_asset(x: u32, ) -> Weight { - (Weight::from_parts(667_830_000, 0)) - // Standard Error: 466_722 - .saturating_add((Weight::from_parts(275_656_523, 0)).saturating_mul(x as u64)) + (Weight::from_parts(633_020_000, 0)) + // Standard Error: 494_601 + .saturating_add((Weight::from_parts(276_447_721, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(29 as u64)) .saturating_add(T::DbWeight::get().reads((10 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(1 as u64)) @@ -151,7 +151,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn buy_asset() -> Weight { - (Weight::from_parts(250_150_000, 0)) + (Weight::from_parts(235_960_000, 0)) .saturating_add(T::DbWeight::get().reads(18 as u64)) .saturating_add(T::DbWeight::get().writes(9 as u64)) } @@ -170,9 +170,9 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn multiswap_buy_asset(x: u32, ) -> Weight { - (Weight::from_parts(699_650_000, 0)) - // Standard Error: 522_058 - .saturating_add((Weight::from_parts(291_694_576, 0)).saturating_mul(x as u64)) + (Weight::from_parts(708_340_000, 0)) + // Standard Error: 591_581 + .saturating_add((Weight::from_parts(290_419_235, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(29 as u64)) .saturating_add(T::DbWeight::get().reads((10 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(1 as u64)) @@ -199,7 +199,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn mint_liquidity() -> Weight { - (Weight::from_parts(243_100_000, 0)) + (Weight::from_parts(244_540_000, 0)) .saturating_add(T::DbWeight::get().reads(15 as u64)) .saturating_add(T::DbWeight::get().writes(10 as u64)) } @@ -220,7 +220,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `Tokens::NextCurrencyId` (r:1 w:0) // Proof: `Tokens::NextCurrencyId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) fn mint_liquidity_using_vesting_native_tokens() -> Weight { - (Weight::from_parts(277_850_000, 0)) + (Weight::from_parts(276_260_000, 0)) .saturating_add(T::DbWeight::get().reads(14 as u64)) .saturating_add(T::DbWeight::get().writes(11 as u64)) } @@ -245,7 +245,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn burn_liquidity() -> Weight { - (Weight::from_parts(225_400_000, 0)) + (Weight::from_parts(224_350_000, 0)) .saturating_add(T::DbWeight::get().reads(15 as u64)) .saturating_add(T::DbWeight::get().writes(10 as u64)) } @@ -270,7 +270,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `ProofOfStake::PromotedPoolRewards` (r:1 w:0) // Proof: `ProofOfStake::PromotedPoolRewards` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn provide_liquidity_with_conversion() -> Weight { - (Weight::from_parts(392_480_000, 0)) + (Weight::from_parts(395_590_000, 0)) .saturating_add(T::DbWeight::get().reads(22 as u64)) .saturating_add(T::DbWeight::get().writes(11 as u64)) } @@ -301,7 +301,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn compound_rewards() -> Weight { - (Weight::from_parts(553_720_000, 0)) + (Weight::from_parts(554_980_000, 0)) .saturating_add(T::DbWeight::get().reads(25 as u64)) .saturating_add(T::DbWeight::get().writes(16 as u64)) } @@ -328,7 +328,7 @@ impl WeightInfo for () { // Storage: `Xyk::LiquidityPools` (r:0 w:1) // Proof: `Xyk::LiquidityPools` (`max_values`: None, `max_size`: Some(41), added: 2516, mode: `MaxEncodedLen`) fn create_pool() -> Weight { - (Weight::from_parts(199_390_000, 0)) + (Weight::from_parts(204_890_000, 0)) .saturating_add(RocksDbWeight::get().reads(14 as u64)) .saturating_add(RocksDbWeight::get().writes(12 as u64)) } @@ -347,7 +347,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn sell_asset() -> Weight { - (Weight::from_parts(248_910_000, 0)) + (Weight::from_parts(244_050_000, 0)) .saturating_add(RocksDbWeight::get().reads(16 as u64)) .saturating_add(RocksDbWeight::get().writes(9 as u64)) } @@ -366,9 +366,9 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn multiswap_sell_asset(x: u32, ) -> Weight { - (Weight::from_parts(667_830_000, 0)) - // Standard Error: 466_722 - .saturating_add((Weight::from_parts(275_656_523, 0)).saturating_mul(x as u64)) + (Weight::from_parts(633_020_000, 0)) + // Standard Error: 494_601 + .saturating_add((Weight::from_parts(276_447_721, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(29 as u64)) .saturating_add(RocksDbWeight::get().reads((10 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(1 as u64)) @@ -389,7 +389,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn buy_asset() -> Weight { - (Weight::from_parts(250_150_000, 0)) + (Weight::from_parts(235_960_000, 0)) .saturating_add(RocksDbWeight::get().reads(18 as u64)) .saturating_add(RocksDbWeight::get().writes(9 as u64)) } @@ -408,9 +408,9 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn multiswap_buy_asset(x: u32, ) -> Weight { - (Weight::from_parts(699_650_000, 0)) - // Standard Error: 522_058 - .saturating_add((Weight::from_parts(291_694_576, 0)).saturating_mul(x as u64)) + (Weight::from_parts(708_340_000, 0)) + // Standard Error: 591_581 + .saturating_add((Weight::from_parts(290_419_235, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(29 as u64)) .saturating_add(RocksDbWeight::get().reads((10 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(1 as u64)) @@ -437,7 +437,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn mint_liquidity() -> Weight { - (Weight::from_parts(243_100_000, 0)) + (Weight::from_parts(244_540_000, 0)) .saturating_add(RocksDbWeight::get().reads(15 as u64)) .saturating_add(RocksDbWeight::get().writes(10 as u64)) } @@ -458,7 +458,7 @@ impl WeightInfo for () { // Storage: `Tokens::NextCurrencyId` (r:1 w:0) // Proof: `Tokens::NextCurrencyId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) fn mint_liquidity_using_vesting_native_tokens() -> Weight { - (Weight::from_parts(277_850_000, 0)) + (Weight::from_parts(276_260_000, 0)) .saturating_add(RocksDbWeight::get().reads(14 as u64)) .saturating_add(RocksDbWeight::get().writes(11 as u64)) } @@ -483,7 +483,7 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn burn_liquidity() -> Weight { - (Weight::from_parts(225_400_000, 0)) + (Weight::from_parts(224_350_000, 0)) .saturating_add(RocksDbWeight::get().reads(15 as u64)) .saturating_add(RocksDbWeight::get().writes(10 as u64)) } @@ -508,7 +508,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::PromotedPoolRewards` (r:1 w:0) // Proof: `ProofOfStake::PromotedPoolRewards` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn provide_liquidity_with_conversion() -> Weight { - (Weight::from_parts(392_480_000, 0)) + (Weight::from_parts(395_590_000, 0)) .saturating_add(RocksDbWeight::get().reads(22 as u64)) .saturating_add(RocksDbWeight::get().writes(11 as u64)) } @@ -539,7 +539,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn compound_rewards() -> Weight { - (Weight::from_parts(553_720_000, 0)) + (Weight::from_parts(554_980_000, 0)) .saturating_add(RocksDbWeight::get().reads(25 as u64)) .saturating_add(RocksDbWeight::get().writes(16 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/parachain_staking.rs b/runtime/mangata-kusama/src/weights/parachain_staking.rs index 44a260862d..a28875dae0 100644 --- a/runtime/mangata-kusama/src/weights/parachain_staking.rs +++ b/runtime/mangata-kusama/src/weights/parachain_staking.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for parachain_staking //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -99,14 +99,14 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::TotalSelected` (r:1 w:1) // Proof: `ParachainStaking::TotalSelected` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_total_selected() -> Weight { - (Weight::from_parts(17_680_000, 0)) + (Weight::from_parts(16_930_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::CollatorCommission` (r:1 w:1) // Proof: `ParachainStaking::CollatorCommission` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_collator_commission() -> Weight { - (Weight::from_parts(17_940_000, 0)) + (Weight::from_parts(17_340_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -133,11 +133,11 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn join_candidates(x: u32, y: u32, ) -> Weight { - (Weight::from_parts(137_856_969, 0)) - // Standard Error: 10_690 - .saturating_add((Weight::from_parts(54_293, 0)).saturating_mul(x as u64)) - // Standard Error: 10_560 - .saturating_add((Weight::from_parts(250_971, 0)).saturating_mul(y as u64)) + (Weight::from_parts(119_544_784, 0)) + // Standard Error: 9_354 + .saturating_add((Weight::from_parts(150_604, 0)).saturating_mul(x as u64)) + // Standard Error: 9_240 + .saturating_add((Weight::from_parts(199_000, 0)).saturating_mul(y as u64)) .saturating_add(T::DbWeight::get().reads(11 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -148,9 +148,9 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(40_338_257, 0)) - // Standard Error: 1_750 - .saturating_add((Weight::from_parts(120_947, 0)).saturating_mul(x as u64)) + (Weight::from_parts(37_830_404, 0)) + // Standard Error: 2_680 + .saturating_add((Weight::from_parts(123_243, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -169,9 +169,9 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(55_041_628, 0)) - // Standard Error: 71_941 - .saturating_add((Weight::from_parts(33_725_614, 0)).saturating_mul(x as u64)) + (Weight::from_parts(66_566_597, 0)) + // Standard Error: 102_929 + .saturating_add((Weight::from_parts(31_808_468, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(1 as u64)) @@ -182,9 +182,9 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn cancel_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(37_974_600, 0)) - // Standard Error: 2_474 - .saturating_add((Weight::from_parts(162_792, 0)).saturating_mul(x as u64)) + (Weight::from_parts(36_344_898, 0)) + // Standard Error: 2_734 + .saturating_add((Weight::from_parts(125_362, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -195,7 +195,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn go_offline() -> Weight { - (Weight::from_parts(38_770_000, 0)) + (Weight::from_parts(36_640_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -206,7 +206,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn go_online() -> Weight { - (Weight::from_parts(37_660_000, 0)) + (Weight::from_parts(34_930_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -219,7 +219,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_candidate_bond_more() -> Weight { - (Weight::from_parts(55_400_000, 0)) + (Weight::from_parts(54_580_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -234,7 +234,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_candidate_bond_less() -> Weight { - (Weight::from_parts(58_400_000, 0)) + (Weight::from_parts(56_670_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -251,7 +251,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_candidate_bond_more() -> Weight { - (Weight::from_parts(110_429_000, 0)) + (Weight::from_parts(107_800_000, 0)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -268,21 +268,21 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_candidate_bond_less() -> Weight { - (Weight::from_parts(114_750_000, 0)) + (Weight::from_parts(101_800_000, 0)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } // Storage: `ParachainStaking::CandidateState` (r:1 w:1) // Proof: `ParachainStaking::CandidateState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_candidate_bond_more() -> Weight { - (Weight::from_parts(29_840_000, 0)) + (Weight::from_parts(29_240_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::CandidateState` (r:1 w:1) // Proof: `ParachainStaking::CandidateState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_candidate_bond_less() -> Weight { - (Weight::from_parts(29_020_000, 0)) + (Weight::from_parts(29_070_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -307,11 +307,11 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn delegate(x: u32, y: u32, ) -> Weight { - (Weight::from_parts(129_602_188, 0)) - // Standard Error: 14_617 - .saturating_add((Weight::from_parts(374_311, 0)).saturating_mul(x as u64)) - // Standard Error: 14_125 - .saturating_add((Weight::from_parts(285_577, 0)).saturating_mul(y as u64)) + (Weight::from_parts(126_212_793, 0)) + // Standard Error: 20_241 + .saturating_add((Weight::from_parts(152_166, 0)).saturating_mul(x as u64)) + // Standard Error: 19_560 + .saturating_add((Weight::from_parts(281_095, 0)).saturating_mul(y as u64)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -320,7 +320,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_leave_delegators() -> Weight { - (Weight::from_parts(32_130_000, 0)) + (Weight::from_parts(30_220_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -339,9 +339,9 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_leave_delegators(x: u32, ) -> Weight { - (Weight::from_parts(48_642_851, 0)) - // Standard Error: 49_475 - .saturating_add((Weight::from_parts(37_310_539, 0)).saturating_mul(x as u64)) + (Weight::from_parts(35_710_474, 0)) + // Standard Error: 117_122 + .saturating_add((Weight::from_parts(39_255_172, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(4 as u64)) @@ -350,7 +350,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_leave_delegators() -> Weight { - (Weight::from_parts(29_950_000, 0)) + (Weight::from_parts(29_140_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -359,7 +359,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_revoke_delegation() -> Weight { - (Weight::from_parts(33_430_000, 0)) + (Weight::from_parts(32_850_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -372,7 +372,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_delegator_bond_more() -> Weight { - (Weight::from_parts(56_820_000, 0)) + (Weight::from_parts(52_540_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -381,7 +381,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_delegator_bond_less() -> Weight { - (Weight::from_parts(33_840_000, 0)) + (Weight::from_parts(30_900_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -400,7 +400,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_revoke_delegation() -> Weight { - (Weight::from_parts(117_960_000, 0)) + (Weight::from_parts(114_340_000, 0)) .saturating_add(T::DbWeight::get().reads(7 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -419,7 +419,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_delegator_bond_more() -> Weight { - (Weight::from_parts(111_750_000, 0)) + (Weight::from_parts(126_549_000, 0)) .saturating_add(T::DbWeight::get().reads(7 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -438,28 +438,28 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_delegator_bond_less() -> Weight { - (Weight::from_parts(102_249_000, 0)) + (Weight::from_parts(105_030_000, 0)) .saturating_add(T::DbWeight::get().reads(7 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_revoke_delegation() -> Weight { - (Weight::from_parts(30_910_000, 0)) + (Weight::from_parts(28_749_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_delegator_bond_more() -> Weight { - (Weight::from_parts(38_250_000, 0)) + (Weight::from_parts(49_820_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_delegator_bond_less() -> Weight { - (Weight::from_parts(36_500_000, 0)) + (Weight::from_parts(37_670_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -468,18 +468,18 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::StakingLiquidityTokens` (r:1 w:1) // Proof: `ParachainStaking::StakingLiquidityTokens` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn add_staking_liquidity_token(x: u32, ) -> Weight { - (Weight::from_parts(28_450_974, 0)) - // Standard Error: 2_583 - .saturating_add((Weight::from_parts(183_334, 0)).saturating_mul(x as u64)) + (Weight::from_parts(26_409_191, 0)) + // Standard Error: 2_820 + .saturating_add((Weight::from_parts(165_180, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::StakingLiquidityTokens` (r:1 w:1) // Proof: `ParachainStaking::StakingLiquidityTokens` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn remove_staking_liquidity_token(x: u32, ) -> Weight { - (Weight::from_parts(20_929_979, 0)) - // Standard Error: 1_978 - .saturating_add((Weight::from_parts(164_139, 0)).saturating_mul(x as u64)) + (Weight::from_parts(20_007_922, 0)) + // Standard Error: 2_592 + .saturating_add((Weight::from_parts(136_166, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -492,7 +492,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidateAggregator` (r:1 w:1) // Proof: `ParachainStaking::CandidateAggregator` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn aggregator_update_metadata() -> Weight { - (Weight::from_parts(1_848_791_000, 0)) + (Weight::from_parts(1_661_170_000, 0)) .saturating_add(T::DbWeight::get().reads(102 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -503,7 +503,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::AggregatorMetadata` (r:2 w:2) // Proof: `ParachainStaking::AggregatorMetadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn update_candidate_aggregator() -> Weight { - (Weight::from_parts(115_850_000, 0)) + (Weight::from_parts(109_320_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -514,7 +514,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `System::Account` (r:32 w:31) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn payout_collator_rewards() -> Weight { - (Weight::from_parts(1_467_880_000, 0)) + (Weight::from_parts(1_510_580_000, 0)) .saturating_add(T::DbWeight::get().reads(66 as u64)) .saturating_add(T::DbWeight::get().writes(64 as u64)) } @@ -525,14 +525,14 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `System::Account` (r:2 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn payout_delegator_reward() -> Weight { - (Weight::from_parts(80_870_000, 0)) + (Weight::from_parts(82_730_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn passive_session_change() -> Weight { - (Weight::from_parts(7_731_000, 0)) + (Weight::from_parts(7_930_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) } // Storage: `ParachainStaking::Round` (r:1 w:1) @@ -592,13 +592,13 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `Session::Validators` (r:0 w:1) // Proof: `Session::Validators` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn active_session_change(x: u32, y: u32, z: u32, ) -> Weight { - (Weight::from_parts(1_777_645_058, 0)) - // Standard Error: 88_477 - .saturating_add((Weight::from_parts(20_456_178, 0)).saturating_mul(x as u64)) - // Standard Error: 181_445 - .saturating_add((Weight::from_parts(7_543_266, 0)).saturating_mul(y as u64)) - // Standard Error: 314_285 - .saturating_add((Weight::from_parts(46_189_568, 0)).saturating_mul(z as u64)) + (Weight::from_parts(1_742_061_893, 0)) + // Standard Error: 91_439 + .saturating_add((Weight::from_parts(19_003_727, 0)).saturating_mul(x as u64)) + // Standard Error: 187_519 + .saturating_add((Weight::from_parts(7_513_684, 0)).saturating_mul(y as u64)) + // Standard Error: 324_806 + .saturating_add((Weight::from_parts(39_182_626, 0)).saturating_mul(z as u64)) .saturating_add(T::DbWeight::get().reads(224 as u64)) .saturating_add(T::DbWeight::get().reads((4 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(219 as u64)) @@ -610,14 +610,14 @@ impl WeightInfo for () { // Storage: `ParachainStaking::TotalSelected` (r:1 w:1) // Proof: `ParachainStaking::TotalSelected` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_total_selected() -> Weight { - (Weight::from_parts(17_680_000, 0)) + (Weight::from_parts(16_930_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::CollatorCommission` (r:1 w:1) // Proof: `ParachainStaking::CollatorCommission` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_collator_commission() -> Weight { - (Weight::from_parts(17_940_000, 0)) + (Weight::from_parts(17_340_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -644,11 +644,11 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn join_candidates(x: u32, y: u32, ) -> Weight { - (Weight::from_parts(137_856_969, 0)) - // Standard Error: 10_690 - .saturating_add((Weight::from_parts(54_293, 0)).saturating_mul(x as u64)) - // Standard Error: 10_560 - .saturating_add((Weight::from_parts(250_971, 0)).saturating_mul(y as u64)) + (Weight::from_parts(119_544_784, 0)) + // Standard Error: 9_354 + .saturating_add((Weight::from_parts(150_604, 0)).saturating_mul(x as u64)) + // Standard Error: 9_240 + .saturating_add((Weight::from_parts(199_000, 0)).saturating_mul(y as u64)) .saturating_add(RocksDbWeight::get().reads(11 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } @@ -659,9 +659,9 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(40_338_257, 0)) - // Standard Error: 1_750 - .saturating_add((Weight::from_parts(120_947, 0)).saturating_mul(x as u64)) + (Weight::from_parts(37_830_404, 0)) + // Standard Error: 2_680 + .saturating_add((Weight::from_parts(123_243, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -680,9 +680,9 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(55_041_628, 0)) - // Standard Error: 71_941 - .saturating_add((Weight::from_parts(33_725_614, 0)).saturating_mul(x as u64)) + (Weight::from_parts(66_566_597, 0)) + // Standard Error: 102_929 + .saturating_add((Weight::from_parts(31_808_468, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().reads((3 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(1 as u64)) @@ -693,9 +693,9 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn cancel_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(37_974_600, 0)) - // Standard Error: 2_474 - .saturating_add((Weight::from_parts(162_792, 0)).saturating_mul(x as u64)) + (Weight::from_parts(36_344_898, 0)) + // Standard Error: 2_734 + .saturating_add((Weight::from_parts(125_362, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -706,7 +706,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn go_offline() -> Weight { - (Weight::from_parts(38_770_000, 0)) + (Weight::from_parts(36_640_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -717,7 +717,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn go_online() -> Weight { - (Weight::from_parts(37_660_000, 0)) + (Weight::from_parts(34_930_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -730,7 +730,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_candidate_bond_more() -> Weight { - (Weight::from_parts(55_400_000, 0)) + (Weight::from_parts(54_580_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -745,7 +745,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_candidate_bond_less() -> Weight { - (Weight::from_parts(58_400_000, 0)) + (Weight::from_parts(56_670_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -762,7 +762,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_candidate_bond_more() -> Weight { - (Weight::from_parts(110_429_000, 0)) + (Weight::from_parts(107_800_000, 0)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } @@ -779,21 +779,21 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_candidate_bond_less() -> Weight { - (Weight::from_parts(114_750_000, 0)) + (Weight::from_parts(101_800_000, 0)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } // Storage: `ParachainStaking::CandidateState` (r:1 w:1) // Proof: `ParachainStaking::CandidateState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_candidate_bond_more() -> Weight { - (Weight::from_parts(29_840_000, 0)) + (Weight::from_parts(29_240_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::CandidateState` (r:1 w:1) // Proof: `ParachainStaking::CandidateState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_candidate_bond_less() -> Weight { - (Weight::from_parts(29_020_000, 0)) + (Weight::from_parts(29_070_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -818,11 +818,11 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn delegate(x: u32, y: u32, ) -> Weight { - (Weight::from_parts(129_602_188, 0)) - // Standard Error: 14_617 - .saturating_add((Weight::from_parts(374_311, 0)).saturating_mul(x as u64)) - // Standard Error: 14_125 - .saturating_add((Weight::from_parts(285_577, 0)).saturating_mul(y as u64)) + (Weight::from_parts(126_212_793, 0)) + // Standard Error: 20_241 + .saturating_add((Weight::from_parts(152_166, 0)).saturating_mul(x as u64)) + // Standard Error: 19_560 + .saturating_add((Weight::from_parts(281_095, 0)).saturating_mul(y as u64)) .saturating_add(RocksDbWeight::get().reads(10 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -831,7 +831,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_leave_delegators() -> Weight { - (Weight::from_parts(32_130_000, 0)) + (Weight::from_parts(30_220_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -850,9 +850,9 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_leave_delegators(x: u32, ) -> Weight { - (Weight::from_parts(48_642_851, 0)) - // Standard Error: 49_475 - .saturating_add((Weight::from_parts(37_310_539, 0)).saturating_mul(x as u64)) + (Weight::from_parts(35_710_474, 0)) + // Standard Error: 117_122 + .saturating_add((Weight::from_parts(39_255_172, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(4 as u64)) @@ -861,7 +861,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_leave_delegators() -> Weight { - (Weight::from_parts(29_950_000, 0)) + (Weight::from_parts(29_140_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -870,7 +870,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_revoke_delegation() -> Weight { - (Weight::from_parts(33_430_000, 0)) + (Weight::from_parts(32_850_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -883,7 +883,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_delegator_bond_more() -> Weight { - (Weight::from_parts(56_820_000, 0)) + (Weight::from_parts(52_540_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -892,7 +892,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_delegator_bond_less() -> Weight { - (Weight::from_parts(33_840_000, 0)) + (Weight::from_parts(30_900_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -911,7 +911,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_revoke_delegation() -> Weight { - (Weight::from_parts(117_960_000, 0)) + (Weight::from_parts(114_340_000, 0)) .saturating_add(RocksDbWeight::get().reads(7 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -930,7 +930,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_delegator_bond_more() -> Weight { - (Weight::from_parts(111_750_000, 0)) + (Weight::from_parts(126_549_000, 0)) .saturating_add(RocksDbWeight::get().reads(7 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -949,28 +949,28 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_delegator_bond_less() -> Weight { - (Weight::from_parts(102_249_000, 0)) + (Weight::from_parts(105_030_000, 0)) .saturating_add(RocksDbWeight::get().reads(7 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_revoke_delegation() -> Weight { - (Weight::from_parts(30_910_000, 0)) + (Weight::from_parts(28_749_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_delegator_bond_more() -> Weight { - (Weight::from_parts(38_250_000, 0)) + (Weight::from_parts(49_820_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_delegator_bond_less() -> Weight { - (Weight::from_parts(36_500_000, 0)) + (Weight::from_parts(37_670_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -979,18 +979,18 @@ impl WeightInfo for () { // Storage: `ParachainStaking::StakingLiquidityTokens` (r:1 w:1) // Proof: `ParachainStaking::StakingLiquidityTokens` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn add_staking_liquidity_token(x: u32, ) -> Weight { - (Weight::from_parts(28_450_974, 0)) - // Standard Error: 2_583 - .saturating_add((Weight::from_parts(183_334, 0)).saturating_mul(x as u64)) + (Weight::from_parts(26_409_191, 0)) + // Standard Error: 2_820 + .saturating_add((Weight::from_parts(165_180, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::StakingLiquidityTokens` (r:1 w:1) // Proof: `ParachainStaking::StakingLiquidityTokens` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn remove_staking_liquidity_token(x: u32, ) -> Weight { - (Weight::from_parts(20_929_979, 0)) - // Standard Error: 1_978 - .saturating_add((Weight::from_parts(164_139, 0)).saturating_mul(x as u64)) + (Weight::from_parts(20_007_922, 0)) + // Standard Error: 2_592 + .saturating_add((Weight::from_parts(136_166, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -1003,7 +1003,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidateAggregator` (r:1 w:1) // Proof: `ParachainStaking::CandidateAggregator` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn aggregator_update_metadata() -> Weight { - (Weight::from_parts(1_848_791_000, 0)) + (Weight::from_parts(1_661_170_000, 0)) .saturating_add(RocksDbWeight::get().reads(102 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -1014,7 +1014,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::AggregatorMetadata` (r:2 w:2) // Proof: `ParachainStaking::AggregatorMetadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn update_candidate_aggregator() -> Weight { - (Weight::from_parts(115_850_000, 0)) + (Weight::from_parts(109_320_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -1025,7 +1025,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:32 w:31) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn payout_collator_rewards() -> Weight { - (Weight::from_parts(1_467_880_000, 0)) + (Weight::from_parts(1_510_580_000, 0)) .saturating_add(RocksDbWeight::get().reads(66 as u64)) .saturating_add(RocksDbWeight::get().writes(64 as u64)) } @@ -1036,14 +1036,14 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn payout_delegator_reward() -> Weight { - (Weight::from_parts(80_870_000, 0)) + (Weight::from_parts(82_730_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn passive_session_change() -> Weight { - (Weight::from_parts(7_731_000, 0)) + (Weight::from_parts(7_930_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) } // Storage: `ParachainStaking::Round` (r:1 w:1) @@ -1103,13 +1103,13 @@ impl WeightInfo for () { // Storage: `Session::Validators` (r:0 w:1) // Proof: `Session::Validators` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn active_session_change(x: u32, y: u32, z: u32, ) -> Weight { - (Weight::from_parts(1_777_645_058, 0)) - // Standard Error: 88_477 - .saturating_add((Weight::from_parts(20_456_178, 0)).saturating_mul(x as u64)) - // Standard Error: 181_445 - .saturating_add((Weight::from_parts(7_543_266, 0)).saturating_mul(y as u64)) - // Standard Error: 314_285 - .saturating_add((Weight::from_parts(46_189_568, 0)).saturating_mul(z as u64)) + (Weight::from_parts(1_742_061_893, 0)) + // Standard Error: 91_439 + .saturating_add((Weight::from_parts(19_003_727, 0)).saturating_mul(x as u64)) + // Standard Error: 187_519 + .saturating_add((Weight::from_parts(7_513_684, 0)).saturating_mul(y as u64)) + // Standard Error: 324_806 + .saturating_add((Weight::from_parts(39_182_626, 0)).saturating_mul(z as u64)) .saturating_add(RocksDbWeight::get().reads(224 as u64)) .saturating_add(RocksDbWeight::get().reads((4 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(219 as u64)) diff --git a/runtime/mangata-rococo/src/weights/block_weights.rs b/runtime/mangata-rococo/src/weights/block_weights.rs index 72c5fac1c5..90c7e57cf7 100644 --- a/runtime/mangata-rococo/src/weights/block_weights.rs +++ b/runtime/mangata-rococo/src/weights/block_weights.rs @@ -1,6 +1,6 @@ //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29 (Y/M/D) -//! HOSTNAME: `cd63f32c58dd`, CPU: `AMD EPYC 7B12` +//! DATE: 2024-01-03 (Y/M/D) +//! HOSTNAME: `7f40434a6f98`, CPU: `AMD EPYC 7B13` //! //! SHORT-NAME: `block`, LONG-NAME: `BlockExecution`, RUNTIME: `Mangata Kusama Local` //! WARMUPS: `10`, REPEAT: `100` @@ -29,17 +29,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 24_891_029, 26_810_049 - /// Average: 25_377_421 - /// Median: 25_276_259 - /// Std-Dev: 401027.07 + /// Min, Max: 27_843_717, 32_531_118 + /// Average: 29_873_562 + /// Median: 29_743_918 + /// Std-Dev: 918740.49 /// /// Percentiles nanoseconds: - /// 99th: 26_762_049 - /// 95th: 26_403_029 - /// 75th: 25_427_019 + /// 99th: 32_046_977 + /// 95th: 31_472_667 + /// 75th: 30_410_057 pub const BlockExecutionWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(25_377_421), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(29_873_562), 0); } #[cfg(test)] diff --git a/runtime/mangata-rococo/src/weights/extrinsic_weights.rs b/runtime/mangata-rococo/src/weights/extrinsic_weights.rs index 339ed27983..143c674af2 100644 --- a/runtime/mangata-rococo/src/weights/extrinsic_weights.rs +++ b/runtime/mangata-rococo/src/weights/extrinsic_weights.rs @@ -1,6 +1,6 @@ //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29 (Y/M/D) -//! HOSTNAME: `cd63f32c58dd`, CPU: `AMD EPYC 7B12` +//! DATE: 2024-01-03 (Y/M/D) +//! HOSTNAME: `7f40434a6f98`, CPU: `AMD EPYC 7B13` //! //! SHORT-NAME: `extrinsic`, LONG-NAME: `ExtrinsicBase`, RUNTIME: `Mangata Kusama Local` //! WARMUPS: `10`, REPEAT: `100` @@ -29,17 +29,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 207_838, 229_040 - /// Average: 213_832 - /// Median: 213_109 - /// Std-Dev: 4058.62 + /// Min, Max: 185_312, 198_829 + /// Average: 192_481 + /// Median: 192_653 + /// Std-Dev: 2986.81 /// /// Percentiles nanoseconds: - /// 99th: 225_744 - /// 95th: 220_845 - /// 75th: 216_205 + /// 99th: 198_365 + /// 95th: 197_706 + /// 75th: 194_213 pub const ExtrinsicBaseWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(213_832), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(192_481), 0); } #[cfg(test)] diff --git a/runtime/mangata-rococo/src/weights/frame_system.rs b/runtime/mangata-rococo/src/weights/frame_system.rs index 2424b0e8aa..e500415691 100644 --- a/runtime/mangata-rococo/src/weights/frame_system.rs +++ b/runtime/mangata-rococo/src/weights/frame_system.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for frame_system //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -69,21 +69,21 @@ pub trait WeightInfo { pub struct ModuleWeight(PhantomData); impl frame_system::WeightInfo for ModuleWeight { fn remark(b: u32, ) -> Weight { - (Weight::from_parts(3_960_000, 0)) + (Weight::from_parts(8_068_407, 0)) // Standard Error: 0 - .saturating_add((Weight::from_parts(402, 0)).saturating_mul(b as u64)) + .saturating_add((Weight::from_parts(301, 0)).saturating_mul(b as u64)) } fn remark_with_event(b: u32, ) -> Weight { - (Weight::from_parts(12_890_000, 0)) - // Standard Error: 0 - .saturating_add((Weight::from_parts(1_688, 0)).saturating_mul(b as u64)) + (Weight::from_parts(8_629_253, 0)) + // Standard Error: 3 + .saturating_add((Weight::from_parts(1_566, 0)).saturating_mul(b as u64)) } // Storage: `System::Digest` (r:1 w:1) // Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) // Storage: UNKNOWN KEY `0x3a686561707061676573` (r:0 w:1) // Proof: UNKNOWN KEY `0x3a686561707061676573` (r:0 w:1) fn set_heap_pages() -> Weight { - (Weight::from_parts(7_200_000, 0)) + (Weight::from_parts(7_550_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -102,32 +102,32 @@ impl frame_system::WeightInfo for ModuleWeight { // Storage: `ParachainSystem::DidSetValidationCode` (r:0 w:1) // Proof: `ParachainSystem::DidSetValidationCode` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_code() -> Weight { - (Weight::from_parts(164_512_187_000, 0)) + (Weight::from_parts(153_609_518_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_storage(i: u32, ) -> Weight { - (Weight::from_parts(4_120_000, 0)) - // Standard Error: 2_770 - .saturating_add((Weight::from_parts(1_335_517, 0)).saturating_mul(i as u64)) + (Weight::from_parts(4_029_000, 0)) + // Standard Error: 2_553 + .saturating_add((Weight::from_parts(1_209_775, 0)).saturating_mul(i as u64)) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(i as u64))) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn kill_storage(i: u32, ) -> Weight { - (Weight::from_parts(4_110_000, 0)) - // Standard Error: 1_271 - .saturating_add((Weight::from_parts(915_035, 0)).saturating_mul(i as u64)) + (Weight::from_parts(3_660_000, 0)) + // Standard Error: 1_695 + .saturating_add((Weight::from_parts(781_486, 0)).saturating_mul(i as u64)) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(i as u64))) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn kill_prefix(p: u32, ) -> Weight { - (Weight::from_parts(7_640_000, 0)) - // Standard Error: 1_997 - .saturating_add((Weight::from_parts(1_597_399, 0)).saturating_mul(p as u64)) + (Weight::from_parts(6_871_000, 0)) + // Standard Error: 2_662 + .saturating_add((Weight::from_parts(1_353_159, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(p as u64))) } @@ -136,21 +136,21 @@ impl frame_system::WeightInfo for ModuleWeight { // For backwards compatibility and tests impl WeightInfo for () { fn remark(b: u32, ) -> Weight { - (Weight::from_parts(3_960_000, 0)) + (Weight::from_parts(8_068_407, 0)) // Standard Error: 0 - .saturating_add((Weight::from_parts(402, 0)).saturating_mul(b as u64)) + .saturating_add((Weight::from_parts(301, 0)).saturating_mul(b as u64)) } fn remark_with_event(b: u32, ) -> Weight { - (Weight::from_parts(12_890_000, 0)) - // Standard Error: 0 - .saturating_add((Weight::from_parts(1_688, 0)).saturating_mul(b as u64)) + (Weight::from_parts(8_629_253, 0)) + // Standard Error: 3 + .saturating_add((Weight::from_parts(1_566, 0)).saturating_mul(b as u64)) } // Storage: `System::Digest` (r:1 w:1) // Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) // Storage: UNKNOWN KEY `0x3a686561707061676573` (r:0 w:1) // Proof: UNKNOWN KEY `0x3a686561707061676573` (r:0 w:1) fn set_heap_pages() -> Weight { - (Weight::from_parts(7_200_000, 0)) + (Weight::from_parts(7_550_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -169,32 +169,32 @@ impl WeightInfo for () { // Storage: `ParachainSystem::DidSetValidationCode` (r:0 w:1) // Proof: `ParachainSystem::DidSetValidationCode` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_code() -> Weight { - (Weight::from_parts(164_512_187_000, 0)) + (Weight::from_parts(153_609_518_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_storage(i: u32, ) -> Weight { - (Weight::from_parts(4_120_000, 0)) - // Standard Error: 2_770 - .saturating_add((Weight::from_parts(1_335_517, 0)).saturating_mul(i as u64)) + (Weight::from_parts(4_029_000, 0)) + // Standard Error: 2_553 + .saturating_add((Weight::from_parts(1_209_775, 0)).saturating_mul(i as u64)) .saturating_add(RocksDbWeight::get().writes((1 as u64).saturating_mul(i as u64))) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn kill_storage(i: u32, ) -> Weight { - (Weight::from_parts(4_110_000, 0)) - // Standard Error: 1_271 - .saturating_add((Weight::from_parts(915_035, 0)).saturating_mul(i as u64)) + (Weight::from_parts(3_660_000, 0)) + // Standard Error: 1_695 + .saturating_add((Weight::from_parts(781_486, 0)).saturating_mul(i as u64)) .saturating_add(RocksDbWeight::get().writes((1 as u64).saturating_mul(i as u64))) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn kill_prefix(p: u32, ) -> Weight { - (Weight::from_parts(7_640_000, 0)) - // Standard Error: 1_997 - .saturating_add((Weight::from_parts(1_597_399, 0)).saturating_mul(p as u64)) + (Weight::from_parts(6_871_000, 0)) + // Standard Error: 2_662 + .saturating_add((Weight::from_parts(1_353_159, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(RocksDbWeight::get().writes((1 as u64).saturating_mul(p as u64))) } diff --git a/runtime/mangata-rococo/src/weights/orml_asset_registry.rs b/runtime/mangata-rococo/src/weights/orml_asset_registry.rs index 9e1c3728ed..a75a7ffaa7 100644 --- a/runtime/mangata-rococo/src/weights/orml_asset_registry.rs +++ b/runtime/mangata-rococo/src/weights/orml_asset_registry.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for orml_asset_registry //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -72,7 +72,7 @@ impl orml_asset_registry::WeightInfo for ModuleWeight Weight { - (Weight::from_parts(44_011_000, 0)) + (Weight::from_parts(44_920_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -81,7 +81,7 @@ impl orml_asset_registry::WeightInfo for ModuleWeight Weight { - (Weight::from_parts(29_660_000, 0)) + (Weight::from_parts(30_110_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -98,7 +98,7 @@ impl WeightInfo for () { // Storage: `AssetRegistry::LocationToAssetId` (r:1 w:1) // Proof: `AssetRegistry::LocationToAssetId` (`max_values`: None, `max_size`: Some(614), added: 3089, mode: `MaxEncodedLen`) fn register_asset() -> Weight { - (Weight::from_parts(44_011_000, 0)) + (Weight::from_parts(44_920_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -107,7 +107,7 @@ impl WeightInfo for () { // Storage: `AssetRegistry::LocationToAssetId` (r:1 w:1) // Proof: `AssetRegistry::LocationToAssetId` (`max_values`: None, `max_size`: Some(614), added: 3089, mode: `MaxEncodedLen`) fn update_asset() -> Weight { - (Weight::from_parts(29_660_000, 0)) + (Weight::from_parts(30_110_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/orml_tokens.rs b/runtime/mangata-rococo/src/weights/orml_tokens.rs index a5316a418d..08779e91ef 100644 --- a/runtime/mangata-rococo/src/weights/orml_tokens.rs +++ b/runtime/mangata-rococo/src/weights/orml_tokens.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for orml_tokens //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -73,7 +73,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer() -> Weight { - (Weight::from_parts(53_180_000, 0)) + (Weight::from_parts(55_440_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -82,7 +82,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer_all() -> Weight { - (Weight::from_parts(55_680_000, 0)) + (Weight::from_parts(58_409_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -91,7 +91,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer_keep_alive() -> Weight { - (Weight::from_parts(50_880_000, 0)) + (Weight::from_parts(49_520_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -100,7 +100,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn force_transfer() -> Weight { - (Weight::from_parts(56_430_000, 0)) + (Weight::from_parts(58_090_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -109,7 +109,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn set_balance() -> Weight { - (Weight::from_parts(31_470_000, 0)) + (Weight::from_parts(29_440_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -122,7 +122,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn create() -> Weight { - (Weight::from_parts(58_020_000, 0)) + (Weight::from_parts(56_320_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -135,7 +135,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn mint() -> Weight { - (Weight::from_parts(58_200_000, 0)) + (Weight::from_parts(55_450_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -148,7 +148,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer() -> Weight { - (Weight::from_parts(53_180_000, 0)) + (Weight::from_parts(55_440_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -157,7 +157,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer_all() -> Weight { - (Weight::from_parts(55_680_000, 0)) + (Weight::from_parts(58_409_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -166,7 +166,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer_keep_alive() -> Weight { - (Weight::from_parts(50_880_000, 0)) + (Weight::from_parts(49_520_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -175,7 +175,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn force_transfer() -> Weight { - (Weight::from_parts(56_430_000, 0)) + (Weight::from_parts(58_090_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -184,7 +184,7 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn set_balance() -> Weight { - (Weight::from_parts(31_470_000, 0)) + (Weight::from_parts(29_440_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -197,7 +197,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn create() -> Weight { - (Weight::from_parts(58_020_000, 0)) + (Weight::from_parts(56_320_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -210,7 +210,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn mint() -> Weight { - (Weight::from_parts(58_200_000, 0)) + (Weight::from_parts(55_450_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/pallet_bootstrap.rs b/runtime/mangata-rococo/src/weights/pallet_bootstrap.rs index 99dba8180d..e14436d06d 100644 --- a/runtime/mangata-rococo/src/weights/pallet_bootstrap.rs +++ b/runtime/mangata-rococo/src/weights/pallet_bootstrap.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_bootstrap //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -78,7 +78,7 @@ impl pallet_bootstrap::WeightInfo for ModuleWeight { // Storage: `Bootstrap::ActivePair` (r:0 w:1) // Proof: `Bootstrap::ActivePair` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_bootstrap() -> Weight { - (Weight::from_parts(34_030_000, 0)) + (Weight::from_parts(31_660_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -103,7 +103,7 @@ impl pallet_bootstrap::WeightInfo for ModuleWeight { // Storage: `Bootstrap::ProvisionAccounts` (r:0 w:1) // Proof: `Bootstrap::ProvisionAccounts` (`max_values`: None, `max_size`: None, mode: `Measured`) fn provision() -> Weight { - (Weight::from_parts(105_661_000, 0)) + (Weight::from_parts(97_651_000, 0)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -136,7 +136,7 @@ impl pallet_bootstrap::WeightInfo for ModuleWeight { // Storage: `Bootstrap::ProvisionAccounts` (r:0 w:1) // Proof: `Bootstrap::ProvisionAccounts` (`max_values`: None, `max_size`: None, mode: `Measured`) fn claim_and_activate_liquidity_tokens() -> Weight { - (Weight::from_parts(231_920_000, 0)) + (Weight::from_parts(239_080_000, 0)) .saturating_add(T::DbWeight::get().reads(17 as u64)) .saturating_add(T::DbWeight::get().writes(8 as u64)) } @@ -167,7 +167,7 @@ impl pallet_bootstrap::WeightInfo for ModuleWeight { // Storage: `Bootstrap::ActivePair` (r:0 w:1) // Proof: `Bootstrap::ActivePair` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn finalize() -> Weight { - (Weight::from_parts(85_180_000, 0)) + (Weight::from_parts(76_100_000, 0)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(7 as u64)) } @@ -188,7 +188,7 @@ impl WeightInfo for () { // Storage: `Bootstrap::ActivePair` (r:0 w:1) // Proof: `Bootstrap::ActivePair` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_bootstrap() -> Weight { - (Weight::from_parts(34_030_000, 0)) + (Weight::from_parts(31_660_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -213,7 +213,7 @@ impl WeightInfo for () { // Storage: `Bootstrap::ProvisionAccounts` (r:0 w:1) // Proof: `Bootstrap::ProvisionAccounts` (`max_values`: None, `max_size`: None, mode: `Measured`) fn provision() -> Weight { - (Weight::from_parts(105_661_000, 0)) + (Weight::from_parts(97_651_000, 0)) .saturating_add(RocksDbWeight::get().reads(10 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -246,7 +246,7 @@ impl WeightInfo for () { // Storage: `Bootstrap::ProvisionAccounts` (r:0 w:1) // Proof: `Bootstrap::ProvisionAccounts` (`max_values`: None, `max_size`: None, mode: `Measured`) fn claim_and_activate_liquidity_tokens() -> Weight { - (Weight::from_parts(231_920_000, 0)) + (Weight::from_parts(239_080_000, 0)) .saturating_add(RocksDbWeight::get().reads(17 as u64)) .saturating_add(RocksDbWeight::get().writes(8 as u64)) } @@ -277,7 +277,7 @@ impl WeightInfo for () { // Storage: `Bootstrap::ActivePair` (r:0 w:1) // Proof: `Bootstrap::ActivePair` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn finalize() -> Weight { - (Weight::from_parts(85_180_000, 0)) + (Weight::from_parts(76_100_000, 0)) .saturating_add(RocksDbWeight::get().reads(10 as u64)) .saturating_add(RocksDbWeight::get().writes(7 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/pallet_collective_mangata.rs b/runtime/mangata-rococo/src/weights/pallet_collective_mangata.rs index 89ce02a83a..156c6147d1 100644 --- a/runtime/mangata-rococo/src/weights/pallet_collective_mangata.rs +++ b/runtime/mangata-rococo/src/weights/pallet_collective_mangata.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_collective_mangata //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -80,11 +80,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Prime` (r:0 w:1) // Proof: `Council::Prime` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_members(m: u32, _n: u32, p: u32, ) -> Weight { - (Weight::from_parts(57_070_000, 0)) - // Standard Error: 80_826 - .saturating_add((Weight::from_parts(5_743_808, 0)).saturating_mul(m as u64)) - // Standard Error: 80_826 - .saturating_add((Weight::from_parts(11_380_621, 0)).saturating_mul(p as u64)) + (Weight::from_parts(50_090_000, 0)) + // Standard Error: 72_056 + .saturating_add((Weight::from_parts(4_845_252, 0)).saturating_mul(m as u64)) + // Standard Error: 72_056 + .saturating_add((Weight::from_parts(9_794_059, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(T::DbWeight::get().writes(2 as u64)) @@ -93,11 +93,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Members` (r:1 w:0) // Proof: `Council::Members` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute(b: u32, m: u32, ) -> Weight { - (Weight::from_parts(31_264_021, 0)) - // Standard Error: 153 - .saturating_add((Weight::from_parts(1_555, 0)).saturating_mul(b as u64)) - // Standard Error: 1_585 - .saturating_add((Weight::from_parts(19_347, 0)).saturating_mul(m as u64)) + (Weight::from_parts(30_607_433, 0)) + // Standard Error: 163 + .saturating_add((Weight::from_parts(1_259, 0)).saturating_mul(b as u64)) + // Standard Error: 1_683 + .saturating_add((Weight::from_parts(18_998, 0)).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) } // Storage: `Council::Members` (r:1 w:0) @@ -105,11 +105,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::ProposalOf` (r:1 w:0) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn propose_execute(b: u32, m: u32, ) -> Weight { - (Weight::from_parts(34_470_959, 0)) - // Standard Error: 112 - .saturating_add((Weight::from_parts(2_336, 0)).saturating_mul(b as u64)) - // Standard Error: 1_157 - .saturating_add((Weight::from_parts(49_021, 0)).saturating_mul(m as u64)) + (Weight::from_parts(34_212_021, 0)) + // Standard Error: 182 + .saturating_add((Weight::from_parts(2_073, 0)).saturating_mul(b as u64)) + // Standard Error: 1_878 + .saturating_add((Weight::from_parts(35_729, 0)).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) } // Storage: `Council::Members` (r:1 w:0) @@ -125,13 +125,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Voting` (r:0 w:1) // Proof: `Council::Voting` (`max_values`: None, `max_size`: None, mode: `Measured`) fn propose_proposed(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(52_246_247, 0)) - // Standard Error: 310 - .saturating_add((Weight::from_parts(3_431, 0)).saturating_mul(b as u64)) - // Standard Error: 3_243 - .saturating_add((Weight::from_parts(18_576, 0)).saturating_mul(m as u64)) - // Standard Error: 3_202 - .saturating_add((Weight::from_parts(347_105, 0)).saturating_mul(p as u64)) + (Weight::from_parts(51_719_195, 0)) + // Standard Error: 343 + .saturating_add((Weight::from_parts(4_806, 0)).saturating_mul(b as u64)) + // Standard Error: 3_540 + .saturating_add((Weight::from_parts(307_635, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -140,9 +138,9 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Voting` (r:1 w:1) // Proof: `Council::Voting` (`max_values`: None, `max_size`: None, mode: `Measured`) fn vote(m: u32, ) -> Weight { - (Weight::from_parts(48_666_664, 0)) - // Standard Error: 2_582 - .saturating_add((Weight::from_parts(61_948, 0)).saturating_mul(m as u64)) + (Weight::from_parts(46_719_287, 0)) + // Standard Error: 3_404 + .saturating_add((Weight::from_parts(20_273, 0)).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -157,11 +155,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn close_early_disapproved(m: u32, p: u32, ) -> Weight { - (Weight::from_parts(72_643_764, 0)) - // Standard Error: 3_322 - .saturating_add((Weight::from_parts(75_632, 0)).saturating_mul(m as u64)) - // Standard Error: 3_239 - .saturating_add((Weight::from_parts(325_327, 0)).saturating_mul(p as u64)) + (Weight::from_parts(66_985_259, 0)) + // Standard Error: 4_430 + .saturating_add((Weight::from_parts(47_134, 0)).saturating_mul(m as u64)) + // Standard Error: 4_320 + .saturating_add((Weight::from_parts(316_910, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -176,13 +174,13 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Proposals` (r:1 w:1) // Proof: `Council::Proposals` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn close_early_approved(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(91_862_749, 0)) - // Standard Error: 446 - .saturating_add((Weight::from_parts(10_002, 0)).saturating_mul(b as u64)) - // Standard Error: 4_716 - .saturating_add((Weight::from_parts(79_710, 0)).saturating_mul(m as u64)) - // Standard Error: 4_597 - .saturating_add((Weight::from_parts(403_860, 0)).saturating_mul(p as u64)) + (Weight::from_parts(86_026_209, 0)) + // Standard Error: 595 + .saturating_add((Weight::from_parts(9_907, 0)).saturating_mul(b as u64)) + // Standard Error: 6_297 + .saturating_add((Weight::from_parts(40_342, 0)).saturating_mul(m as u64)) + // Standard Error: 6_138 + .saturating_add((Weight::from_parts(392_639, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -199,11 +197,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn close_disapproved(m: u32, p: u32, ) -> Weight { - (Weight::from_parts(76_862_727, 0)) - // Standard Error: 3_224 - .saturating_add((Weight::from_parts(73_606, 0)).saturating_mul(m as u64)) - // Standard Error: 3_144 - .saturating_add((Weight::from_parts(330_989, 0)).saturating_mul(p as u64)) + (Weight::from_parts(74_401_218, 0)) + // Standard Error: 4_419 + .saturating_add((Weight::from_parts(31_096, 0)).saturating_mul(m as u64)) + // Standard Error: 4_309 + .saturating_add((Weight::from_parts(296_121, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -220,13 +218,13 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Proposals` (r:1 w:1) // Proof: `Council::Proposals` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn close_approved(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(96_913_463, 0)) - // Standard Error: 479 - .saturating_add((Weight::from_parts(11_066, 0)).saturating_mul(b as u64)) - // Standard Error: 5_066 - .saturating_add((Weight::from_parts(75_414, 0)).saturating_mul(m as u64)) - // Standard Error: 4_938 - .saturating_add((Weight::from_parts(409_193, 0)).saturating_mul(p as u64)) + (Weight::from_parts(98_643_873, 0)) + // Standard Error: 560 + .saturating_add((Weight::from_parts(7_326, 0)).saturating_mul(b as u64)) + // Standard Error: 5_927 + .saturating_add((Weight::from_parts(16_387, 0)).saturating_mul(m as u64)) + // Standard Error: 5_778 + .saturating_add((Weight::from_parts(357_802, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -239,9 +237,9 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn disapprove_proposal(p: u32, ) -> Weight { - (Weight::from_parts(38_136_813, 0)) - // Standard Error: 2_436 - .saturating_add((Weight::from_parts(301_299, 0)).saturating_mul(p as u64)) + (Weight::from_parts(35_738_384, 0)) + // Standard Error: 4_396 + .saturating_add((Weight::from_parts(291_651, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -258,11 +256,11 @@ impl WeightInfo for () { // Storage: `Council::Prime` (r:0 w:1) // Proof: `Council::Prime` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_members(m: u32, _n: u32, p: u32, ) -> Weight { - (Weight::from_parts(57_070_000, 0)) - // Standard Error: 80_826 - .saturating_add((Weight::from_parts(5_743_808, 0)).saturating_mul(m as u64)) - // Standard Error: 80_826 - .saturating_add((Weight::from_parts(11_380_621, 0)).saturating_mul(p as u64)) + (Weight::from_parts(50_090_000, 0)) + // Standard Error: 72_056 + .saturating_add((Weight::from_parts(4_845_252, 0)).saturating_mul(m as u64)) + // Standard Error: 72_056 + .saturating_add((Weight::from_parts(9_794_059, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(RocksDbWeight::get().writes(2 as u64)) @@ -271,11 +269,11 @@ impl WeightInfo for () { // Storage: `Council::Members` (r:1 w:0) // Proof: `Council::Members` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute(b: u32, m: u32, ) -> Weight { - (Weight::from_parts(31_264_021, 0)) - // Standard Error: 153 - .saturating_add((Weight::from_parts(1_555, 0)).saturating_mul(b as u64)) - // Standard Error: 1_585 - .saturating_add((Weight::from_parts(19_347, 0)).saturating_mul(m as u64)) + (Weight::from_parts(30_607_433, 0)) + // Standard Error: 163 + .saturating_add((Weight::from_parts(1_259, 0)).saturating_mul(b as u64)) + // Standard Error: 1_683 + .saturating_add((Weight::from_parts(18_998, 0)).saturating_mul(m as u64)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) } // Storage: `Council::Members` (r:1 w:0) @@ -283,11 +281,11 @@ impl WeightInfo for () { // Storage: `Council::ProposalOf` (r:1 w:0) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn propose_execute(b: u32, m: u32, ) -> Weight { - (Weight::from_parts(34_470_959, 0)) - // Standard Error: 112 - .saturating_add((Weight::from_parts(2_336, 0)).saturating_mul(b as u64)) - // Standard Error: 1_157 - .saturating_add((Weight::from_parts(49_021, 0)).saturating_mul(m as u64)) + (Weight::from_parts(34_212_021, 0)) + // Standard Error: 182 + .saturating_add((Weight::from_parts(2_073, 0)).saturating_mul(b as u64)) + // Standard Error: 1_878 + .saturating_add((Weight::from_parts(35_729, 0)).saturating_mul(m as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) } // Storage: `Council::Members` (r:1 w:0) @@ -303,13 +301,11 @@ impl WeightInfo for () { // Storage: `Council::Voting` (r:0 w:1) // Proof: `Council::Voting` (`max_values`: None, `max_size`: None, mode: `Measured`) fn propose_proposed(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(52_246_247, 0)) - // Standard Error: 310 - .saturating_add((Weight::from_parts(3_431, 0)).saturating_mul(b as u64)) - // Standard Error: 3_243 - .saturating_add((Weight::from_parts(18_576, 0)).saturating_mul(m as u64)) - // Standard Error: 3_202 - .saturating_add((Weight::from_parts(347_105, 0)).saturating_mul(p as u64)) + (Weight::from_parts(51_719_195, 0)) + // Standard Error: 343 + .saturating_add((Weight::from_parts(4_806, 0)).saturating_mul(b as u64)) + // Standard Error: 3_540 + .saturating_add((Weight::from_parts(307_635, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } @@ -318,9 +314,9 @@ impl WeightInfo for () { // Storage: `Council::Voting` (r:1 w:1) // Proof: `Council::Voting` (`max_values`: None, `max_size`: None, mode: `Measured`) fn vote(m: u32, ) -> Weight { - (Weight::from_parts(48_666_664, 0)) - // Standard Error: 2_582 - .saturating_add((Weight::from_parts(61_948, 0)).saturating_mul(m as u64)) + (Weight::from_parts(46_719_287, 0)) + // Standard Error: 3_404 + .saturating_add((Weight::from_parts(20_273, 0)).saturating_mul(m as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -335,11 +331,11 @@ impl WeightInfo for () { // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn close_early_disapproved(m: u32, p: u32, ) -> Weight { - (Weight::from_parts(72_643_764, 0)) - // Standard Error: 3_322 - .saturating_add((Weight::from_parts(75_632, 0)).saturating_mul(m as u64)) - // Standard Error: 3_239 - .saturating_add((Weight::from_parts(325_327, 0)).saturating_mul(p as u64)) + (Weight::from_parts(66_985_259, 0)) + // Standard Error: 4_430 + .saturating_add((Weight::from_parts(47_134, 0)).saturating_mul(m as u64)) + // Standard Error: 4_320 + .saturating_add((Weight::from_parts(316_910, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -354,13 +350,13 @@ impl WeightInfo for () { // Storage: `Council::Proposals` (r:1 w:1) // Proof: `Council::Proposals` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn close_early_approved(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(91_862_749, 0)) - // Standard Error: 446 - .saturating_add((Weight::from_parts(10_002, 0)).saturating_mul(b as u64)) - // Standard Error: 4_716 - .saturating_add((Weight::from_parts(79_710, 0)).saturating_mul(m as u64)) - // Standard Error: 4_597 - .saturating_add((Weight::from_parts(403_860, 0)).saturating_mul(p as u64)) + (Weight::from_parts(86_026_209, 0)) + // Standard Error: 595 + .saturating_add((Weight::from_parts(9_907, 0)).saturating_mul(b as u64)) + // Standard Error: 6_297 + .saturating_add((Weight::from_parts(40_342, 0)).saturating_mul(m as u64)) + // Standard Error: 6_138 + .saturating_add((Weight::from_parts(392_639, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -377,11 +373,11 @@ impl WeightInfo for () { // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn close_disapproved(m: u32, p: u32, ) -> Weight { - (Weight::from_parts(76_862_727, 0)) - // Standard Error: 3_224 - .saturating_add((Weight::from_parts(73_606, 0)).saturating_mul(m as u64)) - // Standard Error: 3_144 - .saturating_add((Weight::from_parts(330_989, 0)).saturating_mul(p as u64)) + (Weight::from_parts(74_401_218, 0)) + // Standard Error: 4_419 + .saturating_add((Weight::from_parts(31_096, 0)).saturating_mul(m as u64)) + // Standard Error: 4_309 + .saturating_add((Weight::from_parts(296_121, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -398,13 +394,13 @@ impl WeightInfo for () { // Storage: `Council::Proposals` (r:1 w:1) // Proof: `Council::Proposals` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn close_approved(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(96_913_463, 0)) - // Standard Error: 479 - .saturating_add((Weight::from_parts(11_066, 0)).saturating_mul(b as u64)) - // Standard Error: 5_066 - .saturating_add((Weight::from_parts(75_414, 0)).saturating_mul(m as u64)) - // Standard Error: 4_938 - .saturating_add((Weight::from_parts(409_193, 0)).saturating_mul(p as u64)) + (Weight::from_parts(98_643_873, 0)) + // Standard Error: 560 + .saturating_add((Weight::from_parts(7_326, 0)).saturating_mul(b as u64)) + // Standard Error: 5_927 + .saturating_add((Weight::from_parts(16_387, 0)).saturating_mul(m as u64)) + // Standard Error: 5_778 + .saturating_add((Weight::from_parts(357_802, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -417,9 +413,9 @@ impl WeightInfo for () { // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn disapprove_proposal(p: u32, ) -> Weight { - (Weight::from_parts(38_136_813, 0)) - // Standard Error: 2_436 - .saturating_add((Weight::from_parts(301_299, 0)).saturating_mul(p as u64)) + (Weight::from_parts(35_738_384, 0)) + // Standard Error: 4_396 + .saturating_add((Weight::from_parts(291_651, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/pallet_crowdloan_rewards.rs b/runtime/mangata-rococo/src/weights/pallet_crowdloan_rewards.rs index 6d056975fa..c457c66b7c 100644 --- a/runtime/mangata-rococo/src/weights/pallet_crowdloan_rewards.rs +++ b/runtime/mangata-rococo/src/weights/pallet_crowdloan_rewards.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_crowdloan_rewards //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -77,7 +77,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::CrowdloanAllocation` (r:0 w:1) // Proof: `Crowdloan::CrowdloanAllocation` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_crowdloan_allocation() -> Weight { - (Weight::from_parts(14_060_000, 0)) + (Weight::from_parts(14_470_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -98,9 +98,9 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::AccountsPayable` (r:100 w:100) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn initialize_reward_vec(x: u32, ) -> Weight { - (Weight::from_parts(110_032_669, 0)) - // Standard Error: 40_472 - .saturating_add((Weight::from_parts(26_743_344, 0)).saturating_mul(x as u64)) + (Weight::from_parts(141_666_911, 0)) + // Standard Error: 73_439 + .saturating_add((Weight::from_parts(26_080_457, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(2 as u64)) @@ -119,7 +119,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::CrowdloanPeriod` (r:0 w:1) // Proof: `Crowdloan::CrowdloanPeriod` (`max_values`: None, `max_size`: None, mode: `Measured`) fn complete_initialization() -> Weight { - (Weight::from_parts(27_640_000, 0)) + (Weight::from_parts(27_570_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -144,7 +144,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn claim() -> Weight { - (Weight::from_parts(129_789_000, 0)) + (Weight::from_parts(131_760_000, 0)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -153,7 +153,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::AccountsPayable` (r:2 w:2) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn update_reward_address() -> Weight { - (Weight::from_parts(35_230_000, 0)) + (Weight::from_parts(35_020_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -166,7 +166,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::AccountsPayable` (r:1 w:1) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn associate_native_identity() -> Weight { - (Weight::from_parts(118_950_000, 0)) + (Weight::from_parts(115_070_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -175,9 +175,9 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::AccountsPayable` (r:2 w:2) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn change_association_with_relay_keys(x: u32, ) -> Weight { - (Weight::from_parts(43_061_678, 0)) - // Standard Error: 30_884 - .saturating_add((Weight::from_parts(67_301_911, 0)).saturating_mul(x as u64)) + (Weight::from_parts(22_606_472, 0)) + // Standard Error: 117_254 + .saturating_add((Weight::from_parts(62_758_102, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -194,7 +194,7 @@ impl WeightInfo for () { // Storage: `Crowdloan::CrowdloanAllocation` (r:0 w:1) // Proof: `Crowdloan::CrowdloanAllocation` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_crowdloan_allocation() -> Weight { - (Weight::from_parts(14_060_000, 0)) + (Weight::from_parts(14_470_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -215,9 +215,9 @@ impl WeightInfo for () { // Storage: `Crowdloan::AccountsPayable` (r:100 w:100) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn initialize_reward_vec(x: u32, ) -> Weight { - (Weight::from_parts(110_032_669, 0)) - // Standard Error: 40_472 - .saturating_add((Weight::from_parts(26_743_344, 0)).saturating_mul(x as u64)) + (Weight::from_parts(141_666_911, 0)) + // Standard Error: 73_439 + .saturating_add((Weight::from_parts(26_080_457, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().reads((3 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(2 as u64)) @@ -236,7 +236,7 @@ impl WeightInfo for () { // Storage: `Crowdloan::CrowdloanPeriod` (r:0 w:1) // Proof: `Crowdloan::CrowdloanPeriod` (`max_values`: None, `max_size`: None, mode: `Measured`) fn complete_initialization() -> Weight { - (Weight::from_parts(27_640_000, 0)) + (Weight::from_parts(27_570_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -261,7 +261,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn claim() -> Weight { - (Weight::from_parts(129_789_000, 0)) + (Weight::from_parts(131_760_000, 0)) .saturating_add(RocksDbWeight::get().reads(10 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -270,7 +270,7 @@ impl WeightInfo for () { // Storage: `Crowdloan::AccountsPayable` (r:2 w:2) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn update_reward_address() -> Weight { - (Weight::from_parts(35_230_000, 0)) + (Weight::from_parts(35_020_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -283,7 +283,7 @@ impl WeightInfo for () { // Storage: `Crowdloan::AccountsPayable` (r:1 w:1) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn associate_native_identity() -> Weight { - (Weight::from_parts(118_950_000, 0)) + (Weight::from_parts(115_070_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -292,9 +292,9 @@ impl WeightInfo for () { // Storage: `Crowdloan::AccountsPayable` (r:2 w:2) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn change_association_with_relay_keys(x: u32, ) -> Weight { - (Weight::from_parts(43_061_678, 0)) - // Standard Error: 30_884 - .saturating_add((Weight::from_parts(67_301_911, 0)).saturating_mul(x as u64)) + (Weight::from_parts(22_606_472, 0)) + // Standard Error: 117_254 + .saturating_add((Weight::from_parts(62_758_102, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/pallet_fee_lock.rs b/runtime/mangata-rococo/src/weights/pallet_fee_lock.rs index bb48337f90..c3b7988d63 100644 --- a/runtime/mangata-rococo/src/weights/pallet_fee_lock.rs +++ b/runtime/mangata-rococo/src/weights/pallet_fee_lock.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_fee_lock //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -66,7 +66,7 @@ impl pallet_fee_lock::WeightInfo for ModuleWeight { // Storage: `FeeLock::FeeLockMetadata` (r:1 w:1) // Proof: `FeeLock::FeeLockMetadata` (`max_values`: Some(1), `max_size`: Some(438), added: 933, mode: `MaxEncodedLen`) fn update_fee_lock_metadata() -> Weight { - (Weight::from_parts(29_350_000, 0)) + (Weight::from_parts(28_480_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -81,7 +81,7 @@ impl pallet_fee_lock::WeightInfo for ModuleWeight { // Storage: `FeeLock::UnlockQueue` (r:1 w:1) // Proof: `FeeLock::UnlockQueue` (`max_values`: None, `max_size`: Some(56), added: 2531, mode: `MaxEncodedLen`) fn unlock_fee() -> Weight { - (Weight::from_parts(56_300_000, 0)) + (Weight::from_parts(56_480_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -92,7 +92,7 @@ impl WeightInfo for () { // Storage: `FeeLock::FeeLockMetadata` (r:1 w:1) // Proof: `FeeLock::FeeLockMetadata` (`max_values`: Some(1), `max_size`: Some(438), added: 933, mode: `MaxEncodedLen`) fn update_fee_lock_metadata() -> Weight { - (Weight::from_parts(29_350_000, 0)) + (Weight::from_parts(28_480_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -107,7 +107,7 @@ impl WeightInfo for () { // Storage: `FeeLock::UnlockQueue` (r:1 w:1) // Proof: `FeeLock::UnlockQueue` (`max_values`: None, `max_size`: Some(56), added: 2531, mode: `MaxEncodedLen`) fn unlock_fee() -> Weight { - (Weight::from_parts(56_300_000, 0)) + (Weight::from_parts(56_480_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/pallet_issuance.rs b/runtime/mangata-rococo/src/weights/pallet_issuance.rs index 6733396db0..780afe797b 100644 --- a/runtime/mangata-rococo/src/weights/pallet_issuance.rs +++ b/runtime/mangata-rococo/src/weights/pallet_issuance.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_issuance //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -71,14 +71,14 @@ impl pallet_issuance::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:0) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn init_issuance_config() -> Weight { - (Weight::from_parts(27_020_000, 0)) + (Weight::from_parts(27_420_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `Issuance::IsTGEFinalized` (r:1 w:1) // Proof: `Issuance::IsTGEFinalized` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn finalize_tge() -> Weight { - (Weight::from_parts(15_680_000, 0)) + (Weight::from_parts(16_590_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -97,9 +97,9 @@ impl pallet_issuance::WeightInfo for ModuleWeight { // Storage: `Issuance::TGETotal` (r:1 w:1) // Proof: `Issuance::TGETotal` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_tge(x: u32, ) -> Weight { - (Weight::from_parts(27_657_414, 0)) - // Standard Error: 41_711 - .saturating_add((Weight::from_parts(84_730_409, 0)).saturating_mul(x as u64)) + (Weight::from_parts(285_200_000, 0)) + // Standard Error: 142_818 + .saturating_add((Weight::from_parts(83_360_692, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads((4 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(2 as u64)) @@ -116,14 +116,14 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:0) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn init_issuance_config() -> Weight { - (Weight::from_parts(27_020_000, 0)) + (Weight::from_parts(27_420_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `Issuance::IsTGEFinalized` (r:1 w:1) // Proof: `Issuance::IsTGEFinalized` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn finalize_tge() -> Weight { - (Weight::from_parts(15_680_000, 0)) + (Weight::from_parts(16_590_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -142,9 +142,9 @@ impl WeightInfo for () { // Storage: `Issuance::TGETotal` (r:1 w:1) // Proof: `Issuance::TGETotal` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_tge(x: u32, ) -> Weight { - (Weight::from_parts(27_657_414, 0)) - // Standard Error: 41_711 - .saturating_add((Weight::from_parts(84_730_409, 0)).saturating_mul(x as u64)) + (Weight::from_parts(285_200_000, 0)) + // Standard Error: 142_818 + .saturating_add((Weight::from_parts(83_360_692, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().reads((4 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(2 as u64)) diff --git a/runtime/mangata-rococo/src/weights/pallet_multipurpose_liquidity.rs b/runtime/mangata-rococo/src/weights/pallet_multipurpose_liquidity.rs index fb624453d2..02d376e938 100644 --- a/runtime/mangata-rococo/src/weights/pallet_multipurpose_liquidity.rs +++ b/runtime/mangata-rococo/src/weights/pallet_multipurpose_liquidity.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_multipurpose_liquidity //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -76,7 +76,7 @@ impl pallet_multipurpose_liquidity::WeightInfo for Modu // Storage: `MultiPurposeLiquidity::RelockStatus` (r:1 w:1) // Proof: `MultiPurposeLiquidity::RelockStatus` (`max_values`: None, `max_size`: Some(1845), added: 4320, mode: `MaxEncodedLen`) fn reserve_vesting_liquidity_tokens() -> Weight { - (Weight::from_parts(129_510_000, 0)) + (Weight::from_parts(126_910_000, 0)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -91,7 +91,7 @@ impl pallet_multipurpose_liquidity::WeightInfo for Modu // Storage: `Tokens::Locks` (r:1 w:1) // Proof: `Tokens::Locks` (`max_values`: None, `max_size`: Some(1261), added: 3736, mode: `MaxEncodedLen`) fn unreserve_and_relock_instance() -> Weight { - (Weight::from_parts(125_040_000, 0)) + (Weight::from_parts(124_910_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -112,7 +112,7 @@ impl WeightInfo for () { // Storage: `MultiPurposeLiquidity::RelockStatus` (r:1 w:1) // Proof: `MultiPurposeLiquidity::RelockStatus` (`max_values`: None, `max_size`: Some(1845), added: 4320, mode: `MaxEncodedLen`) fn reserve_vesting_liquidity_tokens() -> Weight { - (Weight::from_parts(129_510_000, 0)) + (Weight::from_parts(126_910_000, 0)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } @@ -127,7 +127,7 @@ impl WeightInfo for () { // Storage: `Tokens::Locks` (r:1 w:1) // Proof: `Tokens::Locks` (`max_values`: None, `max_size`: Some(1261), added: 3736, mode: `MaxEncodedLen`) fn unreserve_and_relock_instance() -> Weight { - (Weight::from_parts(125_040_000, 0)) + (Weight::from_parts(124_910_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/pallet_proof_of_stake.rs b/runtime/mangata-rococo/src/weights/pallet_proof_of_stake.rs index 1db600cf2b..9de88c5528 100644 --- a/runtime/mangata-rococo/src/weights/pallet_proof_of_stake.rs +++ b/runtime/mangata-rococo/src/weights/pallet_proof_of_stake.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_proof_of_stake //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -76,7 +76,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `Tokens::Accounts` (r:2 w:2) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn claim_native_rewards() -> Weight { - (Weight::from_parts(95_260_000, 0)) + (Weight::from_parts(104_800_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -85,7 +85,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::PromotedPoolRewards` (r:1 w:1) // Proof: `ProofOfStake::PromotedPoolRewards` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn update_pool_promotion() -> Weight { - (Weight::from_parts(27_820_000, 0)) + (Weight::from_parts(27_720_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -100,7 +100,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn activate_liquidity_for_native_rewards() -> Weight { - (Weight::from_parts(108_610_000, 0)) + (Weight::from_parts(104_670_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -117,7 +117,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn deactivate_liquidity_for_native_rewards() -> Weight { - (Weight::from_parts(96_260_000, 0)) + (Weight::from_parts(94_510_000, 0)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -140,7 +140,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::RewardTokensPerPool` (r:0 w:1) // Proof: `ProofOfStake::RewardTokensPerPool` (`max_values`: None, `max_size`: None, mode: `Measured`) fn reward_pool() -> Weight { - (Weight::from_parts(138_580_000, 0)) + (Weight::from_parts(144_790_000, 0)) .saturating_add(T::DbWeight::get().reads(9 as u64)) .saturating_add(T::DbWeight::get().writes(7 as u64)) } @@ -161,7 +161,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::TotalActivatedLiquidityForSchedules` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidityForSchedules` (`max_values`: None, `max_size`: None, mode: `Measured`) fn activate_liquidity_for_3rdparty_rewards() -> Weight { - (Weight::from_parts(127_200_000, 0)) + (Weight::from_parts(129_000_000, 0)) .saturating_add(T::DbWeight::get().reads(9 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -184,7 +184,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::ActivatedNativeRewardsLiq` (r:1 w:1) // Proof: `ProofOfStake::ActivatedNativeRewardsLiq` (`max_values`: None, `max_size`: None, mode: `Measured`) fn deactivate_liquidity_for_3rdparty_rewards() -> Weight { - (Weight::from_parts(138_950_000, 0)) + (Weight::from_parts(137_490_000, 0)) .saturating_add(T::DbWeight::get().reads(11 as u64)) .saturating_add(T::DbWeight::get().writes(7 as u64)) } @@ -201,7 +201,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `Tokens::Accounts` (r:2 w:2) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn claim_3rdparty_rewards() -> Weight { - (Weight::from_parts(128_089_000, 0)) + (Weight::from_parts(142_210_000, 0)) .saturating_add(T::DbWeight::get().reads(8 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -216,7 +216,7 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:2 w:2) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn claim_native_rewards() -> Weight { - (Weight::from_parts(95_260_000, 0)) + (Weight::from_parts(104_800_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -225,7 +225,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::PromotedPoolRewards` (r:1 w:1) // Proof: `ProofOfStake::PromotedPoolRewards` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn update_pool_promotion() -> Weight { - (Weight::from_parts(27_820_000, 0)) + (Weight::from_parts(27_720_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -240,7 +240,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn activate_liquidity_for_native_rewards() -> Weight { - (Weight::from_parts(108_610_000, 0)) + (Weight::from_parts(104_670_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -257,7 +257,7 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn deactivate_liquidity_for_native_rewards() -> Weight { - (Weight::from_parts(96_260_000, 0)) + (Weight::from_parts(94_510_000, 0)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -280,7 +280,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::RewardTokensPerPool` (r:0 w:1) // Proof: `ProofOfStake::RewardTokensPerPool` (`max_values`: None, `max_size`: None, mode: `Measured`) fn reward_pool() -> Weight { - (Weight::from_parts(138_580_000, 0)) + (Weight::from_parts(144_790_000, 0)) .saturating_add(RocksDbWeight::get().reads(9 as u64)) .saturating_add(RocksDbWeight::get().writes(7 as u64)) } @@ -301,7 +301,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::TotalActivatedLiquidityForSchedules` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidityForSchedules` (`max_values`: None, `max_size`: None, mode: `Measured`) fn activate_liquidity_for_3rdparty_rewards() -> Weight { - (Weight::from_parts(127_200_000, 0)) + (Weight::from_parts(129_000_000, 0)) .saturating_add(RocksDbWeight::get().reads(9 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -324,7 +324,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::ActivatedNativeRewardsLiq` (r:1 w:1) // Proof: `ProofOfStake::ActivatedNativeRewardsLiq` (`max_values`: None, `max_size`: None, mode: `Measured`) fn deactivate_liquidity_for_3rdparty_rewards() -> Weight { - (Weight::from_parts(138_950_000, 0)) + (Weight::from_parts(137_490_000, 0)) .saturating_add(RocksDbWeight::get().reads(11 as u64)) .saturating_add(RocksDbWeight::get().writes(7 as u64)) } @@ -341,7 +341,7 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:2 w:2) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn claim_3rdparty_rewards() -> Weight { - (Weight::from_parts(128_089_000, 0)) + (Weight::from_parts(142_210_000, 0)) .saturating_add(RocksDbWeight::get().reads(8 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/pallet_session.rs b/runtime/mangata-rococo/src/weights/pallet_session.rs index aaef324970..d845ee7870 100644 --- a/runtime/mangata-rococo/src/weights/pallet_session.rs +++ b/runtime/mangata-rococo/src/weights/pallet_session.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_session //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -68,7 +68,7 @@ impl pallet_session::WeightInfo for ModuleWeight { // Storage: `Session::KeyOwner` (r:1 w:1) // Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_keys() -> Weight { - (Weight::from_parts(27_160_000, 0)) + (Weight::from_parts(28_720_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -77,7 +77,7 @@ impl pallet_session::WeightInfo for ModuleWeight { // Storage: `Session::KeyOwner` (r:0 w:1) // Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn purge_keys() -> Weight { - (Weight::from_parts(17_370_000, 0)) + (Weight::from_parts(18_130_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -90,7 +90,7 @@ impl WeightInfo for () { // Storage: `Session::KeyOwner` (r:1 w:1) // Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_keys() -> Weight { - (Weight::from_parts(27_160_000, 0)) + (Weight::from_parts(28_720_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -99,7 +99,7 @@ impl WeightInfo for () { // Storage: `Session::KeyOwner` (r:0 w:1) // Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn purge_keys() -> Weight { - (Weight::from_parts(17_370_000, 0)) + (Weight::from_parts(18_130_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/pallet_timestamp.rs b/runtime/mangata-rococo/src/weights/pallet_timestamp.rs index 324b0061c2..32bc7e1481 100644 --- a/runtime/mangata-rococo/src/weights/pallet_timestamp.rs +++ b/runtime/mangata-rococo/src/weights/pallet_timestamp.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_timestamp //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -66,12 +66,12 @@ impl pallet_timestamp::WeightInfo for ModuleWeight { // Storage: `Timestamp::Now` (r:1 w:1) // Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `MaxEncodedLen`) fn set() -> Weight { - (Weight::from_parts(10_160_000, 0)) + (Weight::from_parts(9_740_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } fn on_finalize() -> Weight { - (Weight::from_parts(5_500_000, 0)) + (Weight::from_parts(5_150_000, 0)) } } @@ -80,11 +80,11 @@ impl WeightInfo for () { // Storage: `Timestamp::Now` (r:1 w:1) // Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `MaxEncodedLen`) fn set() -> Weight { - (Weight::from_parts(10_160_000, 0)) + (Weight::from_parts(9_740_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } fn on_finalize() -> Weight { - (Weight::from_parts(5_500_000, 0)) + (Weight::from_parts(5_150_000, 0)) } } diff --git a/runtime/mangata-rococo/src/weights/pallet_treasury.rs b/runtime/mangata-rococo/src/weights/pallet_treasury.rs index 2da5497fb0..faa2e8a72b 100644 --- a/runtime/mangata-rococo/src/weights/pallet_treasury.rs +++ b/runtime/mangata-rococo/src/weights/pallet_treasury.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_treasury //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -77,7 +77,7 @@ impl pallet_treasury::WeightInfo for ModuleWeight { // Storage: `Treasury::Proposals` (r:0 w:1) // Proof: `Treasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn propose_spend() -> Weight { - (Weight::from_parts(44_560_000, 0)) + (Weight::from_parts(44_130_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -88,7 +88,7 @@ impl pallet_treasury::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn reject_proposal() -> Weight { - (Weight::from_parts(51_830_000, 0)) + (Weight::from_parts(52_489_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -97,16 +97,16 @@ impl pallet_treasury::WeightInfo for ModuleWeight { // Storage: `Treasury::Approvals` (r:1 w:1) // Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn approve_proposal(p: u32, ) -> Weight { - (Weight::from_parts(20_732_663, 0)) - // Standard Error: 2_050 - .saturating_add((Weight::from_parts(85_460, 0)).saturating_mul(p as u64)) + (Weight::from_parts(19_551_237, 0)) + // Standard Error: 1_811 + .saturating_add((Weight::from_parts(68_875, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `Treasury::Approvals` (r:1 w:1) // Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn remove_approval() -> Weight { - (Weight::from_parts(12_190_000, 0)) + (Weight::from_parts(12_580_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -121,9 +121,9 @@ impl pallet_treasury::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn on_initialize_proposals(p: u32, ) -> Weight { - (Weight::from_parts(39_555_286, 0)) - // Standard Error: 10_400 - .saturating_add((Weight::from_parts(4_437_275, 0)).saturating_mul(p as u64)) + (Weight::from_parts(39_451_729, 0)) + // Standard Error: 14_637 + .saturating_add((Weight::from_parts(4_433_389, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(T::DbWeight::get().writes(1 as u64)) @@ -142,7 +142,7 @@ impl WeightInfo for () { // Storage: `Treasury::Proposals` (r:0 w:1) // Proof: `Treasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn propose_spend() -> Weight { - (Weight::from_parts(44_560_000, 0)) + (Weight::from_parts(44_130_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -153,7 +153,7 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn reject_proposal() -> Weight { - (Weight::from_parts(51_830_000, 0)) + (Weight::from_parts(52_489_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -162,16 +162,16 @@ impl WeightInfo for () { // Storage: `Treasury::Approvals` (r:1 w:1) // Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn approve_proposal(p: u32, ) -> Weight { - (Weight::from_parts(20_732_663, 0)) - // Standard Error: 2_050 - .saturating_add((Weight::from_parts(85_460, 0)).saturating_mul(p as u64)) + (Weight::from_parts(19_551_237, 0)) + // Standard Error: 1_811 + .saturating_add((Weight::from_parts(68_875, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `Treasury::Approvals` (r:1 w:1) // Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn remove_approval() -> Weight { - (Weight::from_parts(12_190_000, 0)) + (Weight::from_parts(12_580_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -186,9 +186,9 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn on_initialize_proposals(p: u32, ) -> Weight { - (Weight::from_parts(39_555_286, 0)) - // Standard Error: 10_400 - .saturating_add((Weight::from_parts(4_437_275, 0)).saturating_mul(p as u64)) + (Weight::from_parts(39_451_729, 0)) + // Standard Error: 14_637 + .saturating_add((Weight::from_parts(4_433_389, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(RocksDbWeight::get().writes(1 as u64)) diff --git a/runtime/mangata-rococo/src/weights/pallet_utility_mangata.rs b/runtime/mangata-rococo/src/weights/pallet_utility_mangata.rs index aa823f2ccc..9008e85d14 100644 --- a/runtime/mangata-rococo/src/weights/pallet_utility_mangata.rs +++ b/runtime/mangata-rococo/src/weights/pallet_utility_mangata.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_utility_mangata //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -67,49 +67,49 @@ pub trait WeightInfo { pub struct ModuleWeight(PhantomData); impl pallet_utility_mangata::WeightInfo for ModuleWeight { fn batch(c: u32, ) -> Weight { - (Weight::from_parts(15_135_963, 0)) - // Standard Error: 5_453 - .saturating_add((Weight::from_parts(9_834_773, 0)).saturating_mul(c as u64)) + (Weight::from_parts(16_589_619, 0)) + // Standard Error: 16_418 + .saturating_add((Weight::from_parts(10_132_634, 0)).saturating_mul(c as u64)) } fn as_derivative() -> Weight { - (Weight::from_parts(9_310_000, 0)) + (Weight::from_parts(9_780_000, 0)) } fn batch_all(c: u32, ) -> Weight { - (Weight::from_parts(19_212_890, 0)) - // Standard Error: 5_692 - .saturating_add((Weight::from_parts(10_267_333, 0)).saturating_mul(c as u64)) + (Weight::from_parts(54_293_178, 0)) + // Standard Error: 22_178 + .saturating_add((Weight::from_parts(10_507_277, 0)).saturating_mul(c as u64)) } fn dispatch_as() -> Weight { - (Weight::from_parts(16_010_000, 0)) + (Weight::from_parts(16_940_000, 0)) } fn force_batch(c: u32, ) -> Weight { - (Weight::from_parts(9_766_534, 0)) - // Standard Error: 4_956 - .saturating_add((Weight::from_parts(9_840_630, 0)).saturating_mul(c as u64)) + (Weight::from_parts(24_129_155, 0)) + // Standard Error: 21_663 + .saturating_add((Weight::from_parts(10_054_761, 0)).saturating_mul(c as u64)) } } // For backwards compatibility and tests impl WeightInfo for () { fn batch(c: u32, ) -> Weight { - (Weight::from_parts(15_135_963, 0)) - // Standard Error: 5_453 - .saturating_add((Weight::from_parts(9_834_773, 0)).saturating_mul(c as u64)) + (Weight::from_parts(16_589_619, 0)) + // Standard Error: 16_418 + .saturating_add((Weight::from_parts(10_132_634, 0)).saturating_mul(c as u64)) } fn as_derivative() -> Weight { - (Weight::from_parts(9_310_000, 0)) + (Weight::from_parts(9_780_000, 0)) } fn batch_all(c: u32, ) -> Weight { - (Weight::from_parts(19_212_890, 0)) - // Standard Error: 5_692 - .saturating_add((Weight::from_parts(10_267_333, 0)).saturating_mul(c as u64)) + (Weight::from_parts(54_293_178, 0)) + // Standard Error: 22_178 + .saturating_add((Weight::from_parts(10_507_277, 0)).saturating_mul(c as u64)) } fn dispatch_as() -> Weight { - (Weight::from_parts(16_010_000, 0)) + (Weight::from_parts(16_940_000, 0)) } fn force_batch(c: u32, ) -> Weight { - (Weight::from_parts(9_766_534, 0)) - // Standard Error: 4_956 - .saturating_add((Weight::from_parts(9_840_630, 0)).saturating_mul(c as u64)) + (Weight::from_parts(24_129_155, 0)) + // Standard Error: 21_663 + .saturating_add((Weight::from_parts(10_054_761, 0)).saturating_mul(c as u64)) } } diff --git a/runtime/mangata-rococo/src/weights/pallet_vesting_mangata.rs b/runtime/mangata-rococo/src/weights/pallet_vesting_mangata.rs index 2c2a264c8b..af61cc2605 100644 --- a/runtime/mangata-rococo/src/weights/pallet_vesting_mangata.rs +++ b/runtime/mangata-rococo/src/weights/pallet_vesting_mangata.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_vesting_mangata //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -75,9 +75,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_locked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(52_228_571, 0)) - // Standard Error: 8_055 - .saturating_add((Weight::from_parts(206_853, 0)).saturating_mul(s as u64)) + (Weight::from_parts(51_130_831, 0)) + // Standard Error: 7_700 + .saturating_add((Weight::from_parts(172_452, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -88,9 +88,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_unlocked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(71_402_147, 0)) - // Standard Error: 6_446 - .saturating_add((Weight::from_parts(66_709, 0)).saturating_mul(s as u64)) + (Weight::from_parts(68_202_729, 0)) + // Standard Error: 5_640 + .saturating_add((Weight::from_parts(47_460, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -101,9 +101,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_other_locked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(53_787_351, 0)) - // Standard Error: 7_464 - .saturating_add((Weight::from_parts(191_496, 0)).saturating_mul(s as u64)) + (Weight::from_parts(51_573_992, 0)) + // Standard Error: 8_829 + .saturating_add((Weight::from_parts(180_014, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -116,9 +116,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn vest_other_unlocked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(71_275_743, 0)) - // Standard Error: 5_157 - .saturating_add((Weight::from_parts(106_569, 0)).saturating_mul(s as u64)) + (Weight::from_parts(67_659_964, 0)) + // Standard Error: 5_412 + .saturating_add((Weight::from_parts(87_102, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -131,9 +131,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Locks` (r:1 w:0) // Proof: `Tokens::Locks` (`max_values`: None, `max_size`: Some(1261), added: 3736, mode: `MaxEncodedLen`) fn force_vested_transfer(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(88_311_404, 0)) - // Standard Error: 15_390 - .saturating_add((Weight::from_parts(318_758, 0)).saturating_mul(s as u64)) + (Weight::from_parts(91_681_958, 0)) + // Standard Error: 15_906 + .saturating_add((Weight::from_parts(192_751, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -144,9 +144,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn not_unlocking_merge_schedules(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(54_096_909, 0)) - // Standard Error: 7_648 - .saturating_add((Weight::from_parts(202_308, 0)).saturating_mul(s as u64)) + (Weight::from_parts(51_621_276, 0)) + // Standard Error: 8_937 + .saturating_add((Weight::from_parts(187_029, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -157,9 +157,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn unlocking_merge_schedules(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(52_663_896, 0)) - // Standard Error: 12_392 - .saturating_add((Weight::from_parts(305_851, 0)).saturating_mul(s as u64)) + (Weight::from_parts(51_823_056, 0)) + // Standard Error: 15_260 + .saturating_add((Weight::from_parts(266_865, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -174,9 +174,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_locked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(52_228_571, 0)) - // Standard Error: 8_055 - .saturating_add((Weight::from_parts(206_853, 0)).saturating_mul(s as u64)) + (Weight::from_parts(51_130_831, 0)) + // Standard Error: 7_700 + .saturating_add((Weight::from_parts(172_452, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -187,9 +187,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_unlocked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(71_402_147, 0)) - // Standard Error: 6_446 - .saturating_add((Weight::from_parts(66_709, 0)).saturating_mul(s as u64)) + (Weight::from_parts(68_202_729, 0)) + // Standard Error: 5_640 + .saturating_add((Weight::from_parts(47_460, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -200,9 +200,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_other_locked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(53_787_351, 0)) - // Standard Error: 7_464 - .saturating_add((Weight::from_parts(191_496, 0)).saturating_mul(s as u64)) + (Weight::from_parts(51_573_992, 0)) + // Standard Error: 8_829 + .saturating_add((Weight::from_parts(180_014, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -215,9 +215,9 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn vest_other_unlocked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(71_275_743, 0)) - // Standard Error: 5_157 - .saturating_add((Weight::from_parts(106_569, 0)).saturating_mul(s as u64)) + (Weight::from_parts(67_659_964, 0)) + // Standard Error: 5_412 + .saturating_add((Weight::from_parts(87_102, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -230,9 +230,9 @@ impl WeightInfo for () { // Storage: `Tokens::Locks` (r:1 w:0) // Proof: `Tokens::Locks` (`max_values`: None, `max_size`: Some(1261), added: 3736, mode: `MaxEncodedLen`) fn force_vested_transfer(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(88_311_404, 0)) - // Standard Error: 15_390 - .saturating_add((Weight::from_parts(318_758, 0)).saturating_mul(s as u64)) + (Weight::from_parts(91_681_958, 0)) + // Standard Error: 15_906 + .saturating_add((Weight::from_parts(192_751, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -243,9 +243,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn not_unlocking_merge_schedules(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(54_096_909, 0)) - // Standard Error: 7_648 - .saturating_add((Weight::from_parts(202_308, 0)).saturating_mul(s as u64)) + (Weight::from_parts(51_621_276, 0)) + // Standard Error: 8_937 + .saturating_add((Weight::from_parts(187_029, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -256,9 +256,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn unlocking_merge_schedules(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(52_663_896, 0)) - // Standard Error: 12_392 - .saturating_add((Weight::from_parts(305_851, 0)).saturating_mul(s as u64)) + (Weight::from_parts(51_823_056, 0)) + // Standard Error: 15_260 + .saturating_add((Weight::from_parts(266_865, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/pallet_xyk.rs b/runtime/mangata-rococo/src/weights/pallet_xyk.rs index c01a4dc543..f01d0c1e92 100644 --- a/runtime/mangata-rococo/src/weights/pallet_xyk.rs +++ b/runtime/mangata-rococo/src/weights/pallet_xyk.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_xyk //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -90,7 +90,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `Xyk::LiquidityPools` (r:0 w:1) // Proof: `Xyk::LiquidityPools` (`max_values`: None, `max_size`: Some(41), added: 2516, mode: `MaxEncodedLen`) fn create_pool() -> Weight { - (Weight::from_parts(199_390_000, 0)) + (Weight::from_parts(204_890_000, 0)) .saturating_add(T::DbWeight::get().reads(14 as u64)) .saturating_add(T::DbWeight::get().writes(12 as u64)) } @@ -109,7 +109,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn sell_asset() -> Weight { - (Weight::from_parts(248_910_000, 0)) + (Weight::from_parts(244_050_000, 0)) .saturating_add(T::DbWeight::get().reads(16 as u64)) .saturating_add(T::DbWeight::get().writes(9 as u64)) } @@ -128,9 +128,9 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn multiswap_sell_asset(x: u32, ) -> Weight { - (Weight::from_parts(667_830_000, 0)) - // Standard Error: 466_722 - .saturating_add((Weight::from_parts(275_656_523, 0)).saturating_mul(x as u64)) + (Weight::from_parts(633_020_000, 0)) + // Standard Error: 494_601 + .saturating_add((Weight::from_parts(276_447_721, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(29 as u64)) .saturating_add(T::DbWeight::get().reads((10 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(1 as u64)) @@ -151,7 +151,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn buy_asset() -> Weight { - (Weight::from_parts(250_150_000, 0)) + (Weight::from_parts(235_960_000, 0)) .saturating_add(T::DbWeight::get().reads(18 as u64)) .saturating_add(T::DbWeight::get().writes(9 as u64)) } @@ -170,9 +170,9 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn multiswap_buy_asset(x: u32, ) -> Weight { - (Weight::from_parts(699_650_000, 0)) - // Standard Error: 522_058 - .saturating_add((Weight::from_parts(291_694_576, 0)).saturating_mul(x as u64)) + (Weight::from_parts(708_340_000, 0)) + // Standard Error: 591_581 + .saturating_add((Weight::from_parts(290_419_235, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(29 as u64)) .saturating_add(T::DbWeight::get().reads((10 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(1 as u64)) @@ -199,7 +199,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn mint_liquidity() -> Weight { - (Weight::from_parts(243_100_000, 0)) + (Weight::from_parts(244_540_000, 0)) .saturating_add(T::DbWeight::get().reads(15 as u64)) .saturating_add(T::DbWeight::get().writes(10 as u64)) } @@ -220,7 +220,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `Tokens::NextCurrencyId` (r:1 w:0) // Proof: `Tokens::NextCurrencyId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) fn mint_liquidity_using_vesting_native_tokens() -> Weight { - (Weight::from_parts(277_850_000, 0)) + (Weight::from_parts(276_260_000, 0)) .saturating_add(T::DbWeight::get().reads(14 as u64)) .saturating_add(T::DbWeight::get().writes(11 as u64)) } @@ -245,7 +245,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn burn_liquidity() -> Weight { - (Weight::from_parts(225_400_000, 0)) + (Weight::from_parts(224_350_000, 0)) .saturating_add(T::DbWeight::get().reads(15 as u64)) .saturating_add(T::DbWeight::get().writes(10 as u64)) } @@ -270,7 +270,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `ProofOfStake::PromotedPoolRewards` (r:1 w:0) // Proof: `ProofOfStake::PromotedPoolRewards` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn provide_liquidity_with_conversion() -> Weight { - (Weight::from_parts(392_480_000, 0)) + (Weight::from_parts(395_590_000, 0)) .saturating_add(T::DbWeight::get().reads(22 as u64)) .saturating_add(T::DbWeight::get().writes(11 as u64)) } @@ -301,7 +301,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn compound_rewards() -> Weight { - (Weight::from_parts(553_720_000, 0)) + (Weight::from_parts(554_980_000, 0)) .saturating_add(T::DbWeight::get().reads(25 as u64)) .saturating_add(T::DbWeight::get().writes(16 as u64)) } @@ -328,7 +328,7 @@ impl WeightInfo for () { // Storage: `Xyk::LiquidityPools` (r:0 w:1) // Proof: `Xyk::LiquidityPools` (`max_values`: None, `max_size`: Some(41), added: 2516, mode: `MaxEncodedLen`) fn create_pool() -> Weight { - (Weight::from_parts(199_390_000, 0)) + (Weight::from_parts(204_890_000, 0)) .saturating_add(RocksDbWeight::get().reads(14 as u64)) .saturating_add(RocksDbWeight::get().writes(12 as u64)) } @@ -347,7 +347,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn sell_asset() -> Weight { - (Weight::from_parts(248_910_000, 0)) + (Weight::from_parts(244_050_000, 0)) .saturating_add(RocksDbWeight::get().reads(16 as u64)) .saturating_add(RocksDbWeight::get().writes(9 as u64)) } @@ -366,9 +366,9 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn multiswap_sell_asset(x: u32, ) -> Weight { - (Weight::from_parts(667_830_000, 0)) - // Standard Error: 466_722 - .saturating_add((Weight::from_parts(275_656_523, 0)).saturating_mul(x as u64)) + (Weight::from_parts(633_020_000, 0)) + // Standard Error: 494_601 + .saturating_add((Weight::from_parts(276_447_721, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(29 as u64)) .saturating_add(RocksDbWeight::get().reads((10 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(1 as u64)) @@ -389,7 +389,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn buy_asset() -> Weight { - (Weight::from_parts(250_150_000, 0)) + (Weight::from_parts(235_960_000, 0)) .saturating_add(RocksDbWeight::get().reads(18 as u64)) .saturating_add(RocksDbWeight::get().writes(9 as u64)) } @@ -408,9 +408,9 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn multiswap_buy_asset(x: u32, ) -> Weight { - (Weight::from_parts(699_650_000, 0)) - // Standard Error: 522_058 - .saturating_add((Weight::from_parts(291_694_576, 0)).saturating_mul(x as u64)) + (Weight::from_parts(708_340_000, 0)) + // Standard Error: 591_581 + .saturating_add((Weight::from_parts(290_419_235, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(29 as u64)) .saturating_add(RocksDbWeight::get().reads((10 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(1 as u64)) @@ -437,7 +437,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn mint_liquidity() -> Weight { - (Weight::from_parts(243_100_000, 0)) + (Weight::from_parts(244_540_000, 0)) .saturating_add(RocksDbWeight::get().reads(15 as u64)) .saturating_add(RocksDbWeight::get().writes(10 as u64)) } @@ -458,7 +458,7 @@ impl WeightInfo for () { // Storage: `Tokens::NextCurrencyId` (r:1 w:0) // Proof: `Tokens::NextCurrencyId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) fn mint_liquidity_using_vesting_native_tokens() -> Weight { - (Weight::from_parts(277_850_000, 0)) + (Weight::from_parts(276_260_000, 0)) .saturating_add(RocksDbWeight::get().reads(14 as u64)) .saturating_add(RocksDbWeight::get().writes(11 as u64)) } @@ -483,7 +483,7 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn burn_liquidity() -> Weight { - (Weight::from_parts(225_400_000, 0)) + (Weight::from_parts(224_350_000, 0)) .saturating_add(RocksDbWeight::get().reads(15 as u64)) .saturating_add(RocksDbWeight::get().writes(10 as u64)) } @@ -508,7 +508,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::PromotedPoolRewards` (r:1 w:0) // Proof: `ProofOfStake::PromotedPoolRewards` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn provide_liquidity_with_conversion() -> Weight { - (Weight::from_parts(392_480_000, 0)) + (Weight::from_parts(395_590_000, 0)) .saturating_add(RocksDbWeight::get().reads(22 as u64)) .saturating_add(RocksDbWeight::get().writes(11 as u64)) } @@ -539,7 +539,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn compound_rewards() -> Weight { - (Weight::from_parts(553_720_000, 0)) + (Weight::from_parts(554_980_000, 0)) .saturating_add(RocksDbWeight::get().reads(25 as u64)) .saturating_add(RocksDbWeight::get().writes(16 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/parachain_staking.rs b/runtime/mangata-rococo/src/weights/parachain_staking.rs index 44a260862d..a28875dae0 100644 --- a/runtime/mangata-rococo/src/weights/parachain_staking.rs +++ b/runtime/mangata-rococo/src/weights/parachain_staking.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for parachain_staking //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2023-11-29, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -99,14 +99,14 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::TotalSelected` (r:1 w:1) // Proof: `ParachainStaking::TotalSelected` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_total_selected() -> Weight { - (Weight::from_parts(17_680_000, 0)) + (Weight::from_parts(16_930_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::CollatorCommission` (r:1 w:1) // Proof: `ParachainStaking::CollatorCommission` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_collator_commission() -> Weight { - (Weight::from_parts(17_940_000, 0)) + (Weight::from_parts(17_340_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -133,11 +133,11 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn join_candidates(x: u32, y: u32, ) -> Weight { - (Weight::from_parts(137_856_969, 0)) - // Standard Error: 10_690 - .saturating_add((Weight::from_parts(54_293, 0)).saturating_mul(x as u64)) - // Standard Error: 10_560 - .saturating_add((Weight::from_parts(250_971, 0)).saturating_mul(y as u64)) + (Weight::from_parts(119_544_784, 0)) + // Standard Error: 9_354 + .saturating_add((Weight::from_parts(150_604, 0)).saturating_mul(x as u64)) + // Standard Error: 9_240 + .saturating_add((Weight::from_parts(199_000, 0)).saturating_mul(y as u64)) .saturating_add(T::DbWeight::get().reads(11 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -148,9 +148,9 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(40_338_257, 0)) - // Standard Error: 1_750 - .saturating_add((Weight::from_parts(120_947, 0)).saturating_mul(x as u64)) + (Weight::from_parts(37_830_404, 0)) + // Standard Error: 2_680 + .saturating_add((Weight::from_parts(123_243, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -169,9 +169,9 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(55_041_628, 0)) - // Standard Error: 71_941 - .saturating_add((Weight::from_parts(33_725_614, 0)).saturating_mul(x as u64)) + (Weight::from_parts(66_566_597, 0)) + // Standard Error: 102_929 + .saturating_add((Weight::from_parts(31_808_468, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(1 as u64)) @@ -182,9 +182,9 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn cancel_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(37_974_600, 0)) - // Standard Error: 2_474 - .saturating_add((Weight::from_parts(162_792, 0)).saturating_mul(x as u64)) + (Weight::from_parts(36_344_898, 0)) + // Standard Error: 2_734 + .saturating_add((Weight::from_parts(125_362, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -195,7 +195,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn go_offline() -> Weight { - (Weight::from_parts(38_770_000, 0)) + (Weight::from_parts(36_640_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -206,7 +206,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn go_online() -> Weight { - (Weight::from_parts(37_660_000, 0)) + (Weight::from_parts(34_930_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -219,7 +219,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_candidate_bond_more() -> Weight { - (Weight::from_parts(55_400_000, 0)) + (Weight::from_parts(54_580_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -234,7 +234,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_candidate_bond_less() -> Weight { - (Weight::from_parts(58_400_000, 0)) + (Weight::from_parts(56_670_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -251,7 +251,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_candidate_bond_more() -> Weight { - (Weight::from_parts(110_429_000, 0)) + (Weight::from_parts(107_800_000, 0)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -268,21 +268,21 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_candidate_bond_less() -> Weight { - (Weight::from_parts(114_750_000, 0)) + (Weight::from_parts(101_800_000, 0)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } // Storage: `ParachainStaking::CandidateState` (r:1 w:1) // Proof: `ParachainStaking::CandidateState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_candidate_bond_more() -> Weight { - (Weight::from_parts(29_840_000, 0)) + (Weight::from_parts(29_240_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::CandidateState` (r:1 w:1) // Proof: `ParachainStaking::CandidateState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_candidate_bond_less() -> Weight { - (Weight::from_parts(29_020_000, 0)) + (Weight::from_parts(29_070_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -307,11 +307,11 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn delegate(x: u32, y: u32, ) -> Weight { - (Weight::from_parts(129_602_188, 0)) - // Standard Error: 14_617 - .saturating_add((Weight::from_parts(374_311, 0)).saturating_mul(x as u64)) - // Standard Error: 14_125 - .saturating_add((Weight::from_parts(285_577, 0)).saturating_mul(y as u64)) + (Weight::from_parts(126_212_793, 0)) + // Standard Error: 20_241 + .saturating_add((Weight::from_parts(152_166, 0)).saturating_mul(x as u64)) + // Standard Error: 19_560 + .saturating_add((Weight::from_parts(281_095, 0)).saturating_mul(y as u64)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -320,7 +320,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_leave_delegators() -> Weight { - (Weight::from_parts(32_130_000, 0)) + (Weight::from_parts(30_220_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -339,9 +339,9 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_leave_delegators(x: u32, ) -> Weight { - (Weight::from_parts(48_642_851, 0)) - // Standard Error: 49_475 - .saturating_add((Weight::from_parts(37_310_539, 0)).saturating_mul(x as u64)) + (Weight::from_parts(35_710_474, 0)) + // Standard Error: 117_122 + .saturating_add((Weight::from_parts(39_255_172, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(4 as u64)) @@ -350,7 +350,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_leave_delegators() -> Weight { - (Weight::from_parts(29_950_000, 0)) + (Weight::from_parts(29_140_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -359,7 +359,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_revoke_delegation() -> Weight { - (Weight::from_parts(33_430_000, 0)) + (Weight::from_parts(32_850_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -372,7 +372,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_delegator_bond_more() -> Weight { - (Weight::from_parts(56_820_000, 0)) + (Weight::from_parts(52_540_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -381,7 +381,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_delegator_bond_less() -> Weight { - (Weight::from_parts(33_840_000, 0)) + (Weight::from_parts(30_900_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -400,7 +400,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_revoke_delegation() -> Weight { - (Weight::from_parts(117_960_000, 0)) + (Weight::from_parts(114_340_000, 0)) .saturating_add(T::DbWeight::get().reads(7 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -419,7 +419,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_delegator_bond_more() -> Weight { - (Weight::from_parts(111_750_000, 0)) + (Weight::from_parts(126_549_000, 0)) .saturating_add(T::DbWeight::get().reads(7 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -438,28 +438,28 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_delegator_bond_less() -> Weight { - (Weight::from_parts(102_249_000, 0)) + (Weight::from_parts(105_030_000, 0)) .saturating_add(T::DbWeight::get().reads(7 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_revoke_delegation() -> Weight { - (Weight::from_parts(30_910_000, 0)) + (Weight::from_parts(28_749_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_delegator_bond_more() -> Weight { - (Weight::from_parts(38_250_000, 0)) + (Weight::from_parts(49_820_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_delegator_bond_less() -> Weight { - (Weight::from_parts(36_500_000, 0)) + (Weight::from_parts(37_670_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -468,18 +468,18 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::StakingLiquidityTokens` (r:1 w:1) // Proof: `ParachainStaking::StakingLiquidityTokens` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn add_staking_liquidity_token(x: u32, ) -> Weight { - (Weight::from_parts(28_450_974, 0)) - // Standard Error: 2_583 - .saturating_add((Weight::from_parts(183_334, 0)).saturating_mul(x as u64)) + (Weight::from_parts(26_409_191, 0)) + // Standard Error: 2_820 + .saturating_add((Weight::from_parts(165_180, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::StakingLiquidityTokens` (r:1 w:1) // Proof: `ParachainStaking::StakingLiquidityTokens` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn remove_staking_liquidity_token(x: u32, ) -> Weight { - (Weight::from_parts(20_929_979, 0)) - // Standard Error: 1_978 - .saturating_add((Weight::from_parts(164_139, 0)).saturating_mul(x as u64)) + (Weight::from_parts(20_007_922, 0)) + // Standard Error: 2_592 + .saturating_add((Weight::from_parts(136_166, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -492,7 +492,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidateAggregator` (r:1 w:1) // Proof: `ParachainStaking::CandidateAggregator` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn aggregator_update_metadata() -> Weight { - (Weight::from_parts(1_848_791_000, 0)) + (Weight::from_parts(1_661_170_000, 0)) .saturating_add(T::DbWeight::get().reads(102 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -503,7 +503,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::AggregatorMetadata` (r:2 w:2) // Proof: `ParachainStaking::AggregatorMetadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn update_candidate_aggregator() -> Weight { - (Weight::from_parts(115_850_000, 0)) + (Weight::from_parts(109_320_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -514,7 +514,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `System::Account` (r:32 w:31) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn payout_collator_rewards() -> Weight { - (Weight::from_parts(1_467_880_000, 0)) + (Weight::from_parts(1_510_580_000, 0)) .saturating_add(T::DbWeight::get().reads(66 as u64)) .saturating_add(T::DbWeight::get().writes(64 as u64)) } @@ -525,14 +525,14 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `System::Account` (r:2 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn payout_delegator_reward() -> Weight { - (Weight::from_parts(80_870_000, 0)) + (Weight::from_parts(82_730_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn passive_session_change() -> Weight { - (Weight::from_parts(7_731_000, 0)) + (Weight::from_parts(7_930_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) } // Storage: `ParachainStaking::Round` (r:1 w:1) @@ -592,13 +592,13 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `Session::Validators` (r:0 w:1) // Proof: `Session::Validators` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn active_session_change(x: u32, y: u32, z: u32, ) -> Weight { - (Weight::from_parts(1_777_645_058, 0)) - // Standard Error: 88_477 - .saturating_add((Weight::from_parts(20_456_178, 0)).saturating_mul(x as u64)) - // Standard Error: 181_445 - .saturating_add((Weight::from_parts(7_543_266, 0)).saturating_mul(y as u64)) - // Standard Error: 314_285 - .saturating_add((Weight::from_parts(46_189_568, 0)).saturating_mul(z as u64)) + (Weight::from_parts(1_742_061_893, 0)) + // Standard Error: 91_439 + .saturating_add((Weight::from_parts(19_003_727, 0)).saturating_mul(x as u64)) + // Standard Error: 187_519 + .saturating_add((Weight::from_parts(7_513_684, 0)).saturating_mul(y as u64)) + // Standard Error: 324_806 + .saturating_add((Weight::from_parts(39_182_626, 0)).saturating_mul(z as u64)) .saturating_add(T::DbWeight::get().reads(224 as u64)) .saturating_add(T::DbWeight::get().reads((4 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(219 as u64)) @@ -610,14 +610,14 @@ impl WeightInfo for () { // Storage: `ParachainStaking::TotalSelected` (r:1 w:1) // Proof: `ParachainStaking::TotalSelected` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_total_selected() -> Weight { - (Weight::from_parts(17_680_000, 0)) + (Weight::from_parts(16_930_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::CollatorCommission` (r:1 w:1) // Proof: `ParachainStaking::CollatorCommission` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_collator_commission() -> Weight { - (Weight::from_parts(17_940_000, 0)) + (Weight::from_parts(17_340_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -644,11 +644,11 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn join_candidates(x: u32, y: u32, ) -> Weight { - (Weight::from_parts(137_856_969, 0)) - // Standard Error: 10_690 - .saturating_add((Weight::from_parts(54_293, 0)).saturating_mul(x as u64)) - // Standard Error: 10_560 - .saturating_add((Weight::from_parts(250_971, 0)).saturating_mul(y as u64)) + (Weight::from_parts(119_544_784, 0)) + // Standard Error: 9_354 + .saturating_add((Weight::from_parts(150_604, 0)).saturating_mul(x as u64)) + // Standard Error: 9_240 + .saturating_add((Weight::from_parts(199_000, 0)).saturating_mul(y as u64)) .saturating_add(RocksDbWeight::get().reads(11 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } @@ -659,9 +659,9 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(40_338_257, 0)) - // Standard Error: 1_750 - .saturating_add((Weight::from_parts(120_947, 0)).saturating_mul(x as u64)) + (Weight::from_parts(37_830_404, 0)) + // Standard Error: 2_680 + .saturating_add((Weight::from_parts(123_243, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -680,9 +680,9 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(55_041_628, 0)) - // Standard Error: 71_941 - .saturating_add((Weight::from_parts(33_725_614, 0)).saturating_mul(x as u64)) + (Weight::from_parts(66_566_597, 0)) + // Standard Error: 102_929 + .saturating_add((Weight::from_parts(31_808_468, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().reads((3 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(1 as u64)) @@ -693,9 +693,9 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn cancel_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(37_974_600, 0)) - // Standard Error: 2_474 - .saturating_add((Weight::from_parts(162_792, 0)).saturating_mul(x as u64)) + (Weight::from_parts(36_344_898, 0)) + // Standard Error: 2_734 + .saturating_add((Weight::from_parts(125_362, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -706,7 +706,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn go_offline() -> Weight { - (Weight::from_parts(38_770_000, 0)) + (Weight::from_parts(36_640_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -717,7 +717,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn go_online() -> Weight { - (Weight::from_parts(37_660_000, 0)) + (Weight::from_parts(34_930_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -730,7 +730,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_candidate_bond_more() -> Weight { - (Weight::from_parts(55_400_000, 0)) + (Weight::from_parts(54_580_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -745,7 +745,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_candidate_bond_less() -> Weight { - (Weight::from_parts(58_400_000, 0)) + (Weight::from_parts(56_670_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -762,7 +762,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_candidate_bond_more() -> Weight { - (Weight::from_parts(110_429_000, 0)) + (Weight::from_parts(107_800_000, 0)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } @@ -779,21 +779,21 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_candidate_bond_less() -> Weight { - (Weight::from_parts(114_750_000, 0)) + (Weight::from_parts(101_800_000, 0)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } // Storage: `ParachainStaking::CandidateState` (r:1 w:1) // Proof: `ParachainStaking::CandidateState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_candidate_bond_more() -> Weight { - (Weight::from_parts(29_840_000, 0)) + (Weight::from_parts(29_240_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::CandidateState` (r:1 w:1) // Proof: `ParachainStaking::CandidateState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_candidate_bond_less() -> Weight { - (Weight::from_parts(29_020_000, 0)) + (Weight::from_parts(29_070_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -818,11 +818,11 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn delegate(x: u32, y: u32, ) -> Weight { - (Weight::from_parts(129_602_188, 0)) - // Standard Error: 14_617 - .saturating_add((Weight::from_parts(374_311, 0)).saturating_mul(x as u64)) - // Standard Error: 14_125 - .saturating_add((Weight::from_parts(285_577, 0)).saturating_mul(y as u64)) + (Weight::from_parts(126_212_793, 0)) + // Standard Error: 20_241 + .saturating_add((Weight::from_parts(152_166, 0)).saturating_mul(x as u64)) + // Standard Error: 19_560 + .saturating_add((Weight::from_parts(281_095, 0)).saturating_mul(y as u64)) .saturating_add(RocksDbWeight::get().reads(10 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -831,7 +831,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_leave_delegators() -> Weight { - (Weight::from_parts(32_130_000, 0)) + (Weight::from_parts(30_220_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -850,9 +850,9 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_leave_delegators(x: u32, ) -> Weight { - (Weight::from_parts(48_642_851, 0)) - // Standard Error: 49_475 - .saturating_add((Weight::from_parts(37_310_539, 0)).saturating_mul(x as u64)) + (Weight::from_parts(35_710_474, 0)) + // Standard Error: 117_122 + .saturating_add((Weight::from_parts(39_255_172, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(4 as u64)) @@ -861,7 +861,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_leave_delegators() -> Weight { - (Weight::from_parts(29_950_000, 0)) + (Weight::from_parts(29_140_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -870,7 +870,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_revoke_delegation() -> Weight { - (Weight::from_parts(33_430_000, 0)) + (Weight::from_parts(32_850_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -883,7 +883,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_delegator_bond_more() -> Weight { - (Weight::from_parts(56_820_000, 0)) + (Weight::from_parts(52_540_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -892,7 +892,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_delegator_bond_less() -> Weight { - (Weight::from_parts(33_840_000, 0)) + (Weight::from_parts(30_900_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -911,7 +911,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_revoke_delegation() -> Weight { - (Weight::from_parts(117_960_000, 0)) + (Weight::from_parts(114_340_000, 0)) .saturating_add(RocksDbWeight::get().reads(7 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -930,7 +930,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_delegator_bond_more() -> Weight { - (Weight::from_parts(111_750_000, 0)) + (Weight::from_parts(126_549_000, 0)) .saturating_add(RocksDbWeight::get().reads(7 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -949,28 +949,28 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_delegator_bond_less() -> Weight { - (Weight::from_parts(102_249_000, 0)) + (Weight::from_parts(105_030_000, 0)) .saturating_add(RocksDbWeight::get().reads(7 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_revoke_delegation() -> Weight { - (Weight::from_parts(30_910_000, 0)) + (Weight::from_parts(28_749_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_delegator_bond_more() -> Weight { - (Weight::from_parts(38_250_000, 0)) + (Weight::from_parts(49_820_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_delegator_bond_less() -> Weight { - (Weight::from_parts(36_500_000, 0)) + (Weight::from_parts(37_670_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -979,18 +979,18 @@ impl WeightInfo for () { // Storage: `ParachainStaking::StakingLiquidityTokens` (r:1 w:1) // Proof: `ParachainStaking::StakingLiquidityTokens` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn add_staking_liquidity_token(x: u32, ) -> Weight { - (Weight::from_parts(28_450_974, 0)) - // Standard Error: 2_583 - .saturating_add((Weight::from_parts(183_334, 0)).saturating_mul(x as u64)) + (Weight::from_parts(26_409_191, 0)) + // Standard Error: 2_820 + .saturating_add((Weight::from_parts(165_180, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::StakingLiquidityTokens` (r:1 w:1) // Proof: `ParachainStaking::StakingLiquidityTokens` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn remove_staking_liquidity_token(x: u32, ) -> Weight { - (Weight::from_parts(20_929_979, 0)) - // Standard Error: 1_978 - .saturating_add((Weight::from_parts(164_139, 0)).saturating_mul(x as u64)) + (Weight::from_parts(20_007_922, 0)) + // Standard Error: 2_592 + .saturating_add((Weight::from_parts(136_166, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -1003,7 +1003,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidateAggregator` (r:1 w:1) // Proof: `ParachainStaking::CandidateAggregator` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn aggregator_update_metadata() -> Weight { - (Weight::from_parts(1_848_791_000, 0)) + (Weight::from_parts(1_661_170_000, 0)) .saturating_add(RocksDbWeight::get().reads(102 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -1014,7 +1014,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::AggregatorMetadata` (r:2 w:2) // Proof: `ParachainStaking::AggregatorMetadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn update_candidate_aggregator() -> Weight { - (Weight::from_parts(115_850_000, 0)) + (Weight::from_parts(109_320_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -1025,7 +1025,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:32 w:31) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn payout_collator_rewards() -> Weight { - (Weight::from_parts(1_467_880_000, 0)) + (Weight::from_parts(1_510_580_000, 0)) .saturating_add(RocksDbWeight::get().reads(66 as u64)) .saturating_add(RocksDbWeight::get().writes(64 as u64)) } @@ -1036,14 +1036,14 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn payout_delegator_reward() -> Weight { - (Weight::from_parts(80_870_000, 0)) + (Weight::from_parts(82_730_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn passive_session_change() -> Weight { - (Weight::from_parts(7_731_000, 0)) + (Weight::from_parts(7_930_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) } // Storage: `ParachainStaking::Round` (r:1 w:1) @@ -1103,13 +1103,13 @@ impl WeightInfo for () { // Storage: `Session::Validators` (r:0 w:1) // Proof: `Session::Validators` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn active_session_change(x: u32, y: u32, z: u32, ) -> Weight { - (Weight::from_parts(1_777_645_058, 0)) - // Standard Error: 88_477 - .saturating_add((Weight::from_parts(20_456_178, 0)).saturating_mul(x as u64)) - // Standard Error: 181_445 - .saturating_add((Weight::from_parts(7_543_266, 0)).saturating_mul(y as u64)) - // Standard Error: 314_285 - .saturating_add((Weight::from_parts(46_189_568, 0)).saturating_mul(z as u64)) + (Weight::from_parts(1_742_061_893, 0)) + // Standard Error: 91_439 + .saturating_add((Weight::from_parts(19_003_727, 0)).saturating_mul(x as u64)) + // Standard Error: 187_519 + .saturating_add((Weight::from_parts(7_513_684, 0)).saturating_mul(y as u64)) + // Standard Error: 324_806 + .saturating_add((Weight::from_parts(39_182_626, 0)).saturating_mul(z as u64)) .saturating_add(RocksDbWeight::get().reads(224 as u64)) .saturating_add(RocksDbWeight::get().reads((4 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(219 as u64)) From cdc0d6ee6e32d2e84caa2aaf527564b3e9576a2e Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Mon, 8 Jan 2024 12:25:34 +0100 Subject: [PATCH 11/13] bump sdk --- Cargo.lock | 576 +++++++++++++++++++++++++++-------------------------- 1 file changed, 289 insertions(+), 287 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e3414e475a..a3778a55a8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -913,7 +913,7 @@ dependencies = [ [[package]] name = "binary-merkle-tree" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "hash-db", "log", @@ -1982,7 +1982,7 @@ dependencies = [ [[package]] name = "cumulus-client-cli" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "clap", "parity-scale-codec", @@ -1998,7 +1998,7 @@ dependencies = [ [[package]] name = "cumulus-client-collator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "cumulus-client-consensus-common", "cumulus-client-network", @@ -2021,7 +2021,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "cumulus-client-collator", @@ -2064,7 +2064,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-common" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "cumulus-client-pov-recovery", @@ -2093,7 +2093,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-proposer" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "anyhow", "async-trait", @@ -2108,7 +2108,7 @@ dependencies = [ [[package]] name = "cumulus-client-consensus-relay-chain" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "cumulus-client-consensus-common", @@ -2131,7 +2131,7 @@ dependencies = [ [[package]] name = "cumulus-client-network" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "cumulus-relay-chain-interface", @@ -2154,7 +2154,7 @@ dependencies = [ [[package]] name = "cumulus-client-pov-recovery" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2178,7 +2178,7 @@ dependencies = [ [[package]] name = "cumulus-client-service" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "cumulus-client-cli", "cumulus-client-collator", @@ -2213,7 +2213,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-aura-ext" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "cumulus-pallet-parachain-system", "frame-support", @@ -2231,7 +2231,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-dmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2249,7 +2249,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bytes", "cumulus-pallet-parachain-system-proc-macro", @@ -2280,7 +2280,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-parachain-system-proc-macro" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -2291,7 +2291,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-session-benchmarking" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -2305,7 +2305,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcm" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2321,7 +2321,7 @@ dependencies = [ [[package]] name = "cumulus-pallet-xcmp-queue" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "cumulus-primitives-core", "frame-benchmarking", @@ -2343,7 +2343,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-aura" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2357,7 +2357,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-core" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "polkadot-core-primitives", @@ -2374,7 +2374,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-parachain-inherent" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2397,7 +2397,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-timestamp" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "cumulus-primitives-core", "futures", @@ -2410,7 +2410,7 @@ dependencies = [ [[package]] name = "cumulus-primitives-utility" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -2428,7 +2428,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-inprocess-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2452,7 +2452,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2470,7 +2470,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-minimal-node" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "array-bytes", "async-trait", @@ -2505,7 +2505,7 @@ dependencies = [ [[package]] name = "cumulus-relay-chain-rpc-interface" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "cumulus-primitives-core", @@ -2543,7 +2543,7 @@ dependencies = [ [[package]] name = "cumulus-test-relay-sproof-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "cumulus-primitives-core", "parity-scale-codec", @@ -3360,7 +3360,7 @@ dependencies = [ [[package]] name = "extrinsic-shuffler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "derive_more", "log", @@ -3558,7 +3558,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "fork-tree" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", ] @@ -3581,7 +3581,7 @@ checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" [[package]] name = "frame-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support", "frame-support-procedural", @@ -3606,7 +3606,7 @@ dependencies = [ [[package]] name = "frame-benchmarking-cli" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "Inflector", "array-bytes", @@ -3660,7 +3660,7 @@ dependencies = [ [[package]] name = "frame-election-provider-solution-type" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -3671,7 +3671,7 @@ dependencies = [ [[package]] name = "frame-election-provider-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-election-provider-solution-type", "frame-support", @@ -3688,7 +3688,7 @@ dependencies = [ [[package]] name = "frame-executive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -3722,7 +3722,7 @@ dependencies = [ [[package]] name = "frame-remote-externalities" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-recursion", "futures", @@ -3744,7 +3744,7 @@ dependencies = [ [[package]] name = "frame-support" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "aquamarine 0.3.2", "bitflags 1.3.2", @@ -3785,7 +3785,7 @@ dependencies = [ [[package]] name = "frame-support-procedural" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "Inflector", "cfg-expr", @@ -3803,7 +3803,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support-procedural-tools-derive", "proc-macro-crate", @@ -3815,7 +3815,7 @@ dependencies = [ [[package]] name = "frame-support-procedural-tools-derive" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "proc-macro2", "quote", @@ -3825,7 +3825,7 @@ dependencies = [ [[package]] name = "frame-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "cfg-if", "extrinsic-shuffler", @@ -3846,7 +3846,7 @@ dependencies = [ [[package]] name = "frame-system-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -3861,7 +3861,7 @@ dependencies = [ [[package]] name = "frame-system-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "sp-api", @@ -3870,7 +3870,7 @@ dependencies = [ [[package]] name = "frame-try-runtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support", "parity-scale-codec", @@ -5022,7 +5022,7 @@ dependencies = [ [[package]] name = "kusama-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support", "polkadot-primitives", @@ -6072,7 +6072,7 @@ dependencies = [ [[package]] name = "mangata-support" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support", "mangata-types", @@ -6085,7 +6085,7 @@ dependencies = [ [[package]] name = "mangata-types" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "scale-info", @@ -6265,7 +6265,7 @@ dependencies = [ [[package]] name = "mmr-gadget" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "futures", "log", @@ -6284,7 +6284,7 @@ dependencies = [ [[package]] name = "mmr-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "anyhow", "jsonrpsee", @@ -6906,7 +6906,7 @@ dependencies = [ [[package]] name = "pallet-asset-tx-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -6924,7 +6924,7 @@ dependencies = [ [[package]] name = "pallet-assets" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -6940,7 +6940,7 @@ dependencies = [ [[package]] name = "pallet-aura" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support", "frame-system", @@ -6957,7 +6957,7 @@ dependencies = [ [[package]] name = "pallet-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support", "frame-system", @@ -6973,7 +6973,7 @@ dependencies = [ [[package]] name = "pallet-authorship" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support", "frame-system", @@ -6987,7 +6987,7 @@ dependencies = [ [[package]] name = "pallet-babe" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7011,7 +7011,7 @@ dependencies = [ [[package]] name = "pallet-bags-list" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "aquamarine 0.3.2", "docify", @@ -7033,7 +7033,7 @@ dependencies = [ [[package]] name = "pallet-balances" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7048,7 +7048,7 @@ dependencies = [ [[package]] name = "pallet-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support", "frame-system", @@ -7068,7 +7068,7 @@ dependencies = [ [[package]] name = "pallet-beefy-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "array-bytes", "binary-merkle-tree", @@ -7125,7 +7125,7 @@ dependencies = [ [[package]] name = "pallet-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7143,7 +7143,7 @@ dependencies = [ [[package]] name = "pallet-child-bounties" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7162,7 +7162,7 @@ dependencies = [ [[package]] name = "pallet-collator-selection" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7181,7 +7181,7 @@ dependencies = [ [[package]] name = "pallet-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7198,7 +7198,7 @@ dependencies = [ [[package]] name = "pallet-collective-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7215,7 +7215,7 @@ dependencies = [ [[package]] name = "pallet-conviction-voting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7256,7 +7256,7 @@ dependencies = [ [[package]] name = "pallet-democracy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7274,7 +7274,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-multi-phase" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7297,7 +7297,7 @@ dependencies = [ [[package]] name = "pallet-election-provider-support-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7311,7 +7311,7 @@ dependencies = [ [[package]] name = "pallet-elections-phragmen" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7330,7 +7330,7 @@ dependencies = [ [[package]] name = "pallet-fast-unstake" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "docify", "frame-benchmarking", @@ -7378,7 +7378,7 @@ dependencies = [ [[package]] name = "pallet-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7401,7 +7401,7 @@ dependencies = [ [[package]] name = "pallet-identity" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "enumflags2", "frame-benchmarking", @@ -7417,7 +7417,7 @@ dependencies = [ [[package]] name = "pallet-im-online" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7437,7 +7437,7 @@ dependencies = [ [[package]] name = "pallet-indices" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7506,7 +7506,7 @@ dependencies = [ [[package]] name = "pallet-membership" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7523,7 +7523,7 @@ dependencies = [ [[package]] name = "pallet-message-queue" version = "7.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7542,7 +7542,7 @@ dependencies = [ [[package]] name = "pallet-mmr" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7590,7 +7590,7 @@ dependencies = [ [[package]] name = "pallet-multisig" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7606,7 +7606,7 @@ dependencies = [ [[package]] name = "pallet-nis" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7622,7 +7622,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support", "frame-system", @@ -7641,7 +7641,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-benchmarking" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7661,7 +7661,7 @@ dependencies = [ [[package]] name = "pallet-nomination-pools-runtime-api" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "pallet-nomination-pools", "parity-scale-codec", @@ -7672,7 +7672,7 @@ dependencies = [ [[package]] name = "pallet-offences" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support", "frame-system", @@ -7689,7 +7689,7 @@ dependencies = [ [[package]] name = "pallet-offences-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7713,7 +7713,7 @@ dependencies = [ [[package]] name = "pallet-preimage" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7767,7 +7767,7 @@ dependencies = [ [[package]] name = "pallet-proxy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7782,7 +7782,7 @@ dependencies = [ [[package]] name = "pallet-ranked-collective" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7800,7 +7800,7 @@ dependencies = [ [[package]] name = "pallet-recovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7815,7 +7815,7 @@ dependencies = [ [[package]] name = "pallet-referenda" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "assert_matches", "frame-benchmarking", @@ -7834,7 +7834,7 @@ dependencies = [ [[package]] name = "pallet-root-testing" version = "1.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support", "frame-system", @@ -7849,7 +7849,7 @@ dependencies = [ [[package]] name = "pallet-scheduler" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "docify", "frame-benchmarking", @@ -7867,7 +7867,7 @@ dependencies = [ [[package]] name = "pallet-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support", "frame-system", @@ -7889,7 +7889,7 @@ dependencies = [ [[package]] name = "pallet-session-benchmarking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7906,7 +7906,7 @@ dependencies = [ [[package]] name = "pallet-society" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7924,7 +7924,7 @@ dependencies = [ [[package]] name = "pallet-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-election-provider-support", @@ -7947,7 +7947,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-curve" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -7958,7 +7958,7 @@ dependencies = [ [[package]] name = "pallet-staking-reward-fn" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "log", "sp-arithmetic", @@ -7967,7 +7967,7 @@ dependencies = [ [[package]] name = "pallet-staking-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "sp-api", @@ -7976,7 +7976,7 @@ dependencies = [ [[package]] name = "pallet-state-trie-migration" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -7993,7 +7993,7 @@ dependencies = [ [[package]] name = "pallet-sudo" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -8008,7 +8008,7 @@ dependencies = [ [[package]] name = "pallet-sudo-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -8041,7 +8041,7 @@ dependencies = [ [[package]] name = "pallet-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -8060,7 +8060,7 @@ dependencies = [ [[package]] name = "pallet-tips" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -8079,7 +8079,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support", "frame-system", @@ -8095,7 +8095,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support", "frame-system", @@ -8111,7 +8111,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "jsonrpsee", "pallet-transaction-payment-mangata-rpc-runtime-api", @@ -8127,7 +8127,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-mangata-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "pallet-transaction-payment-mangata", "parity-scale-codec", @@ -8139,7 +8139,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "jsonrpsee", "pallet-transaction-payment-rpc-runtime-api", @@ -8155,7 +8155,7 @@ dependencies = [ [[package]] name = "pallet-transaction-payment-rpc-runtime-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "pallet-transaction-payment", "parity-scale-codec", @@ -8167,7 +8167,7 @@ dependencies = [ [[package]] name = "pallet-treasury" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -8184,7 +8184,7 @@ dependencies = [ [[package]] name = "pallet-utility" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -8200,7 +8200,7 @@ dependencies = [ [[package]] name = "pallet-utility-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -8216,7 +8216,7 @@ dependencies = [ [[package]] name = "pallet-vesting" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -8231,7 +8231,7 @@ dependencies = [ [[package]] name = "pallet-vesting-mangata" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -8246,7 +8246,7 @@ dependencies = [ [[package]] name = "pallet-whitelist" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -8261,7 +8261,7 @@ dependencies = [ [[package]] name = "pallet-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bounded-collections", "frame-benchmarking", @@ -8282,7 +8282,7 @@ dependencies = [ [[package]] name = "pallet-xcm-benchmarks" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-benchmarking", "frame-support", @@ -8337,7 +8337,7 @@ dependencies = [ [[package]] name = "parachain-info" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "cumulus-primitives-core", "frame-support", @@ -8382,7 +8382,7 @@ dependencies = [ [[package]] name = "parachains-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "cumulus-primitives-core", "cumulus-primitives-utility", @@ -8761,7 +8761,7 @@ checksum = "14e6ab3f592e6fb464fc9712d8d6e6912de6473954635fd76a589d832cffcbb0" [[package]] name = "polkadot-approval-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "futures", "futures-timer", @@ -8779,7 +8779,7 @@ dependencies = [ [[package]] name = "polkadot-availability-bitfield-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "always-assert", "futures", @@ -8795,7 +8795,7 @@ dependencies = [ [[package]] name = "polkadot-availability-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "derive_more", "fatality", @@ -8818,7 +8818,7 @@ dependencies = [ [[package]] name = "polkadot-availability-recovery" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "fatality", "futures", @@ -8839,7 +8839,7 @@ dependencies = [ [[package]] name = "polkadot-cli" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "clap", "frame-benchmarking-cli", @@ -8866,7 +8866,7 @@ dependencies = [ [[package]] name = "polkadot-collator-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bitvec", "fatality", @@ -8888,7 +8888,7 @@ dependencies = [ [[package]] name = "polkadot-core-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "scale-info", @@ -8900,7 +8900,7 @@ dependencies = [ [[package]] name = "polkadot-dispute-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "derive_more", "fatality", @@ -8925,7 +8925,7 @@ dependencies = [ [[package]] name = "polkadot-erasure-coding" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "polkadot-node-primitives", @@ -8939,7 +8939,7 @@ dependencies = [ [[package]] name = "polkadot-gossip-support" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "futures", "futures-timer", @@ -8960,7 +8960,7 @@ dependencies = [ [[package]] name = "polkadot-network-bridge" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "always-assert", "async-trait", @@ -8983,7 +8983,7 @@ dependencies = [ [[package]] name = "polkadot-node-collation-generation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "futures", "parity-scale-codec", @@ -9001,7 +9001,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-approval-voting" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bitvec", "derive_more", @@ -9030,7 +9030,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-av-store" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bitvec", "futures", @@ -9052,7 +9052,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-backing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bitvec", "fatality", @@ -9071,7 +9071,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-bitfield-signing" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "futures", "polkadot-node-subsystem", @@ -9086,7 +9086,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-candidate-validation" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "futures", @@ -9107,7 +9107,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "futures", "polkadot-node-metrics", @@ -9122,7 +9122,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-chain-selection" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "futures", "futures-timer", @@ -9139,7 +9139,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-dispute-coordinator" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "fatality", "futures", @@ -9158,7 +9158,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-parachains-inherent" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "futures", @@ -9175,7 +9175,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-prospective-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bitvec", "fatality", @@ -9192,7 +9192,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-provisioner" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bitvec", "fatality", @@ -9209,7 +9209,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "always-assert", "futures", @@ -9237,7 +9237,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-checker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "futures", "polkadot-node-primitives", @@ -9253,7 +9253,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "cpu-time", "futures", @@ -9276,7 +9276,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-pvf-prepare-worker" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "futures", "libc", @@ -9299,7 +9299,7 @@ dependencies = [ [[package]] name = "polkadot-node-core-runtime-api" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "futures", "polkadot-node-metrics", @@ -9314,7 +9314,7 @@ dependencies = [ [[package]] name = "polkadot-node-jaeger" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "lazy_static", "log", @@ -9332,7 +9332,7 @@ dependencies = [ [[package]] name = "polkadot-node-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bs58 0.5.0", "futures", @@ -9351,7 +9351,7 @@ dependencies = [ [[package]] name = "polkadot-node-network-protocol" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-channel 1.9.0", "async-trait", @@ -9375,7 +9375,7 @@ dependencies = [ [[package]] name = "polkadot-node-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bounded-vec", "futures", @@ -9397,7 +9397,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "polkadot-node-jaeger", "polkadot-node-subsystem-types", @@ -9407,7 +9407,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-types" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "derive_more", @@ -9431,7 +9431,7 @@ dependencies = [ [[package]] name = "polkadot-node-subsystem-util" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "derive_more", @@ -9464,7 +9464,7 @@ dependencies = [ [[package]] name = "polkadot-overseer" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "futures", @@ -9487,7 +9487,7 @@ dependencies = [ [[package]] name = "polkadot-parachain-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bounded-collections", "derive_more", @@ -9504,7 +9504,7 @@ dependencies = [ [[package]] name = "polkadot-performance-test" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "env_logger 0.9.3", "log", @@ -9522,7 +9522,7 @@ dependencies = [ [[package]] name = "polkadot-primitives" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bitvec", "hex-literal 0.4.1", @@ -9548,7 +9548,7 @@ dependencies = [ [[package]] name = "polkadot-rpc" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "jsonrpsee", "mmr-rpc", @@ -9580,7 +9580,7 @@ dependencies = [ [[package]] name = "polkadot-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bitvec", "frame-benchmarking", @@ -9677,7 +9677,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-common" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bitvec", "frame-benchmarking", @@ -9723,7 +9723,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support", "polkadot-primitives", @@ -9737,7 +9737,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-metrics" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bs58 0.5.0", "frame-benchmarking", @@ -9750,7 +9750,7 @@ dependencies = [ [[package]] name = "polkadot-runtime-parachains" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bitflags 1.3.2", "bitvec", @@ -9796,7 +9796,7 @@ dependencies = [ [[package]] name = "polkadot-service" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "frame-benchmarking", @@ -9917,7 +9917,7 @@ dependencies = [ [[package]] name = "polkadot-statement-distribution" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "arrayvec 0.7.4", "bitvec", @@ -9941,7 +9941,7 @@ dependencies = [ [[package]] name = "polkadot-statement-table" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "polkadot-primitives", @@ -10714,7 +10714,7 @@ dependencies = [ [[package]] name = "rococo-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "binary-merkle-tree", "frame-benchmarking", @@ -10802,7 +10802,7 @@ dependencies = [ [[package]] name = "rococo-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support", "polkadot-primitives", @@ -11123,7 +11123,7 @@ dependencies = [ [[package]] name = "sc-allocator" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "log", "sp-core", @@ -11134,7 +11134,7 @@ dependencies = [ [[package]] name = "sc-authority-discovery" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "futures", @@ -11162,7 +11162,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "futures", "futures-timer", @@ -11185,7 +11185,7 @@ dependencies = [ [[package]] name = "sc-basic-authorship-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "aquamarine 0.3.2", "futures", @@ -11211,7 +11211,7 @@ dependencies = [ [[package]] name = "sc-block-builder" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "sc-client-api", @@ -11226,7 +11226,7 @@ dependencies = [ [[package]] name = "sc-block-builder-ver" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "aquamarine 0.1.12", "extrinsic-shuffler", @@ -11246,7 +11246,7 @@ dependencies = [ [[package]] name = "sc-chain-spec" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "memmap2", "sc-chain-spec-derive", @@ -11265,7 +11265,7 @@ dependencies = [ [[package]] name = "sc-chain-spec-derive" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -11276,7 +11276,7 @@ dependencies = [ [[package]] name = "sc-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "array-bytes", "chrono", @@ -11315,7 +11315,7 @@ dependencies = [ [[package]] name = "sc-client-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "fnv", "futures", @@ -11341,7 +11341,7 @@ dependencies = [ [[package]] name = "sc-client-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "hash-db", "kvdb", @@ -11367,7 +11367,7 @@ dependencies = [ [[package]] name = "sc-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "futures", @@ -11392,7 +11392,7 @@ dependencies = [ [[package]] name = "sc-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "futures", @@ -11421,7 +11421,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "fork-tree", @@ -11457,7 +11457,7 @@ dependencies = [ [[package]] name = "sc-consensus-babe-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "futures", "jsonrpsee", @@ -11479,7 +11479,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11513,7 +11513,7 @@ dependencies = [ [[package]] name = "sc-consensus-beefy-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "futures", "jsonrpsee", @@ -11532,7 +11532,7 @@ dependencies = [ [[package]] name = "sc-consensus-epochs" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "fork-tree", "parity-scale-codec", @@ -11545,7 +11545,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "ahash 0.8.6", "array-bytes", @@ -11586,7 +11586,7 @@ dependencies = [ [[package]] name = "sc-consensus-grandpa-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "finality-grandpa", "futures", @@ -11606,7 +11606,7 @@ dependencies = [ [[package]] name = "sc-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "futures", @@ -11631,7 +11631,7 @@ dependencies = [ [[package]] name = "sc-executor" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -11653,7 +11653,7 @@ dependencies = [ [[package]] name = "sc-executor-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "sc-allocator", "sp-maybe-compressed-blob", @@ -11665,7 +11665,7 @@ dependencies = [ [[package]] name = "sc-executor-wasmtime" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "anyhow", "cfg-if", @@ -11682,7 +11682,7 @@ dependencies = [ [[package]] name = "sc-informant" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "ansi_term", "futures", @@ -11698,7 +11698,7 @@ dependencies = [ [[package]] name = "sc-keystore" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "array-bytes", "parking_lot 0.12.1", @@ -11712,7 +11712,7 @@ dependencies = [ [[package]] name = "sc-network" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11753,7 +11753,7 @@ dependencies = [ [[package]] name = "sc-network-bitswap" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-channel 1.9.0", "cid", @@ -11773,7 +11773,7 @@ dependencies = [ [[package]] name = "sc-network-common" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "bitflags 1.3.2", @@ -11790,7 +11790,7 @@ dependencies = [ [[package]] name = "sc-network-gossip" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "ahash 0.8.6", "futures", @@ -11808,7 +11808,7 @@ dependencies = [ [[package]] name = "sc-network-light" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11829,7 +11829,7 @@ dependencies = [ [[package]] name = "sc-network-sync" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "array-bytes", "async-channel 1.9.0", @@ -11863,7 +11863,7 @@ dependencies = [ [[package]] name = "sc-network-transactions" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "array-bytes", "futures", @@ -11881,7 +11881,7 @@ dependencies = [ [[package]] name = "sc-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "array-bytes", "bytes", @@ -11915,7 +11915,7 @@ dependencies = [ [[package]] name = "sc-proposer-metrics" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "log", "substrate-prometheus-endpoint", @@ -11924,7 +11924,7 @@ dependencies = [ [[package]] name = "sc-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "futures", "jsonrpsee", @@ -11955,7 +11955,7 @@ dependencies = [ [[package]] name = "sc-rpc-api" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -11974,7 +11974,7 @@ dependencies = [ [[package]] name = "sc-rpc-server" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "http", "jsonrpsee", @@ -11989,7 +11989,7 @@ dependencies = [ [[package]] name = "sc-rpc-spec-v2" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "array-bytes", "futures", @@ -12017,7 +12017,7 @@ dependencies = [ [[package]] name = "sc-service" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "directories", @@ -12083,7 +12083,7 @@ dependencies = [ [[package]] name = "sc-state-db" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "log", "parity-scale-codec", @@ -12094,7 +12094,7 @@ dependencies = [ [[package]] name = "sc-storage-monitor" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "clap", "fs4", @@ -12108,7 +12108,7 @@ dependencies = [ [[package]] name = "sc-sync-state-rpc" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -12127,7 +12127,7 @@ dependencies = [ [[package]] name = "sc-sysinfo" version = "6.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "futures", "libc", @@ -12146,7 +12146,7 @@ dependencies = [ [[package]] name = "sc-telemetry" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "chrono", "futures", @@ -12165,7 +12165,7 @@ dependencies = [ [[package]] name = "sc-tracing" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "ansi_term", "atty", @@ -12194,7 +12194,7 @@ dependencies = [ [[package]] name = "sc-tracing-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "proc-macro-crate", "proc-macro2", @@ -12205,7 +12205,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "futures", @@ -12231,7 +12231,7 @@ dependencies = [ [[package]] name = "sc-transaction-pool-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "futures", @@ -12247,7 +12247,7 @@ dependencies = [ [[package]] name = "sc-utils" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-channel 1.9.0", "futures", @@ -12726,7 +12726,7 @@ checksum = "826167069c09b99d56f31e9ae5c99049e932a98c9dc2dac47645b08dbbf76ba7" [[package]] name = "slot-range-helper" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "enumn", "parity-scale-codec", @@ -12920,7 +12920,7 @@ dependencies = [ [[package]] name = "sp-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "hash-db", "log", @@ -12941,7 +12941,7 @@ dependencies = [ [[package]] name = "sp-api-proc-macro" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "Inflector", "blake2", @@ -12955,7 +12955,7 @@ dependencies = [ [[package]] name = "sp-application-crypto" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "scale-info", @@ -12968,7 +12968,7 @@ dependencies = [ [[package]] name = "sp-arithmetic" version = "16.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "integer-sqrt", "num-traits", @@ -12982,7 +12982,7 @@ dependencies = [ [[package]] name = "sp-authority-discovery" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "scale-info", @@ -12995,7 +12995,7 @@ dependencies = [ [[package]] name = "sp-block-builder" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "sp-api", "sp-inherents", @@ -13006,7 +13006,7 @@ dependencies = [ [[package]] name = "sp-blockchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "futures", "log", @@ -13024,7 +13024,7 @@ dependencies = [ [[package]] name = "sp-consensus" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "futures", @@ -13039,7 +13039,7 @@ dependencies = [ [[package]] name = "sp-consensus-aura" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "parity-scale-codec", @@ -13056,7 +13056,7 @@ dependencies = [ [[package]] name = "sp-consensus-babe" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "parity-scale-codec", @@ -13075,7 +13075,7 @@ dependencies = [ [[package]] name = "sp-consensus-beefy" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "lazy_static", "parity-scale-codec", @@ -13094,7 +13094,7 @@ dependencies = [ [[package]] name = "sp-consensus-grandpa" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "finality-grandpa", "log", @@ -13112,7 +13112,7 @@ dependencies = [ [[package]] name = "sp-consensus-slots" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "scale-info", @@ -13124,7 +13124,7 @@ dependencies = [ [[package]] name = "sp-core" version = "21.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "array-bytes", "arrayvec 0.7.4", @@ -13171,7 +13171,7 @@ dependencies = [ [[package]] name = "sp-core-hashing" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "blake2b_simd", "byteorder", @@ -13184,7 +13184,7 @@ dependencies = [ [[package]] name = "sp-core-hashing-proc-macro" version = "9.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "quote", "sp-core-hashing", @@ -13194,7 +13194,7 @@ dependencies = [ [[package]] name = "sp-database" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "kvdb", "parking_lot 0.12.1", @@ -13203,7 +13203,7 @@ dependencies = [ [[package]] name = "sp-debug-derive" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "proc-macro2", "quote", @@ -13213,7 +13213,7 @@ dependencies = [ [[package]] name = "sp-externalities" version = "0.19.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "environmental", "parity-scale-codec", @@ -13224,7 +13224,7 @@ dependencies = [ [[package]] name = "sp-genesis-builder" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "serde_json", "sp-api", @@ -13235,7 +13235,7 @@ dependencies = [ [[package]] name = "sp-inherents" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "impl-trait-for-tuples", @@ -13249,7 +13249,7 @@ dependencies = [ [[package]] name = "sp-io" version = "23.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bytes", "ed25519-dalek 2.1.0", @@ -13273,7 +13273,7 @@ dependencies = [ [[package]] name = "sp-keyring" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "lazy_static", "sp-core", @@ -13284,7 +13284,7 @@ dependencies = [ [[package]] name = "sp-keystore" version = "0.27.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "parking_lot 0.12.1", @@ -13296,7 +13296,7 @@ dependencies = [ [[package]] name = "sp-maybe-compressed-blob" version = "4.1.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "thiserror", "zstd 0.12.4", @@ -13305,7 +13305,7 @@ dependencies = [ [[package]] name = "sp-metadata-ir" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-metadata", "parity-scale-codec", @@ -13316,7 +13316,7 @@ dependencies = [ [[package]] name = "sp-mmr-primitives" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "ckb-merkle-mountain-range", "log", @@ -13334,7 +13334,7 @@ dependencies = [ [[package]] name = "sp-npos-elections" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "scale-info", @@ -13348,7 +13348,7 @@ dependencies = [ [[package]] name = "sp-offchain" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "sp-api", "sp-core", @@ -13358,7 +13358,7 @@ dependencies = [ [[package]] name = "sp-panic-handler" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "backtrace", "lazy_static", @@ -13368,7 +13368,7 @@ dependencies = [ [[package]] name = "sp-rpc" version = "6.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "rustc-hash", "serde", @@ -13378,7 +13378,7 @@ dependencies = [ [[package]] name = "sp-runtime" version = "24.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "either", "hash256-std-hasher", @@ -13401,7 +13401,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface" version = "17.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bytes", "impl-trait-for-tuples", @@ -13419,7 +13419,7 @@ dependencies = [ [[package]] name = "sp-runtime-interface-proc-macro" version = "11.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "Inflector", "proc-macro-crate", @@ -13431,7 +13431,7 @@ dependencies = [ [[package]] name = "sp-session" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "scale-info", @@ -13446,7 +13446,7 @@ dependencies = [ [[package]] name = "sp-staking" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "impl-trait-for-tuples", "parity-scale-codec", @@ -13460,7 +13460,7 @@ dependencies = [ [[package]] name = "sp-state-machine" version = "0.28.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "hash-db", "log", @@ -13481,7 +13481,7 @@ dependencies = [ [[package]] name = "sp-statement-store" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "aes-gcm 0.10.3", "curve25519-dalek 4.1.1", @@ -13505,12 +13505,12 @@ dependencies = [ [[package]] name = "sp-std" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" [[package]] name = "sp-storage" version = "13.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13523,7 +13523,7 @@ dependencies = [ [[package]] name = "sp-timestamp" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "parity-scale-codec", @@ -13536,7 +13536,7 @@ dependencies = [ [[package]] name = "sp-tracing" version = "10.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "sp-std", @@ -13548,7 +13548,7 @@ dependencies = [ [[package]] name = "sp-transaction-pool" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "sp-api", "sp-runtime", @@ -13557,7 +13557,7 @@ dependencies = [ [[package]] name = "sp-transaction-storage-proof" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "parity-scale-codec", @@ -13572,7 +13572,7 @@ dependencies = [ [[package]] name = "sp-trie" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "ahash 0.8.6", "hash-db", @@ -13595,7 +13595,7 @@ dependencies = [ [[package]] name = "sp-ver" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "parity-scale-codec", @@ -13612,7 +13612,7 @@ dependencies = [ [[package]] name = "sp-version" version = "22.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "impl-serde", "parity-scale-codec", @@ -13629,7 +13629,7 @@ dependencies = [ [[package]] name = "sp-version-proc-macro" version = "8.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "proc-macro2", @@ -13640,7 +13640,7 @@ dependencies = [ [[package]] name = "sp-wasm-interface" version = "14.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "anyhow", "impl-trait-for-tuples", @@ -13653,7 +13653,7 @@ dependencies = [ [[package]] name = "sp-weights" version = "20.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "parity-scale-codec", "scale-info", @@ -13732,7 +13732,7 @@ checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" [[package]] name = "staging-kusama-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "binary-merkle-tree", "bitvec", @@ -13838,7 +13838,7 @@ dependencies = [ [[package]] name = "staging-xcm" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "bounded-collections", "derivative", @@ -13855,7 +13855,7 @@ dependencies = [ [[package]] name = "staging-xcm-builder" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support", "frame-system", @@ -13877,7 +13877,7 @@ dependencies = [ [[package]] name = "staging-xcm-executor" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "environmental", "frame-benchmarking", @@ -14010,12 +14010,12 @@ dependencies = [ [[package]] name = "substrate-build-script-utils" version = "3.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" [[package]] name = "substrate-frame-rpc-system" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-system-rpc-runtime-api", "futures", @@ -14034,7 +14034,7 @@ dependencies = [ [[package]] name = "substrate-prometheus-endpoint" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "hyper", "log", @@ -14046,7 +14046,7 @@ dependencies = [ [[package]] name = "substrate-rpc-client" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "jsonrpsee", @@ -14059,7 +14059,7 @@ dependencies = [ [[package]] name = "substrate-state-trie-migration-rpc" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "jsonrpsee", "parity-scale-codec", @@ -14076,7 +14076,7 @@ dependencies = [ [[package]] name = "substrate-wasm-builder" version = "5.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "ansi_term", "build-helper", @@ -14618,7 +14618,7 @@ dependencies = [ [[package]] name = "tracing-gum" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "coarsetime", "polkadot-node-jaeger", @@ -14630,7 +14630,7 @@ dependencies = [ [[package]] name = "tracing-gum-proc-macro" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "expander 2.0.0", "proc-macro-crate", @@ -14760,7 +14760,7 @@ checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" [[package]] name = "try-runtime-cli" version = "0.10.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "async-trait", "clap", @@ -14978,9 +14978,10 @@ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" [[package]] name = "ver-api" version = "4.0.0-dev" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "derive_more", + "frame-support", "futures", "log", "parity-scale-codec", @@ -14991,6 +14992,7 @@ dependencies = [ "sp-runtime", "sp-std", "sp-ver", + "sp-weights", ] [[package]] @@ -15682,7 +15684,7 @@ dependencies = [ [[package]] name = "westend-runtime" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "binary-merkle-tree", "bitvec", @@ -15781,7 +15783,7 @@ dependencies = [ [[package]] name = "westend-runtime-constants" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "frame-support", "polkadot-primitives", @@ -16159,7 +16161,7 @@ dependencies = [ [[package]] name = "xcm-emulator" version = "0.1.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "cumulus-pallet-parachain-system", "cumulus-primitives-core", @@ -16191,7 +16193,7 @@ dependencies = [ [[package]] name = "xcm-procedural" version = "1.0.0" -source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#b79862964b5a21c3d8c32ad9eebc4978acc0b32d" +source = "git+https://github.com/mangata-finance//polkadot-sdk?branch=develop#cb771edb480c0fdd14caaa2903076bc0a67a0a11" dependencies = [ "Inflector", "proc-macro2", From 333aeec6ac307463c6fb460c806a04c21f5be07e Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Tue, 9 Jan 2024 13:12:00 +0100 Subject: [PATCH 12/13] apply benchmarks from ci --- .../src/weights/block_weights.rs | 21 +- .../src/weights/extrinsic_weights.rs | 21 +- .../src/weights/frame_system.rs | 66 ++--- .../src/weights/orml_asset_registry.rs | 10 +- .../mangata-kusama/src/weights/orml_tokens.rs | 30 +-- .../src/weights/pallet_bootstrap.rs | 18 +- .../src/weights/pallet_collective_mangata.rs | 206 ++++++++------- .../src/weights/pallet_crowdloan_rewards.rs | 46 ++-- .../src/weights/pallet_fee_lock.rs | 10 +- .../src/weights/pallet_issuance.rs | 22 +- .../weights/pallet_multipurpose_liquidity.rs | 10 +- .../src/weights/pallet_proof_of_stake.rs | 34 +-- .../src/weights/pallet_session.rs | 10 +- .../src/weights/pallet_timestamp.rs | 10 +- .../src/weights/pallet_treasury.rs | 42 +-- .../src/weights/pallet_utility_mangata.rs | 46 ++-- .../src/weights/pallet_vesting_mangata.rs | 86 +++--- .../mangata-kusama/src/weights/pallet_xyk.rs | 58 ++--- .../src/weights/parachain_staking.rs | 246 +++++++++--------- .../src/weights/block_weights.rs | 21 +- .../src/weights/extrinsic_weights.rs | 21 +- .../src/weights/frame_system.rs | 66 ++--- .../src/weights/orml_asset_registry.rs | 10 +- .../mangata-rococo/src/weights/orml_tokens.rs | 30 +-- .../src/weights/pallet_bootstrap.rs | 18 +- .../src/weights/pallet_collective_mangata.rs | 206 ++++++++------- .../src/weights/pallet_crowdloan_rewards.rs | 46 ++-- .../src/weights/pallet_fee_lock.rs | 10 +- .../src/weights/pallet_issuance.rs | 22 +- .../weights/pallet_multipurpose_liquidity.rs | 10 +- .../src/weights/pallet_proof_of_stake.rs | 34 +-- .../src/weights/pallet_session.rs | 10 +- .../src/weights/pallet_timestamp.rs | 10 +- .../src/weights/pallet_treasury.rs | 42 +-- .../src/weights/pallet_utility_mangata.rs | 46 ++-- .../src/weights/pallet_vesting_mangata.rs | 86 +++--- .../mangata-rococo/src/weights/pallet_xyk.rs | 58 ++--- .../src/weights/parachain_staking.rs | 246 +++++++++--------- 38 files changed, 998 insertions(+), 986 deletions(-) diff --git a/runtime/mangata-kusama/src/weights/block_weights.rs b/runtime/mangata-kusama/src/weights/block_weights.rs index 90c7e57cf7..c22fb4aa2d 100644 --- a/runtime/mangata-kusama/src/weights/block_weights.rs +++ b/runtime/mangata-kusama/src/weights/block_weights.rs @@ -1,6 +1,7 @@ + //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03 (Y/M/D) -//! HOSTNAME: `7f40434a6f98`, CPU: `AMD EPYC 7B13` +//! DATE: 2024-01-09 (Y/M/D) +//! HOSTNAME: `af2cb189db8d`, CPU: `AMD EPYC 7B13` //! //! SHORT-NAME: `block`, LONG-NAME: `BlockExecution`, RUNTIME: `Mangata Kusama Local` //! WARMUPS: `10`, REPEAT: `100` @@ -29,17 +30,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 27_843_717, 32_531_118 - /// Average: 29_873_562 - /// Median: 29_743_918 - /// Std-Dev: 918740.49 + /// Min, Max: 26_916_778, 31_638_388 + /// Average: 28_489_486 + /// Median: 28_464_418 + /// Std-Dev: 976072.11 /// /// Percentiles nanoseconds: - /// 99th: 32_046_977 - /// 95th: 31_472_667 - /// 75th: 30_410_057 + /// 99th: 31_225_878 + /// 95th: 30_092_347 + /// 75th: 29_178_298 pub const BlockExecutionWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(29_873_562), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(28_489_486), 0); } #[cfg(test)] diff --git a/runtime/mangata-kusama/src/weights/extrinsic_weights.rs b/runtime/mangata-kusama/src/weights/extrinsic_weights.rs index 143c674af2..73714415a6 100644 --- a/runtime/mangata-kusama/src/weights/extrinsic_weights.rs +++ b/runtime/mangata-kusama/src/weights/extrinsic_weights.rs @@ -1,6 +1,7 @@ + //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03 (Y/M/D) -//! HOSTNAME: `7f40434a6f98`, CPU: `AMD EPYC 7B13` +//! DATE: 2024-01-09 (Y/M/D) +//! HOSTNAME: `af2cb189db8d`, CPU: `AMD EPYC 7B13` //! //! SHORT-NAME: `extrinsic`, LONG-NAME: `ExtrinsicBase`, RUNTIME: `Mangata Kusama Local` //! WARMUPS: `10`, REPEAT: `100` @@ -29,17 +30,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 185_312, 198_829 - /// Average: 192_481 - /// Median: 192_653 - /// Std-Dev: 2986.81 + /// Min, Max: 181_689, 199_921 + /// Average: 187_355 + /// Median: 186_772 + /// Std-Dev: 3058.03 /// /// Percentiles nanoseconds: - /// 99th: 198_365 - /// 95th: 197_706 - /// 75th: 194_213 + /// 99th: 195_738 + /// 95th: 192_306 + /// 75th: 188_874 pub const ExtrinsicBaseWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(192_481), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(187_355), 0); } #[cfg(test)] diff --git a/runtime/mangata-kusama/src/weights/frame_system.rs b/runtime/mangata-kusama/src/weights/frame_system.rs index e500415691..f1f5326385 100644 --- a/runtime/mangata-kusama/src/weights/frame_system.rs +++ b/runtime/mangata-kusama/src/weights/frame_system.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for frame_system //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -69,21 +69,21 @@ pub trait WeightInfo { pub struct ModuleWeight(PhantomData); impl frame_system::WeightInfo for ModuleWeight { fn remark(b: u32, ) -> Weight { - (Weight::from_parts(8_068_407, 0)) + (Weight::from_parts(10_357_957, 0)) // Standard Error: 0 - .saturating_add((Weight::from_parts(301, 0)).saturating_mul(b as u64)) + .saturating_add((Weight::from_parts(293, 0)).saturating_mul(b as u64)) } fn remark_with_event(b: u32, ) -> Weight { - (Weight::from_parts(8_629_253, 0)) - // Standard Error: 3 - .saturating_add((Weight::from_parts(1_566, 0)).saturating_mul(b as u64)) + (Weight::from_parts(12_200_000, 0)) + // Standard Error: 2 + .saturating_add((Weight::from_parts(1_560, 0)).saturating_mul(b as u64)) } // Storage: `System::Digest` (r:1 w:1) // Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) // Storage: UNKNOWN KEY `0x3a686561707061676573` (r:0 w:1) // Proof: UNKNOWN KEY `0x3a686561707061676573` (r:0 w:1) fn set_heap_pages() -> Weight { - (Weight::from_parts(7_550_000, 0)) + (Weight::from_parts(6_710_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -102,32 +102,32 @@ impl frame_system::WeightInfo for ModuleWeight { // Storage: `ParachainSystem::DidSetValidationCode` (r:0 w:1) // Proof: `ParachainSystem::DidSetValidationCode` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_code() -> Weight { - (Weight::from_parts(153_609_518_000, 0)) + (Weight::from_parts(153_135_378_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_storage(i: u32, ) -> Weight { - (Weight::from_parts(4_029_000, 0)) - // Standard Error: 2_553 - .saturating_add((Weight::from_parts(1_209_775, 0)).saturating_mul(i as u64)) + (Weight::from_parts(3_910_000, 0)) + // Standard Error: 2_496 + .saturating_add((Weight::from_parts(1_116_112, 0)).saturating_mul(i as u64)) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(i as u64))) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn kill_storage(i: u32, ) -> Weight { - (Weight::from_parts(3_660_000, 0)) - // Standard Error: 1_695 - .saturating_add((Weight::from_parts(781_486, 0)).saturating_mul(i as u64)) + (Weight::from_parts(3_680_000, 0)) + // Standard Error: 1_407 + .saturating_add((Weight::from_parts(747_816, 0)).saturating_mul(i as u64)) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(i as u64))) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn kill_prefix(p: u32, ) -> Weight { - (Weight::from_parts(6_871_000, 0)) - // Standard Error: 2_662 - .saturating_add((Weight::from_parts(1_353_159, 0)).saturating_mul(p as u64)) + (Weight::from_parts(6_930_000, 0)) + // Standard Error: 2_411 + .saturating_add((Weight::from_parts(1_334_484, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(p as u64))) } @@ -136,21 +136,21 @@ impl frame_system::WeightInfo for ModuleWeight { // For backwards compatibility and tests impl WeightInfo for () { fn remark(b: u32, ) -> Weight { - (Weight::from_parts(8_068_407, 0)) + (Weight::from_parts(10_357_957, 0)) // Standard Error: 0 - .saturating_add((Weight::from_parts(301, 0)).saturating_mul(b as u64)) + .saturating_add((Weight::from_parts(293, 0)).saturating_mul(b as u64)) } fn remark_with_event(b: u32, ) -> Weight { - (Weight::from_parts(8_629_253, 0)) - // Standard Error: 3 - .saturating_add((Weight::from_parts(1_566, 0)).saturating_mul(b as u64)) + (Weight::from_parts(12_200_000, 0)) + // Standard Error: 2 + .saturating_add((Weight::from_parts(1_560, 0)).saturating_mul(b as u64)) } // Storage: `System::Digest` (r:1 w:1) // Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) // Storage: UNKNOWN KEY `0x3a686561707061676573` (r:0 w:1) // Proof: UNKNOWN KEY `0x3a686561707061676573` (r:0 w:1) fn set_heap_pages() -> Weight { - (Weight::from_parts(7_550_000, 0)) + (Weight::from_parts(6_710_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -169,32 +169,32 @@ impl WeightInfo for () { // Storage: `ParachainSystem::DidSetValidationCode` (r:0 w:1) // Proof: `ParachainSystem::DidSetValidationCode` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_code() -> Weight { - (Weight::from_parts(153_609_518_000, 0)) + (Weight::from_parts(153_135_378_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_storage(i: u32, ) -> Weight { - (Weight::from_parts(4_029_000, 0)) - // Standard Error: 2_553 - .saturating_add((Weight::from_parts(1_209_775, 0)).saturating_mul(i as u64)) + (Weight::from_parts(3_910_000, 0)) + // Standard Error: 2_496 + .saturating_add((Weight::from_parts(1_116_112, 0)).saturating_mul(i as u64)) .saturating_add(RocksDbWeight::get().writes((1 as u64).saturating_mul(i as u64))) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn kill_storage(i: u32, ) -> Weight { - (Weight::from_parts(3_660_000, 0)) - // Standard Error: 1_695 - .saturating_add((Weight::from_parts(781_486, 0)).saturating_mul(i as u64)) + (Weight::from_parts(3_680_000, 0)) + // Standard Error: 1_407 + .saturating_add((Weight::from_parts(747_816, 0)).saturating_mul(i as u64)) .saturating_add(RocksDbWeight::get().writes((1 as u64).saturating_mul(i as u64))) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn kill_prefix(p: u32, ) -> Weight { - (Weight::from_parts(6_871_000, 0)) - // Standard Error: 2_662 - .saturating_add((Weight::from_parts(1_353_159, 0)).saturating_mul(p as u64)) + (Weight::from_parts(6_930_000, 0)) + // Standard Error: 2_411 + .saturating_add((Weight::from_parts(1_334_484, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(RocksDbWeight::get().writes((1 as u64).saturating_mul(p as u64))) } diff --git a/runtime/mangata-kusama/src/weights/orml_asset_registry.rs b/runtime/mangata-kusama/src/weights/orml_asset_registry.rs index a75a7ffaa7..1ee3d8f7c8 100644 --- a/runtime/mangata-kusama/src/weights/orml_asset_registry.rs +++ b/runtime/mangata-kusama/src/weights/orml_asset_registry.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for orml_asset_registry //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -72,7 +72,7 @@ impl orml_asset_registry::WeightInfo for ModuleWeight Weight { - (Weight::from_parts(44_920_000, 0)) + (Weight::from_parts(44_310_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -81,7 +81,7 @@ impl orml_asset_registry::WeightInfo for ModuleWeight Weight { - (Weight::from_parts(30_110_000, 0)) + (Weight::from_parts(28_690_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -98,7 +98,7 @@ impl WeightInfo for () { // Storage: `AssetRegistry::LocationToAssetId` (r:1 w:1) // Proof: `AssetRegistry::LocationToAssetId` (`max_values`: None, `max_size`: Some(614), added: 3089, mode: `MaxEncodedLen`) fn register_asset() -> Weight { - (Weight::from_parts(44_920_000, 0)) + (Weight::from_parts(44_310_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -107,7 +107,7 @@ impl WeightInfo for () { // Storage: `AssetRegistry::LocationToAssetId` (r:1 w:1) // Proof: `AssetRegistry::LocationToAssetId` (`max_values`: None, `max_size`: Some(614), added: 3089, mode: `MaxEncodedLen`) fn update_asset() -> Weight { - (Weight::from_parts(30_110_000, 0)) + (Weight::from_parts(28_690_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/orml_tokens.rs b/runtime/mangata-kusama/src/weights/orml_tokens.rs index 08779e91ef..6e8e1e4f30 100644 --- a/runtime/mangata-kusama/src/weights/orml_tokens.rs +++ b/runtime/mangata-kusama/src/weights/orml_tokens.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for orml_tokens //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -73,7 +73,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer() -> Weight { - (Weight::from_parts(55_440_000, 0)) + (Weight::from_parts(51_859_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -82,7 +82,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer_all() -> Weight { - (Weight::from_parts(58_409_000, 0)) + (Weight::from_parts(56_780_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -91,7 +91,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer_keep_alive() -> Weight { - (Weight::from_parts(49_520_000, 0)) + (Weight::from_parts(51_570_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -100,7 +100,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn force_transfer() -> Weight { - (Weight::from_parts(58_090_000, 0)) + (Weight::from_parts(53_311_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -109,7 +109,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn set_balance() -> Weight { - (Weight::from_parts(29_440_000, 0)) + (Weight::from_parts(28_760_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -122,7 +122,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn create() -> Weight { - (Weight::from_parts(56_320_000, 0)) + (Weight::from_parts(55_380_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -135,7 +135,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn mint() -> Weight { - (Weight::from_parts(55_450_000, 0)) + (Weight::from_parts(59_940_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -148,7 +148,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer() -> Weight { - (Weight::from_parts(55_440_000, 0)) + (Weight::from_parts(51_859_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -157,7 +157,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer_all() -> Weight { - (Weight::from_parts(58_409_000, 0)) + (Weight::from_parts(56_780_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -166,7 +166,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer_keep_alive() -> Weight { - (Weight::from_parts(49_520_000, 0)) + (Weight::from_parts(51_570_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -175,7 +175,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn force_transfer() -> Weight { - (Weight::from_parts(58_090_000, 0)) + (Weight::from_parts(53_311_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -184,7 +184,7 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn set_balance() -> Weight { - (Weight::from_parts(29_440_000, 0)) + (Weight::from_parts(28_760_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -197,7 +197,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn create() -> Weight { - (Weight::from_parts(56_320_000, 0)) + (Weight::from_parts(55_380_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -210,7 +210,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn mint() -> Weight { - (Weight::from_parts(55_450_000, 0)) + (Weight::from_parts(59_940_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/pallet_bootstrap.rs b/runtime/mangata-kusama/src/weights/pallet_bootstrap.rs index e14436d06d..4eeba03733 100644 --- a/runtime/mangata-kusama/src/weights/pallet_bootstrap.rs +++ b/runtime/mangata-kusama/src/weights/pallet_bootstrap.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_bootstrap //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -78,7 +78,7 @@ impl pallet_bootstrap::WeightInfo for ModuleWeight { // Storage: `Bootstrap::ActivePair` (r:0 w:1) // Proof: `Bootstrap::ActivePair` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_bootstrap() -> Weight { - (Weight::from_parts(31_660_000, 0)) + (Weight::from_parts(31_320_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -103,7 +103,7 @@ impl pallet_bootstrap::WeightInfo for ModuleWeight { // Storage: `Bootstrap::ProvisionAccounts` (r:0 w:1) // Proof: `Bootstrap::ProvisionAccounts` (`max_values`: None, `max_size`: None, mode: `Measured`) fn provision() -> Weight { - (Weight::from_parts(97_651_000, 0)) + (Weight::from_parts(95_910_000, 0)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -136,7 +136,7 @@ impl pallet_bootstrap::WeightInfo for ModuleWeight { // Storage: `Bootstrap::ProvisionAccounts` (r:0 w:1) // Proof: `Bootstrap::ProvisionAccounts` (`max_values`: None, `max_size`: None, mode: `Measured`) fn claim_and_activate_liquidity_tokens() -> Weight { - (Weight::from_parts(239_080_000, 0)) + (Weight::from_parts(221_220_000, 0)) .saturating_add(T::DbWeight::get().reads(17 as u64)) .saturating_add(T::DbWeight::get().writes(8 as u64)) } @@ -167,7 +167,7 @@ impl pallet_bootstrap::WeightInfo for ModuleWeight { // Storage: `Bootstrap::ActivePair` (r:0 w:1) // Proof: `Bootstrap::ActivePair` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn finalize() -> Weight { - (Weight::from_parts(76_100_000, 0)) + (Weight::from_parts(73_640_000, 0)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(7 as u64)) } @@ -188,7 +188,7 @@ impl WeightInfo for () { // Storage: `Bootstrap::ActivePair` (r:0 w:1) // Proof: `Bootstrap::ActivePair` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_bootstrap() -> Weight { - (Weight::from_parts(31_660_000, 0)) + (Weight::from_parts(31_320_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -213,7 +213,7 @@ impl WeightInfo for () { // Storage: `Bootstrap::ProvisionAccounts` (r:0 w:1) // Proof: `Bootstrap::ProvisionAccounts` (`max_values`: None, `max_size`: None, mode: `Measured`) fn provision() -> Weight { - (Weight::from_parts(97_651_000, 0)) + (Weight::from_parts(95_910_000, 0)) .saturating_add(RocksDbWeight::get().reads(10 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -246,7 +246,7 @@ impl WeightInfo for () { // Storage: `Bootstrap::ProvisionAccounts` (r:0 w:1) // Proof: `Bootstrap::ProvisionAccounts` (`max_values`: None, `max_size`: None, mode: `Measured`) fn claim_and_activate_liquidity_tokens() -> Weight { - (Weight::from_parts(239_080_000, 0)) + (Weight::from_parts(221_220_000, 0)) .saturating_add(RocksDbWeight::get().reads(17 as u64)) .saturating_add(RocksDbWeight::get().writes(8 as u64)) } @@ -277,7 +277,7 @@ impl WeightInfo for () { // Storage: `Bootstrap::ActivePair` (r:0 w:1) // Proof: `Bootstrap::ActivePair` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn finalize() -> Weight { - (Weight::from_parts(76_100_000, 0)) + (Weight::from_parts(73_640_000, 0)) .saturating_add(RocksDbWeight::get().reads(10 as u64)) .saturating_add(RocksDbWeight::get().writes(7 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/pallet_collective_mangata.rs b/runtime/mangata-kusama/src/weights/pallet_collective_mangata.rs index 156c6147d1..a03ba1258c 100644 --- a/runtime/mangata-kusama/src/weights/pallet_collective_mangata.rs +++ b/runtime/mangata-kusama/src/weights/pallet_collective_mangata.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_collective_mangata //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -80,11 +80,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Prime` (r:0 w:1) // Proof: `Council::Prime` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_members(m: u32, _n: u32, p: u32, ) -> Weight { - (Weight::from_parts(50_090_000, 0)) - // Standard Error: 72_056 - .saturating_add((Weight::from_parts(4_845_252, 0)).saturating_mul(m as u64)) - // Standard Error: 72_056 - .saturating_add((Weight::from_parts(9_794_059, 0)).saturating_mul(p as u64)) + (Weight::from_parts(49_500_000, 0)) + // Standard Error: 70_155 + .saturating_add((Weight::from_parts(4_698_580, 0)).saturating_mul(m as u64)) + // Standard Error: 70_155 + .saturating_add((Weight::from_parts(9_659_834, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(T::DbWeight::get().writes(2 as u64)) @@ -93,11 +93,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Members` (r:1 w:0) // Proof: `Council::Members` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute(b: u32, m: u32, ) -> Weight { - (Weight::from_parts(30_607_433, 0)) - // Standard Error: 163 - .saturating_add((Weight::from_parts(1_259, 0)).saturating_mul(b as u64)) - // Standard Error: 1_683 - .saturating_add((Weight::from_parts(18_998, 0)).saturating_mul(m as u64)) + (Weight::from_parts(29_220_221, 0)) + // Standard Error: 140 + .saturating_add((Weight::from_parts(2_429, 0)).saturating_mul(b as u64)) + // Standard Error: 1_443 + .saturating_add((Weight::from_parts(4_412, 0)).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) } // Storage: `Council::Members` (r:1 w:0) @@ -105,11 +105,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::ProposalOf` (r:1 w:0) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn propose_execute(b: u32, m: u32, ) -> Weight { - (Weight::from_parts(34_212_021, 0)) - // Standard Error: 182 - .saturating_add((Weight::from_parts(2_073, 0)).saturating_mul(b as u64)) - // Standard Error: 1_878 - .saturating_add((Weight::from_parts(35_729, 0)).saturating_mul(m as u64)) + (Weight::from_parts(31_829_788, 0)) + // Standard Error: 151 + .saturating_add((Weight::from_parts(2_231, 0)).saturating_mul(b as u64)) + // Standard Error: 1_557 + .saturating_add((Weight::from_parts(35_246, 0)).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) } // Storage: `Council::Members` (r:1 w:0) @@ -125,11 +125,13 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Voting` (r:0 w:1) // Proof: `Council::Voting` (`max_values`: None, `max_size`: None, mode: `Measured`) fn propose_proposed(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(51_719_195, 0)) - // Standard Error: 343 - .saturating_add((Weight::from_parts(4_806, 0)).saturating_mul(b as u64)) - // Standard Error: 3_540 - .saturating_add((Weight::from_parts(307_635, 0)).saturating_mul(p as u64)) + (Weight::from_parts(46_091_730, 0)) + // Standard Error: 319 + .saturating_add((Weight::from_parts(5_410, 0)).saturating_mul(b as u64)) + // Standard Error: 3_332 + .saturating_add((Weight::from_parts(14_379, 0)).saturating_mul(m as u64)) + // Standard Error: 3_289 + .saturating_add((Weight::from_parts(307_260, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -138,9 +140,9 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Voting` (r:1 w:1) // Proof: `Council::Voting` (`max_values`: None, `max_size`: None, mode: `Measured`) fn vote(m: u32, ) -> Weight { - (Weight::from_parts(46_719_287, 0)) - // Standard Error: 3_404 - .saturating_add((Weight::from_parts(20_273, 0)).saturating_mul(m as u64)) + (Weight::from_parts(43_669_294, 0)) + // Standard Error: 2_626 + .saturating_add((Weight::from_parts(43_911, 0)).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -155,11 +157,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn close_early_disapproved(m: u32, p: u32, ) -> Weight { - (Weight::from_parts(66_985_259, 0)) - // Standard Error: 4_430 - .saturating_add((Weight::from_parts(47_134, 0)).saturating_mul(m as u64)) - // Standard Error: 4_320 - .saturating_add((Weight::from_parts(316_910, 0)).saturating_mul(p as u64)) + (Weight::from_parts(62_669_590, 0)) + // Standard Error: 4_434 + .saturating_add((Weight::from_parts(61_080, 0)).saturating_mul(m as u64)) + // Standard Error: 4_324 + .saturating_add((Weight::from_parts(335_148, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -174,13 +176,13 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Proposals` (r:1 w:1) // Proof: `Council::Proposals` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn close_early_approved(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(86_026_209, 0)) - // Standard Error: 595 - .saturating_add((Weight::from_parts(9_907, 0)).saturating_mul(b as u64)) - // Standard Error: 6_297 - .saturating_add((Weight::from_parts(40_342, 0)).saturating_mul(m as u64)) - // Standard Error: 6_138 - .saturating_add((Weight::from_parts(392_639, 0)).saturating_mul(p as u64)) + (Weight::from_parts(93_764_711, 0)) + // Standard Error: 617 + .saturating_add((Weight::from_parts(4_363, 0)).saturating_mul(b as u64)) + // Standard Error: 6_521 + .saturating_add((Weight::from_parts(10_992, 0)).saturating_mul(m as u64)) + // Standard Error: 6_357 + .saturating_add((Weight::from_parts(342_855, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -197,11 +199,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn close_disapproved(m: u32, p: u32, ) -> Weight { - (Weight::from_parts(74_401_218, 0)) - // Standard Error: 4_419 - .saturating_add((Weight::from_parts(31_096, 0)).saturating_mul(m as u64)) - // Standard Error: 4_309 - .saturating_add((Weight::from_parts(296_121, 0)).saturating_mul(p as u64)) + (Weight::from_parts(70_879_635, 0)) + // Standard Error: 4_851 + .saturating_add((Weight::from_parts(35_945, 0)).saturating_mul(m as u64)) + // Standard Error: 4_730 + .saturating_add((Weight::from_parts(309_764, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -218,13 +220,13 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Proposals` (r:1 w:1) // Proof: `Council::Proposals` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn close_approved(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(98_643_873, 0)) - // Standard Error: 560 - .saturating_add((Weight::from_parts(7_326, 0)).saturating_mul(b as u64)) - // Standard Error: 5_927 - .saturating_add((Weight::from_parts(16_387, 0)).saturating_mul(m as u64)) - // Standard Error: 5_778 - .saturating_add((Weight::from_parts(357_802, 0)).saturating_mul(p as u64)) + (Weight::from_parts(88_548_132, 0)) + // Standard Error: 616 + .saturating_add((Weight::from_parts(8_945, 0)).saturating_mul(b as u64)) + // Standard Error: 6_515 + .saturating_add((Weight::from_parts(53_020, 0)).saturating_mul(m as u64)) + // Standard Error: 6_351 + .saturating_add((Weight::from_parts(379_369, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -237,9 +239,9 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn disapprove_proposal(p: u32, ) -> Weight { - (Weight::from_parts(35_738_384, 0)) - // Standard Error: 4_396 - .saturating_add((Weight::from_parts(291_651, 0)).saturating_mul(p as u64)) + (Weight::from_parts(35_334_531, 0)) + // Standard Error: 3_100 + .saturating_add((Weight::from_parts(261_922, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -256,11 +258,11 @@ impl WeightInfo for () { // Storage: `Council::Prime` (r:0 w:1) // Proof: `Council::Prime` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_members(m: u32, _n: u32, p: u32, ) -> Weight { - (Weight::from_parts(50_090_000, 0)) - // Standard Error: 72_056 - .saturating_add((Weight::from_parts(4_845_252, 0)).saturating_mul(m as u64)) - // Standard Error: 72_056 - .saturating_add((Weight::from_parts(9_794_059, 0)).saturating_mul(p as u64)) + (Weight::from_parts(49_500_000, 0)) + // Standard Error: 70_155 + .saturating_add((Weight::from_parts(4_698_580, 0)).saturating_mul(m as u64)) + // Standard Error: 70_155 + .saturating_add((Weight::from_parts(9_659_834, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(RocksDbWeight::get().writes(2 as u64)) @@ -269,11 +271,11 @@ impl WeightInfo for () { // Storage: `Council::Members` (r:1 w:0) // Proof: `Council::Members` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute(b: u32, m: u32, ) -> Weight { - (Weight::from_parts(30_607_433, 0)) - // Standard Error: 163 - .saturating_add((Weight::from_parts(1_259, 0)).saturating_mul(b as u64)) - // Standard Error: 1_683 - .saturating_add((Weight::from_parts(18_998, 0)).saturating_mul(m as u64)) + (Weight::from_parts(29_220_221, 0)) + // Standard Error: 140 + .saturating_add((Weight::from_parts(2_429, 0)).saturating_mul(b as u64)) + // Standard Error: 1_443 + .saturating_add((Weight::from_parts(4_412, 0)).saturating_mul(m as u64)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) } // Storage: `Council::Members` (r:1 w:0) @@ -281,11 +283,11 @@ impl WeightInfo for () { // Storage: `Council::ProposalOf` (r:1 w:0) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn propose_execute(b: u32, m: u32, ) -> Weight { - (Weight::from_parts(34_212_021, 0)) - // Standard Error: 182 - .saturating_add((Weight::from_parts(2_073, 0)).saturating_mul(b as u64)) - // Standard Error: 1_878 - .saturating_add((Weight::from_parts(35_729, 0)).saturating_mul(m as u64)) + (Weight::from_parts(31_829_788, 0)) + // Standard Error: 151 + .saturating_add((Weight::from_parts(2_231, 0)).saturating_mul(b as u64)) + // Standard Error: 1_557 + .saturating_add((Weight::from_parts(35_246, 0)).saturating_mul(m as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) } // Storage: `Council::Members` (r:1 w:0) @@ -301,11 +303,13 @@ impl WeightInfo for () { // Storage: `Council::Voting` (r:0 w:1) // Proof: `Council::Voting` (`max_values`: None, `max_size`: None, mode: `Measured`) fn propose_proposed(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(51_719_195, 0)) - // Standard Error: 343 - .saturating_add((Weight::from_parts(4_806, 0)).saturating_mul(b as u64)) - // Standard Error: 3_540 - .saturating_add((Weight::from_parts(307_635, 0)).saturating_mul(p as u64)) + (Weight::from_parts(46_091_730, 0)) + // Standard Error: 319 + .saturating_add((Weight::from_parts(5_410, 0)).saturating_mul(b as u64)) + // Standard Error: 3_332 + .saturating_add((Weight::from_parts(14_379, 0)).saturating_mul(m as u64)) + // Standard Error: 3_289 + .saturating_add((Weight::from_parts(307_260, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } @@ -314,9 +318,9 @@ impl WeightInfo for () { // Storage: `Council::Voting` (r:1 w:1) // Proof: `Council::Voting` (`max_values`: None, `max_size`: None, mode: `Measured`) fn vote(m: u32, ) -> Weight { - (Weight::from_parts(46_719_287, 0)) - // Standard Error: 3_404 - .saturating_add((Weight::from_parts(20_273, 0)).saturating_mul(m as u64)) + (Weight::from_parts(43_669_294, 0)) + // Standard Error: 2_626 + .saturating_add((Weight::from_parts(43_911, 0)).saturating_mul(m as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -331,11 +335,11 @@ impl WeightInfo for () { // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn close_early_disapproved(m: u32, p: u32, ) -> Weight { - (Weight::from_parts(66_985_259, 0)) - // Standard Error: 4_430 - .saturating_add((Weight::from_parts(47_134, 0)).saturating_mul(m as u64)) - // Standard Error: 4_320 - .saturating_add((Weight::from_parts(316_910, 0)).saturating_mul(p as u64)) + (Weight::from_parts(62_669_590, 0)) + // Standard Error: 4_434 + .saturating_add((Weight::from_parts(61_080, 0)).saturating_mul(m as u64)) + // Standard Error: 4_324 + .saturating_add((Weight::from_parts(335_148, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -350,13 +354,13 @@ impl WeightInfo for () { // Storage: `Council::Proposals` (r:1 w:1) // Proof: `Council::Proposals` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn close_early_approved(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(86_026_209, 0)) - // Standard Error: 595 - .saturating_add((Weight::from_parts(9_907, 0)).saturating_mul(b as u64)) - // Standard Error: 6_297 - .saturating_add((Weight::from_parts(40_342, 0)).saturating_mul(m as u64)) - // Standard Error: 6_138 - .saturating_add((Weight::from_parts(392_639, 0)).saturating_mul(p as u64)) + (Weight::from_parts(93_764_711, 0)) + // Standard Error: 617 + .saturating_add((Weight::from_parts(4_363, 0)).saturating_mul(b as u64)) + // Standard Error: 6_521 + .saturating_add((Weight::from_parts(10_992, 0)).saturating_mul(m as u64)) + // Standard Error: 6_357 + .saturating_add((Weight::from_parts(342_855, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -373,11 +377,11 @@ impl WeightInfo for () { // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn close_disapproved(m: u32, p: u32, ) -> Weight { - (Weight::from_parts(74_401_218, 0)) - // Standard Error: 4_419 - .saturating_add((Weight::from_parts(31_096, 0)).saturating_mul(m as u64)) - // Standard Error: 4_309 - .saturating_add((Weight::from_parts(296_121, 0)).saturating_mul(p as u64)) + (Weight::from_parts(70_879_635, 0)) + // Standard Error: 4_851 + .saturating_add((Weight::from_parts(35_945, 0)).saturating_mul(m as u64)) + // Standard Error: 4_730 + .saturating_add((Weight::from_parts(309_764, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -394,13 +398,13 @@ impl WeightInfo for () { // Storage: `Council::Proposals` (r:1 w:1) // Proof: `Council::Proposals` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn close_approved(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(98_643_873, 0)) - // Standard Error: 560 - .saturating_add((Weight::from_parts(7_326, 0)).saturating_mul(b as u64)) - // Standard Error: 5_927 - .saturating_add((Weight::from_parts(16_387, 0)).saturating_mul(m as u64)) - // Standard Error: 5_778 - .saturating_add((Weight::from_parts(357_802, 0)).saturating_mul(p as u64)) + (Weight::from_parts(88_548_132, 0)) + // Standard Error: 616 + .saturating_add((Weight::from_parts(8_945, 0)).saturating_mul(b as u64)) + // Standard Error: 6_515 + .saturating_add((Weight::from_parts(53_020, 0)).saturating_mul(m as u64)) + // Standard Error: 6_351 + .saturating_add((Weight::from_parts(379_369, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -413,9 +417,9 @@ impl WeightInfo for () { // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn disapprove_proposal(p: u32, ) -> Weight { - (Weight::from_parts(35_738_384, 0)) - // Standard Error: 4_396 - .saturating_add((Weight::from_parts(291_651, 0)).saturating_mul(p as u64)) + (Weight::from_parts(35_334_531, 0)) + // Standard Error: 3_100 + .saturating_add((Weight::from_parts(261_922, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/pallet_crowdloan_rewards.rs b/runtime/mangata-kusama/src/weights/pallet_crowdloan_rewards.rs index c457c66b7c..276b1e97c1 100644 --- a/runtime/mangata-kusama/src/weights/pallet_crowdloan_rewards.rs +++ b/runtime/mangata-kusama/src/weights/pallet_crowdloan_rewards.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_crowdloan_rewards //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -77,7 +77,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::CrowdloanAllocation` (r:0 w:1) // Proof: `Crowdloan::CrowdloanAllocation` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_crowdloan_allocation() -> Weight { - (Weight::from_parts(14_470_000, 0)) + (Weight::from_parts(12_770_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -98,9 +98,9 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::AccountsPayable` (r:100 w:100) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn initialize_reward_vec(x: u32, ) -> Weight { - (Weight::from_parts(141_666_911, 0)) - // Standard Error: 73_439 - .saturating_add((Weight::from_parts(26_080_457, 0)).saturating_mul(x as u64)) + (Weight::from_parts(140_806_355, 0)) + // Standard Error: 72_364 + .saturating_add((Weight::from_parts(25_290_013, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(2 as u64)) @@ -119,7 +119,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::CrowdloanPeriod` (r:0 w:1) // Proof: `Crowdloan::CrowdloanPeriod` (`max_values`: None, `max_size`: None, mode: `Measured`) fn complete_initialization() -> Weight { - (Weight::from_parts(27_570_000, 0)) + (Weight::from_parts(26_630_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -144,7 +144,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn claim() -> Weight { - (Weight::from_parts(131_760_000, 0)) + (Weight::from_parts(130_990_000, 0)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -153,7 +153,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::AccountsPayable` (r:2 w:2) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn update_reward_address() -> Weight { - (Weight::from_parts(35_020_000, 0)) + (Weight::from_parts(34_830_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -166,7 +166,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::AccountsPayable` (r:1 w:1) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn associate_native_identity() -> Weight { - (Weight::from_parts(115_070_000, 0)) + (Weight::from_parts(117_000_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -175,9 +175,9 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::AccountsPayable` (r:2 w:2) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn change_association_with_relay_keys(x: u32, ) -> Weight { - (Weight::from_parts(22_606_472, 0)) - // Standard Error: 117_254 - .saturating_add((Weight::from_parts(62_758_102, 0)).saturating_mul(x as u64)) + (Weight::from_parts(27_532_509, 0)) + // Standard Error: 138_004 + .saturating_add((Weight::from_parts(60_668_712, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -194,7 +194,7 @@ impl WeightInfo for () { // Storage: `Crowdloan::CrowdloanAllocation` (r:0 w:1) // Proof: `Crowdloan::CrowdloanAllocation` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_crowdloan_allocation() -> Weight { - (Weight::from_parts(14_470_000, 0)) + (Weight::from_parts(12_770_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -215,9 +215,9 @@ impl WeightInfo for () { // Storage: `Crowdloan::AccountsPayable` (r:100 w:100) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn initialize_reward_vec(x: u32, ) -> Weight { - (Weight::from_parts(141_666_911, 0)) - // Standard Error: 73_439 - .saturating_add((Weight::from_parts(26_080_457, 0)).saturating_mul(x as u64)) + (Weight::from_parts(140_806_355, 0)) + // Standard Error: 72_364 + .saturating_add((Weight::from_parts(25_290_013, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().reads((3 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(2 as u64)) @@ -236,7 +236,7 @@ impl WeightInfo for () { // Storage: `Crowdloan::CrowdloanPeriod` (r:0 w:1) // Proof: `Crowdloan::CrowdloanPeriod` (`max_values`: None, `max_size`: None, mode: `Measured`) fn complete_initialization() -> Weight { - (Weight::from_parts(27_570_000, 0)) + (Weight::from_parts(26_630_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -261,7 +261,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn claim() -> Weight { - (Weight::from_parts(131_760_000, 0)) + (Weight::from_parts(130_990_000, 0)) .saturating_add(RocksDbWeight::get().reads(10 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -270,7 +270,7 @@ impl WeightInfo for () { // Storage: `Crowdloan::AccountsPayable` (r:2 w:2) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn update_reward_address() -> Weight { - (Weight::from_parts(35_020_000, 0)) + (Weight::from_parts(34_830_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -283,7 +283,7 @@ impl WeightInfo for () { // Storage: `Crowdloan::AccountsPayable` (r:1 w:1) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn associate_native_identity() -> Weight { - (Weight::from_parts(115_070_000, 0)) + (Weight::from_parts(117_000_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -292,9 +292,9 @@ impl WeightInfo for () { // Storage: `Crowdloan::AccountsPayable` (r:2 w:2) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn change_association_with_relay_keys(x: u32, ) -> Weight { - (Weight::from_parts(22_606_472, 0)) - // Standard Error: 117_254 - .saturating_add((Weight::from_parts(62_758_102, 0)).saturating_mul(x as u64)) + (Weight::from_parts(27_532_509, 0)) + // Standard Error: 138_004 + .saturating_add((Weight::from_parts(60_668_712, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/pallet_fee_lock.rs b/runtime/mangata-kusama/src/weights/pallet_fee_lock.rs index c3b7988d63..d2b6013d3c 100644 --- a/runtime/mangata-kusama/src/weights/pallet_fee_lock.rs +++ b/runtime/mangata-kusama/src/weights/pallet_fee_lock.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_fee_lock //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -66,7 +66,7 @@ impl pallet_fee_lock::WeightInfo for ModuleWeight { // Storage: `FeeLock::FeeLockMetadata` (r:1 w:1) // Proof: `FeeLock::FeeLockMetadata` (`max_values`: Some(1), `max_size`: Some(438), added: 933, mode: `MaxEncodedLen`) fn update_fee_lock_metadata() -> Weight { - (Weight::from_parts(28_480_000, 0)) + (Weight::from_parts(25_440_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -81,7 +81,7 @@ impl pallet_fee_lock::WeightInfo for ModuleWeight { // Storage: `FeeLock::UnlockQueue` (r:1 w:1) // Proof: `FeeLock::UnlockQueue` (`max_values`: None, `max_size`: Some(56), added: 2531, mode: `MaxEncodedLen`) fn unlock_fee() -> Weight { - (Weight::from_parts(56_480_000, 0)) + (Weight::from_parts(51_730_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -92,7 +92,7 @@ impl WeightInfo for () { // Storage: `FeeLock::FeeLockMetadata` (r:1 w:1) // Proof: `FeeLock::FeeLockMetadata` (`max_values`: Some(1), `max_size`: Some(438), added: 933, mode: `MaxEncodedLen`) fn update_fee_lock_metadata() -> Weight { - (Weight::from_parts(28_480_000, 0)) + (Weight::from_parts(25_440_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -107,7 +107,7 @@ impl WeightInfo for () { // Storage: `FeeLock::UnlockQueue` (r:1 w:1) // Proof: `FeeLock::UnlockQueue` (`max_values`: None, `max_size`: Some(56), added: 2531, mode: `MaxEncodedLen`) fn unlock_fee() -> Weight { - (Weight::from_parts(56_480_000, 0)) + (Weight::from_parts(51_730_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/pallet_issuance.rs b/runtime/mangata-kusama/src/weights/pallet_issuance.rs index 780afe797b..80133fbb4c 100644 --- a/runtime/mangata-kusama/src/weights/pallet_issuance.rs +++ b/runtime/mangata-kusama/src/weights/pallet_issuance.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_issuance //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -71,14 +71,14 @@ impl pallet_issuance::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:0) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn init_issuance_config() -> Weight { - (Weight::from_parts(27_420_000, 0)) + (Weight::from_parts(24_910_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `Issuance::IsTGEFinalized` (r:1 w:1) // Proof: `Issuance::IsTGEFinalized` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn finalize_tge() -> Weight { - (Weight::from_parts(16_590_000, 0)) + (Weight::from_parts(14_820_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -97,9 +97,9 @@ impl pallet_issuance::WeightInfo for ModuleWeight { // Storage: `Issuance::TGETotal` (r:1 w:1) // Proof: `Issuance::TGETotal` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_tge(x: u32, ) -> Weight { - (Weight::from_parts(285_200_000, 0)) - // Standard Error: 142_818 - .saturating_add((Weight::from_parts(83_360_692, 0)).saturating_mul(x as u64)) + (Weight::from_parts(39_640_002, 0)) + // Standard Error: 225_590 + .saturating_add((Weight::from_parts(84_065_197, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads((4 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(2 as u64)) @@ -116,14 +116,14 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:0) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn init_issuance_config() -> Weight { - (Weight::from_parts(27_420_000, 0)) + (Weight::from_parts(24_910_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `Issuance::IsTGEFinalized` (r:1 w:1) // Proof: `Issuance::IsTGEFinalized` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn finalize_tge() -> Weight { - (Weight::from_parts(16_590_000, 0)) + (Weight::from_parts(14_820_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -142,9 +142,9 @@ impl WeightInfo for () { // Storage: `Issuance::TGETotal` (r:1 w:1) // Proof: `Issuance::TGETotal` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_tge(x: u32, ) -> Weight { - (Weight::from_parts(285_200_000, 0)) - // Standard Error: 142_818 - .saturating_add((Weight::from_parts(83_360_692, 0)).saturating_mul(x as u64)) + (Weight::from_parts(39_640_002, 0)) + // Standard Error: 225_590 + .saturating_add((Weight::from_parts(84_065_197, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().reads((4 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(2 as u64)) diff --git a/runtime/mangata-kusama/src/weights/pallet_multipurpose_liquidity.rs b/runtime/mangata-kusama/src/weights/pallet_multipurpose_liquidity.rs index 02d376e938..b95cc88557 100644 --- a/runtime/mangata-kusama/src/weights/pallet_multipurpose_liquidity.rs +++ b/runtime/mangata-kusama/src/weights/pallet_multipurpose_liquidity.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_multipurpose_liquidity //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -76,7 +76,7 @@ impl pallet_multipurpose_liquidity::WeightInfo for Modu // Storage: `MultiPurposeLiquidity::RelockStatus` (r:1 w:1) // Proof: `MultiPurposeLiquidity::RelockStatus` (`max_values`: None, `max_size`: Some(1845), added: 4320, mode: `MaxEncodedLen`) fn reserve_vesting_liquidity_tokens() -> Weight { - (Weight::from_parts(126_910_000, 0)) + (Weight::from_parts(117_650_000, 0)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -91,7 +91,7 @@ impl pallet_multipurpose_liquidity::WeightInfo for Modu // Storage: `Tokens::Locks` (r:1 w:1) // Proof: `Tokens::Locks` (`max_values`: None, `max_size`: Some(1261), added: 3736, mode: `MaxEncodedLen`) fn unreserve_and_relock_instance() -> Weight { - (Weight::from_parts(124_910_000, 0)) + (Weight::from_parts(119_580_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -112,7 +112,7 @@ impl WeightInfo for () { // Storage: `MultiPurposeLiquidity::RelockStatus` (r:1 w:1) // Proof: `MultiPurposeLiquidity::RelockStatus` (`max_values`: None, `max_size`: Some(1845), added: 4320, mode: `MaxEncodedLen`) fn reserve_vesting_liquidity_tokens() -> Weight { - (Weight::from_parts(126_910_000, 0)) + (Weight::from_parts(117_650_000, 0)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } @@ -127,7 +127,7 @@ impl WeightInfo for () { // Storage: `Tokens::Locks` (r:1 w:1) // Proof: `Tokens::Locks` (`max_values`: None, `max_size`: Some(1261), added: 3736, mode: `MaxEncodedLen`) fn unreserve_and_relock_instance() -> Weight { - (Weight::from_parts(124_910_000, 0)) + (Weight::from_parts(119_580_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/pallet_proof_of_stake.rs b/runtime/mangata-kusama/src/weights/pallet_proof_of_stake.rs index 9de88c5528..f8bf3e3545 100644 --- a/runtime/mangata-kusama/src/weights/pallet_proof_of_stake.rs +++ b/runtime/mangata-kusama/src/weights/pallet_proof_of_stake.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_proof_of_stake //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -76,7 +76,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `Tokens::Accounts` (r:2 w:2) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn claim_native_rewards() -> Weight { - (Weight::from_parts(104_800_000, 0)) + (Weight::from_parts(91_511_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -85,7 +85,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::PromotedPoolRewards` (r:1 w:1) // Proof: `ProofOfStake::PromotedPoolRewards` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn update_pool_promotion() -> Weight { - (Weight::from_parts(27_720_000, 0)) + (Weight::from_parts(24_930_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -100,7 +100,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn activate_liquidity_for_native_rewards() -> Weight { - (Weight::from_parts(104_670_000, 0)) + (Weight::from_parts(99_350_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -117,7 +117,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn deactivate_liquidity_for_native_rewards() -> Weight { - (Weight::from_parts(94_510_000, 0)) + (Weight::from_parts(93_880_000, 0)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -140,7 +140,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::RewardTokensPerPool` (r:0 w:1) // Proof: `ProofOfStake::RewardTokensPerPool` (`max_values`: None, `max_size`: None, mode: `Measured`) fn reward_pool() -> Weight { - (Weight::from_parts(144_790_000, 0)) + (Weight::from_parts(151_500_000, 0)) .saturating_add(T::DbWeight::get().reads(9 as u64)) .saturating_add(T::DbWeight::get().writes(7 as u64)) } @@ -161,7 +161,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::TotalActivatedLiquidityForSchedules` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidityForSchedules` (`max_values`: None, `max_size`: None, mode: `Measured`) fn activate_liquidity_for_3rdparty_rewards() -> Weight { - (Weight::from_parts(129_000_000, 0)) + (Weight::from_parts(130_410_000, 0)) .saturating_add(T::DbWeight::get().reads(9 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -184,7 +184,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::ActivatedNativeRewardsLiq` (r:1 w:1) // Proof: `ProofOfStake::ActivatedNativeRewardsLiq` (`max_values`: None, `max_size`: None, mode: `Measured`) fn deactivate_liquidity_for_3rdparty_rewards() -> Weight { - (Weight::from_parts(137_490_000, 0)) + (Weight::from_parts(137_660_000, 0)) .saturating_add(T::DbWeight::get().reads(11 as u64)) .saturating_add(T::DbWeight::get().writes(7 as u64)) } @@ -201,7 +201,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `Tokens::Accounts` (r:2 w:2) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn claim_3rdparty_rewards() -> Weight { - (Weight::from_parts(142_210_000, 0)) + (Weight::from_parts(148_570_000, 0)) .saturating_add(T::DbWeight::get().reads(8 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -216,7 +216,7 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:2 w:2) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn claim_native_rewards() -> Weight { - (Weight::from_parts(104_800_000, 0)) + (Weight::from_parts(91_511_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -225,7 +225,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::PromotedPoolRewards` (r:1 w:1) // Proof: `ProofOfStake::PromotedPoolRewards` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn update_pool_promotion() -> Weight { - (Weight::from_parts(27_720_000, 0)) + (Weight::from_parts(24_930_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -240,7 +240,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn activate_liquidity_for_native_rewards() -> Weight { - (Weight::from_parts(104_670_000, 0)) + (Weight::from_parts(99_350_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -257,7 +257,7 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn deactivate_liquidity_for_native_rewards() -> Weight { - (Weight::from_parts(94_510_000, 0)) + (Weight::from_parts(93_880_000, 0)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -280,7 +280,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::RewardTokensPerPool` (r:0 w:1) // Proof: `ProofOfStake::RewardTokensPerPool` (`max_values`: None, `max_size`: None, mode: `Measured`) fn reward_pool() -> Weight { - (Weight::from_parts(144_790_000, 0)) + (Weight::from_parts(151_500_000, 0)) .saturating_add(RocksDbWeight::get().reads(9 as u64)) .saturating_add(RocksDbWeight::get().writes(7 as u64)) } @@ -301,7 +301,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::TotalActivatedLiquidityForSchedules` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidityForSchedules` (`max_values`: None, `max_size`: None, mode: `Measured`) fn activate_liquidity_for_3rdparty_rewards() -> Weight { - (Weight::from_parts(129_000_000, 0)) + (Weight::from_parts(130_410_000, 0)) .saturating_add(RocksDbWeight::get().reads(9 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -324,7 +324,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::ActivatedNativeRewardsLiq` (r:1 w:1) // Proof: `ProofOfStake::ActivatedNativeRewardsLiq` (`max_values`: None, `max_size`: None, mode: `Measured`) fn deactivate_liquidity_for_3rdparty_rewards() -> Weight { - (Weight::from_parts(137_490_000, 0)) + (Weight::from_parts(137_660_000, 0)) .saturating_add(RocksDbWeight::get().reads(11 as u64)) .saturating_add(RocksDbWeight::get().writes(7 as u64)) } @@ -341,7 +341,7 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:2 w:2) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn claim_3rdparty_rewards() -> Weight { - (Weight::from_parts(142_210_000, 0)) + (Weight::from_parts(148_570_000, 0)) .saturating_add(RocksDbWeight::get().reads(8 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/pallet_session.rs b/runtime/mangata-kusama/src/weights/pallet_session.rs index d845ee7870..3c2f5c1c69 100644 --- a/runtime/mangata-kusama/src/weights/pallet_session.rs +++ b/runtime/mangata-kusama/src/weights/pallet_session.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_session //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -68,7 +68,7 @@ impl pallet_session::WeightInfo for ModuleWeight { // Storage: `Session::KeyOwner` (r:1 w:1) // Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_keys() -> Weight { - (Weight::from_parts(28_720_000, 0)) + (Weight::from_parts(28_131_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -77,7 +77,7 @@ impl pallet_session::WeightInfo for ModuleWeight { // Storage: `Session::KeyOwner` (r:0 w:1) // Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn purge_keys() -> Weight { - (Weight::from_parts(18_130_000, 0)) + (Weight::from_parts(17_660_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -90,7 +90,7 @@ impl WeightInfo for () { // Storage: `Session::KeyOwner` (r:1 w:1) // Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_keys() -> Weight { - (Weight::from_parts(28_720_000, 0)) + (Weight::from_parts(28_131_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -99,7 +99,7 @@ impl WeightInfo for () { // Storage: `Session::KeyOwner` (r:0 w:1) // Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn purge_keys() -> Weight { - (Weight::from_parts(18_130_000, 0)) + (Weight::from_parts(17_660_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/pallet_timestamp.rs b/runtime/mangata-kusama/src/weights/pallet_timestamp.rs index 32bc7e1481..c67bec4127 100644 --- a/runtime/mangata-kusama/src/weights/pallet_timestamp.rs +++ b/runtime/mangata-kusama/src/weights/pallet_timestamp.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_timestamp //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -66,12 +66,12 @@ impl pallet_timestamp::WeightInfo for ModuleWeight { // Storage: `Timestamp::Now` (r:1 w:1) // Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `MaxEncodedLen`) fn set() -> Weight { - (Weight::from_parts(9_740_000, 0)) + (Weight::from_parts(10_280_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } fn on_finalize() -> Weight { - (Weight::from_parts(5_150_000, 0)) + (Weight::from_parts(5_510_000, 0)) } } @@ -80,11 +80,11 @@ impl WeightInfo for () { // Storage: `Timestamp::Now` (r:1 w:1) // Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `MaxEncodedLen`) fn set() -> Weight { - (Weight::from_parts(9_740_000, 0)) + (Weight::from_parts(10_280_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } fn on_finalize() -> Weight { - (Weight::from_parts(5_150_000, 0)) + (Weight::from_parts(5_510_000, 0)) } } diff --git a/runtime/mangata-kusama/src/weights/pallet_treasury.rs b/runtime/mangata-kusama/src/weights/pallet_treasury.rs index faa2e8a72b..87dccb8afa 100644 --- a/runtime/mangata-kusama/src/weights/pallet_treasury.rs +++ b/runtime/mangata-kusama/src/weights/pallet_treasury.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_treasury //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -68,7 +68,7 @@ pub trait WeightInfo { pub struct ModuleWeight(PhantomData); impl pallet_treasury::WeightInfo for ModuleWeight { fn spend() -> Weight { - (Weight::from_parts(480_000, 0)) + (Weight::from_parts(520_000, 0)) } // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) @@ -77,7 +77,7 @@ impl pallet_treasury::WeightInfo for ModuleWeight { // Storage: `Treasury::Proposals` (r:0 w:1) // Proof: `Treasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn propose_spend() -> Weight { - (Weight::from_parts(44_130_000, 0)) + (Weight::from_parts(44_931_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -88,7 +88,7 @@ impl pallet_treasury::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn reject_proposal() -> Weight { - (Weight::from_parts(52_489_000, 0)) + (Weight::from_parts(47_551_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -97,16 +97,16 @@ impl pallet_treasury::WeightInfo for ModuleWeight { // Storage: `Treasury::Approvals` (r:1 w:1) // Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn approve_proposal(p: u32, ) -> Weight { - (Weight::from_parts(19_551_237, 0)) - // Standard Error: 1_811 - .saturating_add((Weight::from_parts(68_875, 0)).saturating_mul(p as u64)) + (Weight::from_parts(18_608_202, 0)) + // Standard Error: 1_870 + .saturating_add((Weight::from_parts(69_054, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `Treasury::Approvals` (r:1 w:1) // Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn remove_approval() -> Weight { - (Weight::from_parts(12_580_000, 0)) + (Weight::from_parts(12_130_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -121,9 +121,9 @@ impl pallet_treasury::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn on_initialize_proposals(p: u32, ) -> Weight { - (Weight::from_parts(39_451_729, 0)) - // Standard Error: 14_637 - .saturating_add((Weight::from_parts(4_433_389, 0)).saturating_mul(p as u64)) + (Weight::from_parts(37_540_256, 0)) + // Standard Error: 17_041 + .saturating_add((Weight::from_parts(4_191_639, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(T::DbWeight::get().writes(1 as u64)) @@ -133,7 +133,7 @@ impl pallet_treasury::WeightInfo for ModuleWeight { // For backwards compatibility and tests impl WeightInfo for () { fn spend() -> Weight { - (Weight::from_parts(480_000, 0)) + (Weight::from_parts(520_000, 0)) } // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) @@ -142,7 +142,7 @@ impl WeightInfo for () { // Storage: `Treasury::Proposals` (r:0 w:1) // Proof: `Treasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn propose_spend() -> Weight { - (Weight::from_parts(44_130_000, 0)) + (Weight::from_parts(44_931_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -153,7 +153,7 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn reject_proposal() -> Weight { - (Weight::from_parts(52_489_000, 0)) + (Weight::from_parts(47_551_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -162,16 +162,16 @@ impl WeightInfo for () { // Storage: `Treasury::Approvals` (r:1 w:1) // Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn approve_proposal(p: u32, ) -> Weight { - (Weight::from_parts(19_551_237, 0)) - // Standard Error: 1_811 - .saturating_add((Weight::from_parts(68_875, 0)).saturating_mul(p as u64)) + (Weight::from_parts(18_608_202, 0)) + // Standard Error: 1_870 + .saturating_add((Weight::from_parts(69_054, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `Treasury::Approvals` (r:1 w:1) // Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn remove_approval() -> Weight { - (Weight::from_parts(12_580_000, 0)) + (Weight::from_parts(12_130_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -186,9 +186,9 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn on_initialize_proposals(p: u32, ) -> Weight { - (Weight::from_parts(39_451_729, 0)) - // Standard Error: 14_637 - .saturating_add((Weight::from_parts(4_433_389, 0)).saturating_mul(p as u64)) + (Weight::from_parts(37_540_256, 0)) + // Standard Error: 17_041 + .saturating_add((Weight::from_parts(4_191_639, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(RocksDbWeight::get().writes(1 as u64)) diff --git a/runtime/mangata-kusama/src/weights/pallet_utility_mangata.rs b/runtime/mangata-kusama/src/weights/pallet_utility_mangata.rs index 9008e85d14..c31a1f2e64 100644 --- a/runtime/mangata-kusama/src/weights/pallet_utility_mangata.rs +++ b/runtime/mangata-kusama/src/weights/pallet_utility_mangata.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_utility_mangata //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -67,49 +67,49 @@ pub trait WeightInfo { pub struct ModuleWeight(PhantomData); impl pallet_utility_mangata::WeightInfo for ModuleWeight { fn batch(c: u32, ) -> Weight { - (Weight::from_parts(16_589_619, 0)) - // Standard Error: 16_418 - .saturating_add((Weight::from_parts(10_132_634, 0)).saturating_mul(c as u64)) + (Weight::from_parts(87_630_925, 0)) + // Standard Error: 17_705 + .saturating_add((Weight::from_parts(9_400_385, 0)).saturating_mul(c as u64)) } fn as_derivative() -> Weight { - (Weight::from_parts(9_780_000, 0)) + (Weight::from_parts(8_570_000, 0)) } fn batch_all(c: u32, ) -> Weight { - (Weight::from_parts(54_293_178, 0)) - // Standard Error: 22_178 - .saturating_add((Weight::from_parts(10_507_277, 0)).saturating_mul(c as u64)) + (Weight::from_parts(1_329_615, 0)) + // Standard Error: 18_555 + .saturating_add((Weight::from_parts(10_026_010, 0)).saturating_mul(c as u64)) } fn dispatch_as() -> Weight { - (Weight::from_parts(16_940_000, 0)) + (Weight::from_parts(16_320_000, 0)) } fn force_batch(c: u32, ) -> Weight { - (Weight::from_parts(24_129_155, 0)) - // Standard Error: 21_663 - .saturating_add((Weight::from_parts(10_054_761, 0)).saturating_mul(c as u64)) + (Weight::from_parts(11_910_000, 0)) + // Standard Error: 12_145 + .saturating_add((Weight::from_parts(9_695_484, 0)).saturating_mul(c as u64)) } } // For backwards compatibility and tests impl WeightInfo for () { fn batch(c: u32, ) -> Weight { - (Weight::from_parts(16_589_619, 0)) - // Standard Error: 16_418 - .saturating_add((Weight::from_parts(10_132_634, 0)).saturating_mul(c as u64)) + (Weight::from_parts(87_630_925, 0)) + // Standard Error: 17_705 + .saturating_add((Weight::from_parts(9_400_385, 0)).saturating_mul(c as u64)) } fn as_derivative() -> Weight { - (Weight::from_parts(9_780_000, 0)) + (Weight::from_parts(8_570_000, 0)) } fn batch_all(c: u32, ) -> Weight { - (Weight::from_parts(54_293_178, 0)) - // Standard Error: 22_178 - .saturating_add((Weight::from_parts(10_507_277, 0)).saturating_mul(c as u64)) + (Weight::from_parts(1_329_615, 0)) + // Standard Error: 18_555 + .saturating_add((Weight::from_parts(10_026_010, 0)).saturating_mul(c as u64)) } fn dispatch_as() -> Weight { - (Weight::from_parts(16_940_000, 0)) + (Weight::from_parts(16_320_000, 0)) } fn force_batch(c: u32, ) -> Weight { - (Weight::from_parts(24_129_155, 0)) - // Standard Error: 21_663 - .saturating_add((Weight::from_parts(10_054_761, 0)).saturating_mul(c as u64)) + (Weight::from_parts(11_910_000, 0)) + // Standard Error: 12_145 + .saturating_add((Weight::from_parts(9_695_484, 0)).saturating_mul(c as u64)) } } diff --git a/runtime/mangata-kusama/src/weights/pallet_vesting_mangata.rs b/runtime/mangata-kusama/src/weights/pallet_vesting_mangata.rs index af61cc2605..41c7886114 100644 --- a/runtime/mangata-kusama/src/weights/pallet_vesting_mangata.rs +++ b/runtime/mangata-kusama/src/weights/pallet_vesting_mangata.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_vesting_mangata //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -75,9 +75,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_locked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(51_130_831, 0)) - // Standard Error: 7_700 - .saturating_add((Weight::from_parts(172_452, 0)).saturating_mul(s as u64)) + (Weight::from_parts(48_427_927, 0)) + // Standard Error: 8_514 + .saturating_add((Weight::from_parts(185_409, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -88,9 +88,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_unlocked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(68_202_729, 0)) - // Standard Error: 5_640 - .saturating_add((Weight::from_parts(47_460, 0)).saturating_mul(s as u64)) + (Weight::from_parts(65_301_532, 0)) + // Standard Error: 6_745 + .saturating_add((Weight::from_parts(53_074, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -101,9 +101,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_other_locked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(51_573_992, 0)) - // Standard Error: 8_829 - .saturating_add((Weight::from_parts(180_014, 0)).saturating_mul(s as u64)) + (Weight::from_parts(49_635_157, 0)) + // Standard Error: 9_592 + .saturating_add((Weight::from_parts(168_802, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -116,9 +116,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn vest_other_unlocked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(67_659_964, 0)) - // Standard Error: 5_412 - .saturating_add((Weight::from_parts(87_102, 0)).saturating_mul(s as u64)) + (Weight::from_parts(67_351_274, 0)) + // Standard Error: 7_411 + .saturating_add((Weight::from_parts(84_577, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -131,9 +131,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Locks` (r:1 w:0) // Proof: `Tokens::Locks` (`max_values`: None, `max_size`: Some(1261), added: 3736, mode: `MaxEncodedLen`) fn force_vested_transfer(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(91_681_958, 0)) - // Standard Error: 15_906 - .saturating_add((Weight::from_parts(192_751, 0)).saturating_mul(s as u64)) + (Weight::from_parts(88_063_629, 0)) + // Standard Error: 14_579 + .saturating_add((Weight::from_parts(210_310, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -144,9 +144,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn not_unlocking_merge_schedules(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(51_621_276, 0)) - // Standard Error: 8_937 - .saturating_add((Weight::from_parts(187_029, 0)).saturating_mul(s as u64)) + (Weight::from_parts(50_762_808, 0)) + // Standard Error: 8_663 + .saturating_add((Weight::from_parts(163_040, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -157,9 +157,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn unlocking_merge_schedules(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(51_823_056, 0)) - // Standard Error: 15_260 - .saturating_add((Weight::from_parts(266_865, 0)).saturating_mul(s as u64)) + (Weight::from_parts(49_779_765, 0)) + // Standard Error: 13_870 + .saturating_add((Weight::from_parts(262_141, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -174,9 +174,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_locked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(51_130_831, 0)) - // Standard Error: 7_700 - .saturating_add((Weight::from_parts(172_452, 0)).saturating_mul(s as u64)) + (Weight::from_parts(48_427_927, 0)) + // Standard Error: 8_514 + .saturating_add((Weight::from_parts(185_409, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -187,9 +187,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_unlocked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(68_202_729, 0)) - // Standard Error: 5_640 - .saturating_add((Weight::from_parts(47_460, 0)).saturating_mul(s as u64)) + (Weight::from_parts(65_301_532, 0)) + // Standard Error: 6_745 + .saturating_add((Weight::from_parts(53_074, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -200,9 +200,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_other_locked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(51_573_992, 0)) - // Standard Error: 8_829 - .saturating_add((Weight::from_parts(180_014, 0)).saturating_mul(s as u64)) + (Weight::from_parts(49_635_157, 0)) + // Standard Error: 9_592 + .saturating_add((Weight::from_parts(168_802, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -215,9 +215,9 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn vest_other_unlocked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(67_659_964, 0)) - // Standard Error: 5_412 - .saturating_add((Weight::from_parts(87_102, 0)).saturating_mul(s as u64)) + (Weight::from_parts(67_351_274, 0)) + // Standard Error: 7_411 + .saturating_add((Weight::from_parts(84_577, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -230,9 +230,9 @@ impl WeightInfo for () { // Storage: `Tokens::Locks` (r:1 w:0) // Proof: `Tokens::Locks` (`max_values`: None, `max_size`: Some(1261), added: 3736, mode: `MaxEncodedLen`) fn force_vested_transfer(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(91_681_958, 0)) - // Standard Error: 15_906 - .saturating_add((Weight::from_parts(192_751, 0)).saturating_mul(s as u64)) + (Weight::from_parts(88_063_629, 0)) + // Standard Error: 14_579 + .saturating_add((Weight::from_parts(210_310, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -243,9 +243,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn not_unlocking_merge_schedules(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(51_621_276, 0)) - // Standard Error: 8_937 - .saturating_add((Weight::from_parts(187_029, 0)).saturating_mul(s as u64)) + (Weight::from_parts(50_762_808, 0)) + // Standard Error: 8_663 + .saturating_add((Weight::from_parts(163_040, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -256,9 +256,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn unlocking_merge_schedules(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(51_823_056, 0)) - // Standard Error: 15_260 - .saturating_add((Weight::from_parts(266_865, 0)).saturating_mul(s as u64)) + (Weight::from_parts(49_779_765, 0)) + // Standard Error: 13_870 + .saturating_add((Weight::from_parts(262_141, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/pallet_xyk.rs b/runtime/mangata-kusama/src/weights/pallet_xyk.rs index f01d0c1e92..6f6cd53d70 100644 --- a/runtime/mangata-kusama/src/weights/pallet_xyk.rs +++ b/runtime/mangata-kusama/src/weights/pallet_xyk.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_xyk //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -90,7 +90,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `Xyk::LiquidityPools` (r:0 w:1) // Proof: `Xyk::LiquidityPools` (`max_values`: None, `max_size`: Some(41), added: 2516, mode: `MaxEncodedLen`) fn create_pool() -> Weight { - (Weight::from_parts(204_890_000, 0)) + (Weight::from_parts(188_230_000, 0)) .saturating_add(T::DbWeight::get().reads(14 as u64)) .saturating_add(T::DbWeight::get().writes(12 as u64)) } @@ -109,7 +109,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn sell_asset() -> Weight { - (Weight::from_parts(244_050_000, 0)) + (Weight::from_parts(239_380_000, 0)) .saturating_add(T::DbWeight::get().reads(16 as u64)) .saturating_add(T::DbWeight::get().writes(9 as u64)) } @@ -128,9 +128,9 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn multiswap_sell_asset(x: u32, ) -> Weight { - (Weight::from_parts(633_020_000, 0)) - // Standard Error: 494_601 - .saturating_add((Weight::from_parts(276_447_721, 0)).saturating_mul(x as u64)) + (Weight::from_parts(627_720_000, 0)) + // Standard Error: 509_553 + .saturating_add((Weight::from_parts(272_818_905, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(29 as u64)) .saturating_add(T::DbWeight::get().reads((10 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(1 as u64)) @@ -151,7 +151,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn buy_asset() -> Weight { - (Weight::from_parts(235_960_000, 0)) + (Weight::from_parts(235_869_000, 0)) .saturating_add(T::DbWeight::get().reads(18 as u64)) .saturating_add(T::DbWeight::get().writes(9 as u64)) } @@ -170,9 +170,9 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn multiswap_buy_asset(x: u32, ) -> Weight { - (Weight::from_parts(708_340_000, 0)) - // Standard Error: 591_581 - .saturating_add((Weight::from_parts(290_419_235, 0)).saturating_mul(x as u64)) + (Weight::from_parts(651_260_000, 0)) + // Standard Error: 536_937 + .saturating_add((Weight::from_parts(287_282_771, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(29 as u64)) .saturating_add(T::DbWeight::get().reads((10 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(1 as u64)) @@ -199,7 +199,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn mint_liquidity() -> Weight { - (Weight::from_parts(244_540_000, 0)) + (Weight::from_parts(224_910_000, 0)) .saturating_add(T::DbWeight::get().reads(15 as u64)) .saturating_add(T::DbWeight::get().writes(10 as u64)) } @@ -220,7 +220,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `Tokens::NextCurrencyId` (r:1 w:0) // Proof: `Tokens::NextCurrencyId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) fn mint_liquidity_using_vesting_native_tokens() -> Weight { - (Weight::from_parts(276_260_000, 0)) + (Weight::from_parts(277_789_000, 0)) .saturating_add(T::DbWeight::get().reads(14 as u64)) .saturating_add(T::DbWeight::get().writes(11 as u64)) } @@ -245,7 +245,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn burn_liquidity() -> Weight { - (Weight::from_parts(224_350_000, 0)) + (Weight::from_parts(206_760_000, 0)) .saturating_add(T::DbWeight::get().reads(15 as u64)) .saturating_add(T::DbWeight::get().writes(10 as u64)) } @@ -270,7 +270,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `ProofOfStake::PromotedPoolRewards` (r:1 w:0) // Proof: `ProofOfStake::PromotedPoolRewards` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn provide_liquidity_with_conversion() -> Weight { - (Weight::from_parts(395_590_000, 0)) + (Weight::from_parts(365_410_000, 0)) .saturating_add(T::DbWeight::get().reads(22 as u64)) .saturating_add(T::DbWeight::get().writes(11 as u64)) } @@ -301,7 +301,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn compound_rewards() -> Weight { - (Weight::from_parts(554_980_000, 0)) + (Weight::from_parts(557_650_000, 0)) .saturating_add(T::DbWeight::get().reads(25 as u64)) .saturating_add(T::DbWeight::get().writes(16 as u64)) } @@ -328,7 +328,7 @@ impl WeightInfo for () { // Storage: `Xyk::LiquidityPools` (r:0 w:1) // Proof: `Xyk::LiquidityPools` (`max_values`: None, `max_size`: Some(41), added: 2516, mode: `MaxEncodedLen`) fn create_pool() -> Weight { - (Weight::from_parts(204_890_000, 0)) + (Weight::from_parts(188_230_000, 0)) .saturating_add(RocksDbWeight::get().reads(14 as u64)) .saturating_add(RocksDbWeight::get().writes(12 as u64)) } @@ -347,7 +347,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn sell_asset() -> Weight { - (Weight::from_parts(244_050_000, 0)) + (Weight::from_parts(239_380_000, 0)) .saturating_add(RocksDbWeight::get().reads(16 as u64)) .saturating_add(RocksDbWeight::get().writes(9 as u64)) } @@ -366,9 +366,9 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn multiswap_sell_asset(x: u32, ) -> Weight { - (Weight::from_parts(633_020_000, 0)) - // Standard Error: 494_601 - .saturating_add((Weight::from_parts(276_447_721, 0)).saturating_mul(x as u64)) + (Weight::from_parts(627_720_000, 0)) + // Standard Error: 509_553 + .saturating_add((Weight::from_parts(272_818_905, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(29 as u64)) .saturating_add(RocksDbWeight::get().reads((10 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(1 as u64)) @@ -389,7 +389,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn buy_asset() -> Weight { - (Weight::from_parts(235_960_000, 0)) + (Weight::from_parts(235_869_000, 0)) .saturating_add(RocksDbWeight::get().reads(18 as u64)) .saturating_add(RocksDbWeight::get().writes(9 as u64)) } @@ -408,9 +408,9 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn multiswap_buy_asset(x: u32, ) -> Weight { - (Weight::from_parts(708_340_000, 0)) - // Standard Error: 591_581 - .saturating_add((Weight::from_parts(290_419_235, 0)).saturating_mul(x as u64)) + (Weight::from_parts(651_260_000, 0)) + // Standard Error: 536_937 + .saturating_add((Weight::from_parts(287_282_771, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(29 as u64)) .saturating_add(RocksDbWeight::get().reads((10 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(1 as u64)) @@ -437,7 +437,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn mint_liquidity() -> Weight { - (Weight::from_parts(244_540_000, 0)) + (Weight::from_parts(224_910_000, 0)) .saturating_add(RocksDbWeight::get().reads(15 as u64)) .saturating_add(RocksDbWeight::get().writes(10 as u64)) } @@ -458,7 +458,7 @@ impl WeightInfo for () { // Storage: `Tokens::NextCurrencyId` (r:1 w:0) // Proof: `Tokens::NextCurrencyId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) fn mint_liquidity_using_vesting_native_tokens() -> Weight { - (Weight::from_parts(276_260_000, 0)) + (Weight::from_parts(277_789_000, 0)) .saturating_add(RocksDbWeight::get().reads(14 as u64)) .saturating_add(RocksDbWeight::get().writes(11 as u64)) } @@ -483,7 +483,7 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn burn_liquidity() -> Weight { - (Weight::from_parts(224_350_000, 0)) + (Weight::from_parts(206_760_000, 0)) .saturating_add(RocksDbWeight::get().reads(15 as u64)) .saturating_add(RocksDbWeight::get().writes(10 as u64)) } @@ -508,7 +508,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::PromotedPoolRewards` (r:1 w:0) // Proof: `ProofOfStake::PromotedPoolRewards` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn provide_liquidity_with_conversion() -> Weight { - (Weight::from_parts(395_590_000, 0)) + (Weight::from_parts(365_410_000, 0)) .saturating_add(RocksDbWeight::get().reads(22 as u64)) .saturating_add(RocksDbWeight::get().writes(11 as u64)) } @@ -539,7 +539,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn compound_rewards() -> Weight { - (Weight::from_parts(554_980_000, 0)) + (Weight::from_parts(557_650_000, 0)) .saturating_add(RocksDbWeight::get().reads(25 as u64)) .saturating_add(RocksDbWeight::get().writes(16 as u64)) } diff --git a/runtime/mangata-kusama/src/weights/parachain_staking.rs b/runtime/mangata-kusama/src/weights/parachain_staking.rs index a28875dae0..b63ad811a3 100644 --- a/runtime/mangata-kusama/src/weights/parachain_staking.rs +++ b/runtime/mangata-kusama/src/weights/parachain_staking.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for parachain_staking //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -99,14 +99,14 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::TotalSelected` (r:1 w:1) // Proof: `ParachainStaking::TotalSelected` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_total_selected() -> Weight { - (Weight::from_parts(16_930_000, 0)) + (Weight::from_parts(18_240_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::CollatorCommission` (r:1 w:1) // Proof: `ParachainStaking::CollatorCommission` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_collator_commission() -> Weight { - (Weight::from_parts(17_340_000, 0)) + (Weight::from_parts(18_140_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -133,11 +133,11 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn join_candidates(x: u32, y: u32, ) -> Weight { - (Weight::from_parts(119_544_784, 0)) - // Standard Error: 9_354 - .saturating_add((Weight::from_parts(150_604, 0)).saturating_mul(x as u64)) - // Standard Error: 9_240 - .saturating_add((Weight::from_parts(199_000, 0)).saturating_mul(y as u64)) + (Weight::from_parts(117_053_879, 0)) + // Standard Error: 7_446 + .saturating_add((Weight::from_parts(142_269, 0)).saturating_mul(x as u64)) + // Standard Error: 7_356 + .saturating_add((Weight::from_parts(208_459, 0)).saturating_mul(y as u64)) .saturating_add(T::DbWeight::get().reads(11 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -148,9 +148,9 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(37_830_404, 0)) - // Standard Error: 2_680 - .saturating_add((Weight::from_parts(123_243, 0)).saturating_mul(x as u64)) + (Weight::from_parts(37_952_996, 0)) + // Standard Error: 2_861 + .saturating_add((Weight::from_parts(97_664, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -169,9 +169,9 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(66_566_597, 0)) - // Standard Error: 102_929 - .saturating_add((Weight::from_parts(31_808_468, 0)).saturating_mul(x as u64)) + (Weight::from_parts(78_861_262, 0)) + // Standard Error: 107_452 + .saturating_add((Weight::from_parts(30_047_808, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(1 as u64)) @@ -182,9 +182,9 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn cancel_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(36_344_898, 0)) - // Standard Error: 2_734 - .saturating_add((Weight::from_parts(125_362, 0)).saturating_mul(x as u64)) + (Weight::from_parts(35_957_664, 0)) + // Standard Error: 2_682 + .saturating_add((Weight::from_parts(90_614, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -195,7 +195,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn go_offline() -> Weight { - (Weight::from_parts(36_640_000, 0)) + (Weight::from_parts(34_300_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -206,7 +206,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn go_online() -> Weight { - (Weight::from_parts(34_930_000, 0)) + (Weight::from_parts(34_580_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -219,7 +219,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_candidate_bond_more() -> Weight { - (Weight::from_parts(54_580_000, 0)) + (Weight::from_parts(49_480_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -234,7 +234,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_candidate_bond_less() -> Weight { - (Weight::from_parts(56_670_000, 0)) + (Weight::from_parts(52_750_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -251,7 +251,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_candidate_bond_more() -> Weight { - (Weight::from_parts(107_800_000, 0)) + (Weight::from_parts(94_970_000, 0)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -268,21 +268,21 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_candidate_bond_less() -> Weight { - (Weight::from_parts(101_800_000, 0)) + (Weight::from_parts(101_731_000, 0)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } // Storage: `ParachainStaking::CandidateState` (r:1 w:1) // Proof: `ParachainStaking::CandidateState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_candidate_bond_more() -> Weight { - (Weight::from_parts(29_240_000, 0)) + (Weight::from_parts(28_020_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::CandidateState` (r:1 w:1) // Proof: `ParachainStaking::CandidateState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_candidate_bond_less() -> Weight { - (Weight::from_parts(29_070_000, 0)) + (Weight::from_parts(26_969_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -307,11 +307,11 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn delegate(x: u32, y: u32, ) -> Weight { - (Weight::from_parts(126_212_793, 0)) - // Standard Error: 20_241 - .saturating_add((Weight::from_parts(152_166, 0)).saturating_mul(x as u64)) - // Standard Error: 19_560 - .saturating_add((Weight::from_parts(281_095, 0)).saturating_mul(y as u64)) + (Weight::from_parts(119_400_015, 0)) + // Standard Error: 19_692 + .saturating_add((Weight::from_parts(211_488, 0)).saturating_mul(x as u64)) + // Standard Error: 19_029 + .saturating_add((Weight::from_parts(310_487, 0)).saturating_mul(y as u64)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -320,7 +320,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_leave_delegators() -> Weight { - (Weight::from_parts(30_220_000, 0)) + (Weight::from_parts(29_970_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -339,9 +339,9 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_leave_delegators(x: u32, ) -> Weight { - (Weight::from_parts(35_710_474, 0)) - // Standard Error: 117_122 - .saturating_add((Weight::from_parts(39_255_172, 0)).saturating_mul(x as u64)) + (Weight::from_parts(30_138_059, 0)) + // Standard Error: 116_246 + .saturating_add((Weight::from_parts(37_661_084, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(4 as u64)) @@ -350,7 +350,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_leave_delegators() -> Weight { - (Weight::from_parts(29_140_000, 0)) + (Weight::from_parts(28_770_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -359,7 +359,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_revoke_delegation() -> Weight { - (Weight::from_parts(32_850_000, 0)) + (Weight::from_parts(33_140_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -372,7 +372,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_delegator_bond_more() -> Weight { - (Weight::from_parts(52_540_000, 0)) + (Weight::from_parts(55_590_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -381,7 +381,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_delegator_bond_less() -> Weight { - (Weight::from_parts(30_900_000, 0)) + (Weight::from_parts(33_310_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -400,7 +400,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_revoke_delegation() -> Weight { - (Weight::from_parts(114_340_000, 0)) + (Weight::from_parts(120_020_000, 0)) .saturating_add(T::DbWeight::get().reads(7 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -419,7 +419,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_delegator_bond_more() -> Weight { - (Weight::from_parts(126_549_000, 0)) + (Weight::from_parts(118_400_000, 0)) .saturating_add(T::DbWeight::get().reads(7 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -438,28 +438,28 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_delegator_bond_less() -> Weight { - (Weight::from_parts(105_030_000, 0)) + (Weight::from_parts(119_180_000, 0)) .saturating_add(T::DbWeight::get().reads(7 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_revoke_delegation() -> Weight { - (Weight::from_parts(28_749_000, 0)) + (Weight::from_parts(27_810_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_delegator_bond_more() -> Weight { - (Weight::from_parts(49_820_000, 0)) + (Weight::from_parts(35_100_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_delegator_bond_less() -> Weight { - (Weight::from_parts(37_670_000, 0)) + (Weight::from_parts(40_170_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -468,18 +468,18 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::StakingLiquidityTokens` (r:1 w:1) // Proof: `ParachainStaking::StakingLiquidityTokens` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn add_staking_liquidity_token(x: u32, ) -> Weight { - (Weight::from_parts(26_409_191, 0)) - // Standard Error: 2_820 - .saturating_add((Weight::from_parts(165_180, 0)).saturating_mul(x as u64)) + (Weight::from_parts(25_681_172, 0)) + // Standard Error: 3_287 + .saturating_add((Weight::from_parts(160_557, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::StakingLiquidityTokens` (r:1 w:1) // Proof: `ParachainStaking::StakingLiquidityTokens` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn remove_staking_liquidity_token(x: u32, ) -> Weight { - (Weight::from_parts(20_007_922, 0)) - // Standard Error: 2_592 - .saturating_add((Weight::from_parts(136_166, 0)).saturating_mul(x as u64)) + (Weight::from_parts(18_485_384, 0)) + // Standard Error: 2_633 + .saturating_add((Weight::from_parts(148_333, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -492,7 +492,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidateAggregator` (r:1 w:1) // Proof: `ParachainStaking::CandidateAggregator` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn aggregator_update_metadata() -> Weight { - (Weight::from_parts(1_661_170_000, 0)) + (Weight::from_parts(1_637_999_000, 0)) .saturating_add(T::DbWeight::get().reads(102 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -503,7 +503,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::AggregatorMetadata` (r:2 w:2) // Proof: `ParachainStaking::AggregatorMetadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn update_candidate_aggregator() -> Weight { - (Weight::from_parts(109_320_000, 0)) + (Weight::from_parts(106_940_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -514,7 +514,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `System::Account` (r:32 w:31) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn payout_collator_rewards() -> Weight { - (Weight::from_parts(1_510_580_000, 0)) + (Weight::from_parts(1_382_470_000, 0)) .saturating_add(T::DbWeight::get().reads(66 as u64)) .saturating_add(T::DbWeight::get().writes(64 as u64)) } @@ -525,14 +525,14 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `System::Account` (r:2 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn payout_delegator_reward() -> Weight { - (Weight::from_parts(82_730_000, 0)) + (Weight::from_parts(76_060_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn passive_session_change() -> Weight { - (Weight::from_parts(7_930_000, 0)) + (Weight::from_parts(7_870_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) } // Storage: `ParachainStaking::Round` (r:1 w:1) @@ -592,13 +592,13 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `Session::Validators` (r:0 w:1) // Proof: `Session::Validators` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn active_session_change(x: u32, y: u32, z: u32, ) -> Weight { - (Weight::from_parts(1_742_061_893, 0)) - // Standard Error: 91_439 - .saturating_add((Weight::from_parts(19_003_727, 0)).saturating_mul(x as u64)) - // Standard Error: 187_519 - .saturating_add((Weight::from_parts(7_513_684, 0)).saturating_mul(y as u64)) - // Standard Error: 324_806 - .saturating_add((Weight::from_parts(39_182_626, 0)).saturating_mul(z as u64)) + (Weight::from_parts(1_680_554_785, 0)) + // Standard Error: 111_252 + .saturating_add((Weight::from_parts(19_982_292, 0)).saturating_mul(x as u64)) + // Standard Error: 228_151 + .saturating_add((Weight::from_parts(7_042_416, 0)).saturating_mul(y as u64)) + // Standard Error: 395_185 + .saturating_add((Weight::from_parts(36_984_074, 0)).saturating_mul(z as u64)) .saturating_add(T::DbWeight::get().reads(224 as u64)) .saturating_add(T::DbWeight::get().reads((4 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(219 as u64)) @@ -610,14 +610,14 @@ impl WeightInfo for () { // Storage: `ParachainStaking::TotalSelected` (r:1 w:1) // Proof: `ParachainStaking::TotalSelected` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_total_selected() -> Weight { - (Weight::from_parts(16_930_000, 0)) + (Weight::from_parts(18_240_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::CollatorCommission` (r:1 w:1) // Proof: `ParachainStaking::CollatorCommission` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_collator_commission() -> Weight { - (Weight::from_parts(17_340_000, 0)) + (Weight::from_parts(18_140_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -644,11 +644,11 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn join_candidates(x: u32, y: u32, ) -> Weight { - (Weight::from_parts(119_544_784, 0)) - // Standard Error: 9_354 - .saturating_add((Weight::from_parts(150_604, 0)).saturating_mul(x as u64)) - // Standard Error: 9_240 - .saturating_add((Weight::from_parts(199_000, 0)).saturating_mul(y as u64)) + (Weight::from_parts(117_053_879, 0)) + // Standard Error: 7_446 + .saturating_add((Weight::from_parts(142_269, 0)).saturating_mul(x as u64)) + // Standard Error: 7_356 + .saturating_add((Weight::from_parts(208_459, 0)).saturating_mul(y as u64)) .saturating_add(RocksDbWeight::get().reads(11 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } @@ -659,9 +659,9 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(37_830_404, 0)) - // Standard Error: 2_680 - .saturating_add((Weight::from_parts(123_243, 0)).saturating_mul(x as u64)) + (Weight::from_parts(37_952_996, 0)) + // Standard Error: 2_861 + .saturating_add((Weight::from_parts(97_664, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -680,9 +680,9 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(66_566_597, 0)) - // Standard Error: 102_929 - .saturating_add((Weight::from_parts(31_808_468, 0)).saturating_mul(x as u64)) + (Weight::from_parts(78_861_262, 0)) + // Standard Error: 107_452 + .saturating_add((Weight::from_parts(30_047_808, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().reads((3 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(1 as u64)) @@ -693,9 +693,9 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn cancel_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(36_344_898, 0)) - // Standard Error: 2_734 - .saturating_add((Weight::from_parts(125_362, 0)).saturating_mul(x as u64)) + (Weight::from_parts(35_957_664, 0)) + // Standard Error: 2_682 + .saturating_add((Weight::from_parts(90_614, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -706,7 +706,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn go_offline() -> Weight { - (Weight::from_parts(36_640_000, 0)) + (Weight::from_parts(34_300_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -717,7 +717,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn go_online() -> Weight { - (Weight::from_parts(34_930_000, 0)) + (Weight::from_parts(34_580_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -730,7 +730,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_candidate_bond_more() -> Weight { - (Weight::from_parts(54_580_000, 0)) + (Weight::from_parts(49_480_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -745,7 +745,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_candidate_bond_less() -> Weight { - (Weight::from_parts(56_670_000, 0)) + (Weight::from_parts(52_750_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -762,7 +762,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_candidate_bond_more() -> Weight { - (Weight::from_parts(107_800_000, 0)) + (Weight::from_parts(94_970_000, 0)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } @@ -779,21 +779,21 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_candidate_bond_less() -> Weight { - (Weight::from_parts(101_800_000, 0)) + (Weight::from_parts(101_731_000, 0)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } // Storage: `ParachainStaking::CandidateState` (r:1 w:1) // Proof: `ParachainStaking::CandidateState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_candidate_bond_more() -> Weight { - (Weight::from_parts(29_240_000, 0)) + (Weight::from_parts(28_020_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::CandidateState` (r:1 w:1) // Proof: `ParachainStaking::CandidateState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_candidate_bond_less() -> Weight { - (Weight::from_parts(29_070_000, 0)) + (Weight::from_parts(26_969_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -818,11 +818,11 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn delegate(x: u32, y: u32, ) -> Weight { - (Weight::from_parts(126_212_793, 0)) - // Standard Error: 20_241 - .saturating_add((Weight::from_parts(152_166, 0)).saturating_mul(x as u64)) - // Standard Error: 19_560 - .saturating_add((Weight::from_parts(281_095, 0)).saturating_mul(y as u64)) + (Weight::from_parts(119_400_015, 0)) + // Standard Error: 19_692 + .saturating_add((Weight::from_parts(211_488, 0)).saturating_mul(x as u64)) + // Standard Error: 19_029 + .saturating_add((Weight::from_parts(310_487, 0)).saturating_mul(y as u64)) .saturating_add(RocksDbWeight::get().reads(10 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -831,7 +831,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_leave_delegators() -> Weight { - (Weight::from_parts(30_220_000, 0)) + (Weight::from_parts(29_970_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -850,9 +850,9 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_leave_delegators(x: u32, ) -> Weight { - (Weight::from_parts(35_710_474, 0)) - // Standard Error: 117_122 - .saturating_add((Weight::from_parts(39_255_172, 0)).saturating_mul(x as u64)) + (Weight::from_parts(30_138_059, 0)) + // Standard Error: 116_246 + .saturating_add((Weight::from_parts(37_661_084, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(4 as u64)) @@ -861,7 +861,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_leave_delegators() -> Weight { - (Weight::from_parts(29_140_000, 0)) + (Weight::from_parts(28_770_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -870,7 +870,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_revoke_delegation() -> Weight { - (Weight::from_parts(32_850_000, 0)) + (Weight::from_parts(33_140_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -883,7 +883,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_delegator_bond_more() -> Weight { - (Weight::from_parts(52_540_000, 0)) + (Weight::from_parts(55_590_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -892,7 +892,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_delegator_bond_less() -> Weight { - (Weight::from_parts(30_900_000, 0)) + (Weight::from_parts(33_310_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -911,7 +911,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_revoke_delegation() -> Weight { - (Weight::from_parts(114_340_000, 0)) + (Weight::from_parts(120_020_000, 0)) .saturating_add(RocksDbWeight::get().reads(7 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -930,7 +930,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_delegator_bond_more() -> Weight { - (Weight::from_parts(126_549_000, 0)) + (Weight::from_parts(118_400_000, 0)) .saturating_add(RocksDbWeight::get().reads(7 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -949,28 +949,28 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_delegator_bond_less() -> Weight { - (Weight::from_parts(105_030_000, 0)) + (Weight::from_parts(119_180_000, 0)) .saturating_add(RocksDbWeight::get().reads(7 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_revoke_delegation() -> Weight { - (Weight::from_parts(28_749_000, 0)) + (Weight::from_parts(27_810_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_delegator_bond_more() -> Weight { - (Weight::from_parts(49_820_000, 0)) + (Weight::from_parts(35_100_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_delegator_bond_less() -> Weight { - (Weight::from_parts(37_670_000, 0)) + (Weight::from_parts(40_170_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -979,18 +979,18 @@ impl WeightInfo for () { // Storage: `ParachainStaking::StakingLiquidityTokens` (r:1 w:1) // Proof: `ParachainStaking::StakingLiquidityTokens` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn add_staking_liquidity_token(x: u32, ) -> Weight { - (Weight::from_parts(26_409_191, 0)) - // Standard Error: 2_820 - .saturating_add((Weight::from_parts(165_180, 0)).saturating_mul(x as u64)) + (Weight::from_parts(25_681_172, 0)) + // Standard Error: 3_287 + .saturating_add((Weight::from_parts(160_557, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::StakingLiquidityTokens` (r:1 w:1) // Proof: `ParachainStaking::StakingLiquidityTokens` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn remove_staking_liquidity_token(x: u32, ) -> Weight { - (Weight::from_parts(20_007_922, 0)) - // Standard Error: 2_592 - .saturating_add((Weight::from_parts(136_166, 0)).saturating_mul(x as u64)) + (Weight::from_parts(18_485_384, 0)) + // Standard Error: 2_633 + .saturating_add((Weight::from_parts(148_333, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -1003,7 +1003,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidateAggregator` (r:1 w:1) // Proof: `ParachainStaking::CandidateAggregator` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn aggregator_update_metadata() -> Weight { - (Weight::from_parts(1_661_170_000, 0)) + (Weight::from_parts(1_637_999_000, 0)) .saturating_add(RocksDbWeight::get().reads(102 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -1014,7 +1014,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::AggregatorMetadata` (r:2 w:2) // Proof: `ParachainStaking::AggregatorMetadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn update_candidate_aggregator() -> Weight { - (Weight::from_parts(109_320_000, 0)) + (Weight::from_parts(106_940_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -1025,7 +1025,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:32 w:31) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn payout_collator_rewards() -> Weight { - (Weight::from_parts(1_510_580_000, 0)) + (Weight::from_parts(1_382_470_000, 0)) .saturating_add(RocksDbWeight::get().reads(66 as u64)) .saturating_add(RocksDbWeight::get().writes(64 as u64)) } @@ -1036,14 +1036,14 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn payout_delegator_reward() -> Weight { - (Weight::from_parts(82_730_000, 0)) + (Weight::from_parts(76_060_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn passive_session_change() -> Weight { - (Weight::from_parts(7_930_000, 0)) + (Weight::from_parts(7_870_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) } // Storage: `ParachainStaking::Round` (r:1 w:1) @@ -1103,13 +1103,13 @@ impl WeightInfo for () { // Storage: `Session::Validators` (r:0 w:1) // Proof: `Session::Validators` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn active_session_change(x: u32, y: u32, z: u32, ) -> Weight { - (Weight::from_parts(1_742_061_893, 0)) - // Standard Error: 91_439 - .saturating_add((Weight::from_parts(19_003_727, 0)).saturating_mul(x as u64)) - // Standard Error: 187_519 - .saturating_add((Weight::from_parts(7_513_684, 0)).saturating_mul(y as u64)) - // Standard Error: 324_806 - .saturating_add((Weight::from_parts(39_182_626, 0)).saturating_mul(z as u64)) + (Weight::from_parts(1_680_554_785, 0)) + // Standard Error: 111_252 + .saturating_add((Weight::from_parts(19_982_292, 0)).saturating_mul(x as u64)) + // Standard Error: 228_151 + .saturating_add((Weight::from_parts(7_042_416, 0)).saturating_mul(y as u64)) + // Standard Error: 395_185 + .saturating_add((Weight::from_parts(36_984_074, 0)).saturating_mul(z as u64)) .saturating_add(RocksDbWeight::get().reads(224 as u64)) .saturating_add(RocksDbWeight::get().reads((4 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(219 as u64)) diff --git a/runtime/mangata-rococo/src/weights/block_weights.rs b/runtime/mangata-rococo/src/weights/block_weights.rs index 90c7e57cf7..c22fb4aa2d 100644 --- a/runtime/mangata-rococo/src/weights/block_weights.rs +++ b/runtime/mangata-rococo/src/weights/block_weights.rs @@ -1,6 +1,7 @@ + //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03 (Y/M/D) -//! HOSTNAME: `7f40434a6f98`, CPU: `AMD EPYC 7B13` +//! DATE: 2024-01-09 (Y/M/D) +//! HOSTNAME: `af2cb189db8d`, CPU: `AMD EPYC 7B13` //! //! SHORT-NAME: `block`, LONG-NAME: `BlockExecution`, RUNTIME: `Mangata Kusama Local` //! WARMUPS: `10`, REPEAT: `100` @@ -29,17 +30,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 27_843_717, 32_531_118 - /// Average: 29_873_562 - /// Median: 29_743_918 - /// Std-Dev: 918740.49 + /// Min, Max: 26_916_778, 31_638_388 + /// Average: 28_489_486 + /// Median: 28_464_418 + /// Std-Dev: 976072.11 /// /// Percentiles nanoseconds: - /// 99th: 32_046_977 - /// 95th: 31_472_667 - /// 75th: 30_410_057 + /// 99th: 31_225_878 + /// 95th: 30_092_347 + /// 75th: 29_178_298 pub const BlockExecutionWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(29_873_562), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(28_489_486), 0); } #[cfg(test)] diff --git a/runtime/mangata-rococo/src/weights/extrinsic_weights.rs b/runtime/mangata-rococo/src/weights/extrinsic_weights.rs index 143c674af2..73714415a6 100644 --- a/runtime/mangata-rococo/src/weights/extrinsic_weights.rs +++ b/runtime/mangata-rococo/src/weights/extrinsic_weights.rs @@ -1,6 +1,7 @@ + //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03 (Y/M/D) -//! HOSTNAME: `7f40434a6f98`, CPU: `AMD EPYC 7B13` +//! DATE: 2024-01-09 (Y/M/D) +//! HOSTNAME: `af2cb189db8d`, CPU: `AMD EPYC 7B13` //! //! SHORT-NAME: `extrinsic`, LONG-NAME: `ExtrinsicBase`, RUNTIME: `Mangata Kusama Local` //! WARMUPS: `10`, REPEAT: `100` @@ -29,17 +30,17 @@ parameter_types! { /// Calculated by multiplying the *Average* with `1.0` and adding `0`. /// /// Stats nanoseconds: - /// Min, Max: 185_312, 198_829 - /// Average: 192_481 - /// Median: 192_653 - /// Std-Dev: 2986.81 + /// Min, Max: 181_689, 199_921 + /// Average: 187_355 + /// Median: 186_772 + /// Std-Dev: 3058.03 /// /// Percentiles nanoseconds: - /// 99th: 198_365 - /// 95th: 197_706 - /// 75th: 194_213 + /// 99th: 195_738 + /// 95th: 192_306 + /// 75th: 188_874 pub const ExtrinsicBaseWeight: Weight = - Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(192_481), 0); + Weight::from_parts(WEIGHT_REF_TIME_PER_NANOS.saturating_mul(187_355), 0); } #[cfg(test)] diff --git a/runtime/mangata-rococo/src/weights/frame_system.rs b/runtime/mangata-rococo/src/weights/frame_system.rs index e500415691..f1f5326385 100644 --- a/runtime/mangata-rococo/src/weights/frame_system.rs +++ b/runtime/mangata-rococo/src/weights/frame_system.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for frame_system //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -69,21 +69,21 @@ pub trait WeightInfo { pub struct ModuleWeight(PhantomData); impl frame_system::WeightInfo for ModuleWeight { fn remark(b: u32, ) -> Weight { - (Weight::from_parts(8_068_407, 0)) + (Weight::from_parts(10_357_957, 0)) // Standard Error: 0 - .saturating_add((Weight::from_parts(301, 0)).saturating_mul(b as u64)) + .saturating_add((Weight::from_parts(293, 0)).saturating_mul(b as u64)) } fn remark_with_event(b: u32, ) -> Weight { - (Weight::from_parts(8_629_253, 0)) - // Standard Error: 3 - .saturating_add((Weight::from_parts(1_566, 0)).saturating_mul(b as u64)) + (Weight::from_parts(12_200_000, 0)) + // Standard Error: 2 + .saturating_add((Weight::from_parts(1_560, 0)).saturating_mul(b as u64)) } // Storage: `System::Digest` (r:1 w:1) // Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) // Storage: UNKNOWN KEY `0x3a686561707061676573` (r:0 w:1) // Proof: UNKNOWN KEY `0x3a686561707061676573` (r:0 w:1) fn set_heap_pages() -> Weight { - (Weight::from_parts(7_550_000, 0)) + (Weight::from_parts(6_710_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -102,32 +102,32 @@ impl frame_system::WeightInfo for ModuleWeight { // Storage: `ParachainSystem::DidSetValidationCode` (r:0 w:1) // Proof: `ParachainSystem::DidSetValidationCode` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_code() -> Weight { - (Weight::from_parts(153_609_518_000, 0)) + (Weight::from_parts(153_135_378_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_storage(i: u32, ) -> Weight { - (Weight::from_parts(4_029_000, 0)) - // Standard Error: 2_553 - .saturating_add((Weight::from_parts(1_209_775, 0)).saturating_mul(i as u64)) + (Weight::from_parts(3_910_000, 0)) + // Standard Error: 2_496 + .saturating_add((Weight::from_parts(1_116_112, 0)).saturating_mul(i as u64)) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(i as u64))) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn kill_storage(i: u32, ) -> Weight { - (Weight::from_parts(3_660_000, 0)) - // Standard Error: 1_695 - .saturating_add((Weight::from_parts(781_486, 0)).saturating_mul(i as u64)) + (Weight::from_parts(3_680_000, 0)) + // Standard Error: 1_407 + .saturating_add((Weight::from_parts(747_816, 0)).saturating_mul(i as u64)) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(i as u64))) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn kill_prefix(p: u32, ) -> Weight { - (Weight::from_parts(6_871_000, 0)) - // Standard Error: 2_662 - .saturating_add((Weight::from_parts(1_353_159, 0)).saturating_mul(p as u64)) + (Weight::from_parts(6_930_000, 0)) + // Standard Error: 2_411 + .saturating_add((Weight::from_parts(1_334_484, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(T::DbWeight::get().writes((1 as u64).saturating_mul(p as u64))) } @@ -136,21 +136,21 @@ impl frame_system::WeightInfo for ModuleWeight { // For backwards compatibility and tests impl WeightInfo for () { fn remark(b: u32, ) -> Weight { - (Weight::from_parts(8_068_407, 0)) + (Weight::from_parts(10_357_957, 0)) // Standard Error: 0 - .saturating_add((Weight::from_parts(301, 0)).saturating_mul(b as u64)) + .saturating_add((Weight::from_parts(293, 0)).saturating_mul(b as u64)) } fn remark_with_event(b: u32, ) -> Weight { - (Weight::from_parts(8_629_253, 0)) - // Standard Error: 3 - .saturating_add((Weight::from_parts(1_566, 0)).saturating_mul(b as u64)) + (Weight::from_parts(12_200_000, 0)) + // Standard Error: 2 + .saturating_add((Weight::from_parts(1_560, 0)).saturating_mul(b as u64)) } // Storage: `System::Digest` (r:1 w:1) // Proof: `System::Digest` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) // Storage: UNKNOWN KEY `0x3a686561707061676573` (r:0 w:1) // Proof: UNKNOWN KEY `0x3a686561707061676573` (r:0 w:1) fn set_heap_pages() -> Weight { - (Weight::from_parts(7_550_000, 0)) + (Weight::from_parts(6_710_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -169,32 +169,32 @@ impl WeightInfo for () { // Storage: `ParachainSystem::DidSetValidationCode` (r:0 w:1) // Proof: `ParachainSystem::DidSetValidationCode` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_code() -> Weight { - (Weight::from_parts(153_609_518_000, 0)) + (Weight::from_parts(153_135_378_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_storage(i: u32, ) -> Weight { - (Weight::from_parts(4_029_000, 0)) - // Standard Error: 2_553 - .saturating_add((Weight::from_parts(1_209_775, 0)).saturating_mul(i as u64)) + (Weight::from_parts(3_910_000, 0)) + // Standard Error: 2_496 + .saturating_add((Weight::from_parts(1_116_112, 0)).saturating_mul(i as u64)) .saturating_add(RocksDbWeight::get().writes((1 as u64).saturating_mul(i as u64))) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn kill_storage(i: u32, ) -> Weight { - (Weight::from_parts(3_660_000, 0)) - // Standard Error: 1_695 - .saturating_add((Weight::from_parts(781_486, 0)).saturating_mul(i as u64)) + (Weight::from_parts(3_680_000, 0)) + // Standard Error: 1_407 + .saturating_add((Weight::from_parts(747_816, 0)).saturating_mul(i as u64)) .saturating_add(RocksDbWeight::get().writes((1 as u64).saturating_mul(i as u64))) } // Storage: `Skipped::Metadata` (r:0 w:0) // Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn kill_prefix(p: u32, ) -> Weight { - (Weight::from_parts(6_871_000, 0)) - // Standard Error: 2_662 - .saturating_add((Weight::from_parts(1_353_159, 0)).saturating_mul(p as u64)) + (Weight::from_parts(6_930_000, 0)) + // Standard Error: 2_411 + .saturating_add((Weight::from_parts(1_334_484, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(RocksDbWeight::get().writes((1 as u64).saturating_mul(p as u64))) } diff --git a/runtime/mangata-rococo/src/weights/orml_asset_registry.rs b/runtime/mangata-rococo/src/weights/orml_asset_registry.rs index a75a7ffaa7..1ee3d8f7c8 100644 --- a/runtime/mangata-rococo/src/weights/orml_asset_registry.rs +++ b/runtime/mangata-rococo/src/weights/orml_asset_registry.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for orml_asset_registry //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -72,7 +72,7 @@ impl orml_asset_registry::WeightInfo for ModuleWeight Weight { - (Weight::from_parts(44_920_000, 0)) + (Weight::from_parts(44_310_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -81,7 +81,7 @@ impl orml_asset_registry::WeightInfo for ModuleWeight Weight { - (Weight::from_parts(30_110_000, 0)) + (Weight::from_parts(28_690_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -98,7 +98,7 @@ impl WeightInfo for () { // Storage: `AssetRegistry::LocationToAssetId` (r:1 w:1) // Proof: `AssetRegistry::LocationToAssetId` (`max_values`: None, `max_size`: Some(614), added: 3089, mode: `MaxEncodedLen`) fn register_asset() -> Weight { - (Weight::from_parts(44_920_000, 0)) + (Weight::from_parts(44_310_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -107,7 +107,7 @@ impl WeightInfo for () { // Storage: `AssetRegistry::LocationToAssetId` (r:1 w:1) // Proof: `AssetRegistry::LocationToAssetId` (`max_values`: None, `max_size`: Some(614), added: 3089, mode: `MaxEncodedLen`) fn update_asset() -> Weight { - (Weight::from_parts(30_110_000, 0)) + (Weight::from_parts(28_690_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/orml_tokens.rs b/runtime/mangata-rococo/src/weights/orml_tokens.rs index 08779e91ef..6e8e1e4f30 100644 --- a/runtime/mangata-rococo/src/weights/orml_tokens.rs +++ b/runtime/mangata-rococo/src/weights/orml_tokens.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for orml_tokens //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -73,7 +73,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer() -> Weight { - (Weight::from_parts(55_440_000, 0)) + (Weight::from_parts(51_859_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -82,7 +82,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer_all() -> Weight { - (Weight::from_parts(58_409_000, 0)) + (Weight::from_parts(56_780_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -91,7 +91,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer_keep_alive() -> Weight { - (Weight::from_parts(49_520_000, 0)) + (Weight::from_parts(51_570_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -100,7 +100,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn force_transfer() -> Weight { - (Weight::from_parts(58_090_000, 0)) + (Weight::from_parts(53_311_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -109,7 +109,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn set_balance() -> Weight { - (Weight::from_parts(29_440_000, 0)) + (Weight::from_parts(28_760_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -122,7 +122,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn create() -> Weight { - (Weight::from_parts(56_320_000, 0)) + (Weight::from_parts(55_380_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -135,7 +135,7 @@ impl orml_tokens::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn mint() -> Weight { - (Weight::from_parts(55_450_000, 0)) + (Weight::from_parts(59_940_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -148,7 +148,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer() -> Weight { - (Weight::from_parts(55_440_000, 0)) + (Weight::from_parts(51_859_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -157,7 +157,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer_all() -> Weight { - (Weight::from_parts(58_409_000, 0)) + (Weight::from_parts(56_780_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -166,7 +166,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn transfer_keep_alive() -> Weight { - (Weight::from_parts(49_520_000, 0)) + (Weight::from_parts(51_570_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -175,7 +175,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn force_transfer() -> Weight { - (Weight::from_parts(58_090_000, 0)) + (Weight::from_parts(53_311_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -184,7 +184,7 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn set_balance() -> Weight { - (Weight::from_parts(29_440_000, 0)) + (Weight::from_parts(28_760_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -197,7 +197,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn create() -> Weight { - (Weight::from_parts(56_320_000, 0)) + (Weight::from_parts(55_380_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -210,7 +210,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn mint() -> Weight { - (Weight::from_parts(55_450_000, 0)) + (Weight::from_parts(59_940_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/pallet_bootstrap.rs b/runtime/mangata-rococo/src/weights/pallet_bootstrap.rs index e14436d06d..4eeba03733 100644 --- a/runtime/mangata-rococo/src/weights/pallet_bootstrap.rs +++ b/runtime/mangata-rococo/src/weights/pallet_bootstrap.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_bootstrap //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -78,7 +78,7 @@ impl pallet_bootstrap::WeightInfo for ModuleWeight { // Storage: `Bootstrap::ActivePair` (r:0 w:1) // Proof: `Bootstrap::ActivePair` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_bootstrap() -> Weight { - (Weight::from_parts(31_660_000, 0)) + (Weight::from_parts(31_320_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -103,7 +103,7 @@ impl pallet_bootstrap::WeightInfo for ModuleWeight { // Storage: `Bootstrap::ProvisionAccounts` (r:0 w:1) // Proof: `Bootstrap::ProvisionAccounts` (`max_values`: None, `max_size`: None, mode: `Measured`) fn provision() -> Weight { - (Weight::from_parts(97_651_000, 0)) + (Weight::from_parts(95_910_000, 0)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -136,7 +136,7 @@ impl pallet_bootstrap::WeightInfo for ModuleWeight { // Storage: `Bootstrap::ProvisionAccounts` (r:0 w:1) // Proof: `Bootstrap::ProvisionAccounts` (`max_values`: None, `max_size`: None, mode: `Measured`) fn claim_and_activate_liquidity_tokens() -> Weight { - (Weight::from_parts(239_080_000, 0)) + (Weight::from_parts(221_220_000, 0)) .saturating_add(T::DbWeight::get().reads(17 as u64)) .saturating_add(T::DbWeight::get().writes(8 as u64)) } @@ -167,7 +167,7 @@ impl pallet_bootstrap::WeightInfo for ModuleWeight { // Storage: `Bootstrap::ActivePair` (r:0 w:1) // Proof: `Bootstrap::ActivePair` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn finalize() -> Weight { - (Weight::from_parts(76_100_000, 0)) + (Weight::from_parts(73_640_000, 0)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(7 as u64)) } @@ -188,7 +188,7 @@ impl WeightInfo for () { // Storage: `Bootstrap::ActivePair` (r:0 w:1) // Proof: `Bootstrap::ActivePair` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_bootstrap() -> Weight { - (Weight::from_parts(31_660_000, 0)) + (Weight::from_parts(31_320_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -213,7 +213,7 @@ impl WeightInfo for () { // Storage: `Bootstrap::ProvisionAccounts` (r:0 w:1) // Proof: `Bootstrap::ProvisionAccounts` (`max_values`: None, `max_size`: None, mode: `Measured`) fn provision() -> Weight { - (Weight::from_parts(97_651_000, 0)) + (Weight::from_parts(95_910_000, 0)) .saturating_add(RocksDbWeight::get().reads(10 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -246,7 +246,7 @@ impl WeightInfo for () { // Storage: `Bootstrap::ProvisionAccounts` (r:0 w:1) // Proof: `Bootstrap::ProvisionAccounts` (`max_values`: None, `max_size`: None, mode: `Measured`) fn claim_and_activate_liquidity_tokens() -> Weight { - (Weight::from_parts(239_080_000, 0)) + (Weight::from_parts(221_220_000, 0)) .saturating_add(RocksDbWeight::get().reads(17 as u64)) .saturating_add(RocksDbWeight::get().writes(8 as u64)) } @@ -277,7 +277,7 @@ impl WeightInfo for () { // Storage: `Bootstrap::ActivePair` (r:0 w:1) // Proof: `Bootstrap::ActivePair` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn finalize() -> Weight { - (Weight::from_parts(76_100_000, 0)) + (Weight::from_parts(73_640_000, 0)) .saturating_add(RocksDbWeight::get().reads(10 as u64)) .saturating_add(RocksDbWeight::get().writes(7 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/pallet_collective_mangata.rs b/runtime/mangata-rococo/src/weights/pallet_collective_mangata.rs index 156c6147d1..a03ba1258c 100644 --- a/runtime/mangata-rococo/src/weights/pallet_collective_mangata.rs +++ b/runtime/mangata-rococo/src/weights/pallet_collective_mangata.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_collective_mangata //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -80,11 +80,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Prime` (r:0 w:1) // Proof: `Council::Prime` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_members(m: u32, _n: u32, p: u32, ) -> Weight { - (Weight::from_parts(50_090_000, 0)) - // Standard Error: 72_056 - .saturating_add((Weight::from_parts(4_845_252, 0)).saturating_mul(m as u64)) - // Standard Error: 72_056 - .saturating_add((Weight::from_parts(9_794_059, 0)).saturating_mul(p as u64)) + (Weight::from_parts(49_500_000, 0)) + // Standard Error: 70_155 + .saturating_add((Weight::from_parts(4_698_580, 0)).saturating_mul(m as u64)) + // Standard Error: 70_155 + .saturating_add((Weight::from_parts(9_659_834, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(T::DbWeight::get().writes(2 as u64)) @@ -93,11 +93,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Members` (r:1 w:0) // Proof: `Council::Members` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute(b: u32, m: u32, ) -> Weight { - (Weight::from_parts(30_607_433, 0)) - // Standard Error: 163 - .saturating_add((Weight::from_parts(1_259, 0)).saturating_mul(b as u64)) - // Standard Error: 1_683 - .saturating_add((Weight::from_parts(18_998, 0)).saturating_mul(m as u64)) + (Weight::from_parts(29_220_221, 0)) + // Standard Error: 140 + .saturating_add((Weight::from_parts(2_429, 0)).saturating_mul(b as u64)) + // Standard Error: 1_443 + .saturating_add((Weight::from_parts(4_412, 0)).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) } // Storage: `Council::Members` (r:1 w:0) @@ -105,11 +105,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::ProposalOf` (r:1 w:0) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn propose_execute(b: u32, m: u32, ) -> Weight { - (Weight::from_parts(34_212_021, 0)) - // Standard Error: 182 - .saturating_add((Weight::from_parts(2_073, 0)).saturating_mul(b as u64)) - // Standard Error: 1_878 - .saturating_add((Weight::from_parts(35_729, 0)).saturating_mul(m as u64)) + (Weight::from_parts(31_829_788, 0)) + // Standard Error: 151 + .saturating_add((Weight::from_parts(2_231, 0)).saturating_mul(b as u64)) + // Standard Error: 1_557 + .saturating_add((Weight::from_parts(35_246, 0)).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) } // Storage: `Council::Members` (r:1 w:0) @@ -125,11 +125,13 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Voting` (r:0 w:1) // Proof: `Council::Voting` (`max_values`: None, `max_size`: None, mode: `Measured`) fn propose_proposed(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(51_719_195, 0)) - // Standard Error: 343 - .saturating_add((Weight::from_parts(4_806, 0)).saturating_mul(b as u64)) - // Standard Error: 3_540 - .saturating_add((Weight::from_parts(307_635, 0)).saturating_mul(p as u64)) + (Weight::from_parts(46_091_730, 0)) + // Standard Error: 319 + .saturating_add((Weight::from_parts(5_410, 0)).saturating_mul(b as u64)) + // Standard Error: 3_332 + .saturating_add((Weight::from_parts(14_379, 0)).saturating_mul(m as u64)) + // Standard Error: 3_289 + .saturating_add((Weight::from_parts(307_260, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -138,9 +140,9 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Voting` (r:1 w:1) // Proof: `Council::Voting` (`max_values`: None, `max_size`: None, mode: `Measured`) fn vote(m: u32, ) -> Weight { - (Weight::from_parts(46_719_287, 0)) - // Standard Error: 3_404 - .saturating_add((Weight::from_parts(20_273, 0)).saturating_mul(m as u64)) + (Weight::from_parts(43_669_294, 0)) + // Standard Error: 2_626 + .saturating_add((Weight::from_parts(43_911, 0)).saturating_mul(m as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -155,11 +157,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn close_early_disapproved(m: u32, p: u32, ) -> Weight { - (Weight::from_parts(66_985_259, 0)) - // Standard Error: 4_430 - .saturating_add((Weight::from_parts(47_134, 0)).saturating_mul(m as u64)) - // Standard Error: 4_320 - .saturating_add((Weight::from_parts(316_910, 0)).saturating_mul(p as u64)) + (Weight::from_parts(62_669_590, 0)) + // Standard Error: 4_434 + .saturating_add((Weight::from_parts(61_080, 0)).saturating_mul(m as u64)) + // Standard Error: 4_324 + .saturating_add((Weight::from_parts(335_148, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -174,13 +176,13 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Proposals` (r:1 w:1) // Proof: `Council::Proposals` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn close_early_approved(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(86_026_209, 0)) - // Standard Error: 595 - .saturating_add((Weight::from_parts(9_907, 0)).saturating_mul(b as u64)) - // Standard Error: 6_297 - .saturating_add((Weight::from_parts(40_342, 0)).saturating_mul(m as u64)) - // Standard Error: 6_138 - .saturating_add((Weight::from_parts(392_639, 0)).saturating_mul(p as u64)) + (Weight::from_parts(93_764_711, 0)) + // Standard Error: 617 + .saturating_add((Weight::from_parts(4_363, 0)).saturating_mul(b as u64)) + // Standard Error: 6_521 + .saturating_add((Weight::from_parts(10_992, 0)).saturating_mul(m as u64)) + // Standard Error: 6_357 + .saturating_add((Weight::from_parts(342_855, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -197,11 +199,11 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn close_disapproved(m: u32, p: u32, ) -> Weight { - (Weight::from_parts(74_401_218, 0)) - // Standard Error: 4_419 - .saturating_add((Weight::from_parts(31_096, 0)).saturating_mul(m as u64)) - // Standard Error: 4_309 - .saturating_add((Weight::from_parts(296_121, 0)).saturating_mul(p as u64)) + (Weight::from_parts(70_879_635, 0)) + // Standard Error: 4_851 + .saturating_add((Weight::from_parts(35_945, 0)).saturating_mul(m as u64)) + // Standard Error: 4_730 + .saturating_add((Weight::from_parts(309_764, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -218,13 +220,13 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::Proposals` (r:1 w:1) // Proof: `Council::Proposals` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn close_approved(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(98_643_873, 0)) - // Standard Error: 560 - .saturating_add((Weight::from_parts(7_326, 0)).saturating_mul(b as u64)) - // Standard Error: 5_927 - .saturating_add((Weight::from_parts(16_387, 0)).saturating_mul(m as u64)) - // Standard Error: 5_778 - .saturating_add((Weight::from_parts(357_802, 0)).saturating_mul(p as u64)) + (Weight::from_parts(88_548_132, 0)) + // Standard Error: 616 + .saturating_add((Weight::from_parts(8_945, 0)).saturating_mul(b as u64)) + // Standard Error: 6_515 + .saturating_add((Weight::from_parts(53_020, 0)).saturating_mul(m as u64)) + // Standard Error: 6_351 + .saturating_add((Weight::from_parts(379_369, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -237,9 +239,9 @@ impl pallet_collective_mangata::WeightInfo for ModuleWe // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn disapprove_proposal(p: u32, ) -> Weight { - (Weight::from_parts(35_738_384, 0)) - // Standard Error: 4_396 - .saturating_add((Weight::from_parts(291_651, 0)).saturating_mul(p as u64)) + (Weight::from_parts(35_334_531, 0)) + // Standard Error: 3_100 + .saturating_add((Weight::from_parts(261_922, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -256,11 +258,11 @@ impl WeightInfo for () { // Storage: `Council::Prime` (r:0 w:1) // Proof: `Council::Prime` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_members(m: u32, _n: u32, p: u32, ) -> Weight { - (Weight::from_parts(50_090_000, 0)) - // Standard Error: 72_056 - .saturating_add((Weight::from_parts(4_845_252, 0)).saturating_mul(m as u64)) - // Standard Error: 72_056 - .saturating_add((Weight::from_parts(9_794_059, 0)).saturating_mul(p as u64)) + (Weight::from_parts(49_500_000, 0)) + // Standard Error: 70_155 + .saturating_add((Weight::from_parts(4_698_580, 0)).saturating_mul(m as u64)) + // Standard Error: 70_155 + .saturating_add((Weight::from_parts(9_659_834, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(RocksDbWeight::get().writes(2 as u64)) @@ -269,11 +271,11 @@ impl WeightInfo for () { // Storage: `Council::Members` (r:1 w:0) // Proof: `Council::Members` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute(b: u32, m: u32, ) -> Weight { - (Weight::from_parts(30_607_433, 0)) - // Standard Error: 163 - .saturating_add((Weight::from_parts(1_259, 0)).saturating_mul(b as u64)) - // Standard Error: 1_683 - .saturating_add((Weight::from_parts(18_998, 0)).saturating_mul(m as u64)) + (Weight::from_parts(29_220_221, 0)) + // Standard Error: 140 + .saturating_add((Weight::from_parts(2_429, 0)).saturating_mul(b as u64)) + // Standard Error: 1_443 + .saturating_add((Weight::from_parts(4_412, 0)).saturating_mul(m as u64)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) } // Storage: `Council::Members` (r:1 w:0) @@ -281,11 +283,11 @@ impl WeightInfo for () { // Storage: `Council::ProposalOf` (r:1 w:0) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn propose_execute(b: u32, m: u32, ) -> Weight { - (Weight::from_parts(34_212_021, 0)) - // Standard Error: 182 - .saturating_add((Weight::from_parts(2_073, 0)).saturating_mul(b as u64)) - // Standard Error: 1_878 - .saturating_add((Weight::from_parts(35_729, 0)).saturating_mul(m as u64)) + (Weight::from_parts(31_829_788, 0)) + // Standard Error: 151 + .saturating_add((Weight::from_parts(2_231, 0)).saturating_mul(b as u64)) + // Standard Error: 1_557 + .saturating_add((Weight::from_parts(35_246, 0)).saturating_mul(m as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) } // Storage: `Council::Members` (r:1 w:0) @@ -301,11 +303,13 @@ impl WeightInfo for () { // Storage: `Council::Voting` (r:0 w:1) // Proof: `Council::Voting` (`max_values`: None, `max_size`: None, mode: `Measured`) fn propose_proposed(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(51_719_195, 0)) - // Standard Error: 343 - .saturating_add((Weight::from_parts(4_806, 0)).saturating_mul(b as u64)) - // Standard Error: 3_540 - .saturating_add((Weight::from_parts(307_635, 0)).saturating_mul(p as u64)) + (Weight::from_parts(46_091_730, 0)) + // Standard Error: 319 + .saturating_add((Weight::from_parts(5_410, 0)).saturating_mul(b as u64)) + // Standard Error: 3_332 + .saturating_add((Weight::from_parts(14_379, 0)).saturating_mul(m as u64)) + // Standard Error: 3_289 + .saturating_add((Weight::from_parts(307_260, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } @@ -314,9 +318,9 @@ impl WeightInfo for () { // Storage: `Council::Voting` (r:1 w:1) // Proof: `Council::Voting` (`max_values`: None, `max_size`: None, mode: `Measured`) fn vote(m: u32, ) -> Weight { - (Weight::from_parts(46_719_287, 0)) - // Standard Error: 3_404 - .saturating_add((Weight::from_parts(20_273, 0)).saturating_mul(m as u64)) + (Weight::from_parts(43_669_294, 0)) + // Standard Error: 2_626 + .saturating_add((Weight::from_parts(43_911, 0)).saturating_mul(m as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -331,11 +335,11 @@ impl WeightInfo for () { // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn close_early_disapproved(m: u32, p: u32, ) -> Weight { - (Weight::from_parts(66_985_259, 0)) - // Standard Error: 4_430 - .saturating_add((Weight::from_parts(47_134, 0)).saturating_mul(m as u64)) - // Standard Error: 4_320 - .saturating_add((Weight::from_parts(316_910, 0)).saturating_mul(p as u64)) + (Weight::from_parts(62_669_590, 0)) + // Standard Error: 4_434 + .saturating_add((Weight::from_parts(61_080, 0)).saturating_mul(m as u64)) + // Standard Error: 4_324 + .saturating_add((Weight::from_parts(335_148, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -350,13 +354,13 @@ impl WeightInfo for () { // Storage: `Council::Proposals` (r:1 w:1) // Proof: `Council::Proposals` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn close_early_approved(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(86_026_209, 0)) - // Standard Error: 595 - .saturating_add((Weight::from_parts(9_907, 0)).saturating_mul(b as u64)) - // Standard Error: 6_297 - .saturating_add((Weight::from_parts(40_342, 0)).saturating_mul(m as u64)) - // Standard Error: 6_138 - .saturating_add((Weight::from_parts(392_639, 0)).saturating_mul(p as u64)) + (Weight::from_parts(93_764_711, 0)) + // Standard Error: 617 + .saturating_add((Weight::from_parts(4_363, 0)).saturating_mul(b as u64)) + // Standard Error: 6_521 + .saturating_add((Weight::from_parts(10_992, 0)).saturating_mul(m as u64)) + // Standard Error: 6_357 + .saturating_add((Weight::from_parts(342_855, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -373,11 +377,11 @@ impl WeightInfo for () { // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn close_disapproved(m: u32, p: u32, ) -> Weight { - (Weight::from_parts(74_401_218, 0)) - // Standard Error: 4_419 - .saturating_add((Weight::from_parts(31_096, 0)).saturating_mul(m as u64)) - // Standard Error: 4_309 - .saturating_add((Weight::from_parts(296_121, 0)).saturating_mul(p as u64)) + (Weight::from_parts(70_879_635, 0)) + // Standard Error: 4_851 + .saturating_add((Weight::from_parts(35_945, 0)).saturating_mul(m as u64)) + // Standard Error: 4_730 + .saturating_add((Weight::from_parts(309_764, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -394,13 +398,13 @@ impl WeightInfo for () { // Storage: `Council::Proposals` (r:1 w:1) // Proof: `Council::Proposals` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn close_approved(b: u32, m: u32, p: u32, ) -> Weight { - (Weight::from_parts(98_643_873, 0)) - // Standard Error: 560 - .saturating_add((Weight::from_parts(7_326, 0)).saturating_mul(b as u64)) - // Standard Error: 5_927 - .saturating_add((Weight::from_parts(16_387, 0)).saturating_mul(m as u64)) - // Standard Error: 5_778 - .saturating_add((Weight::from_parts(357_802, 0)).saturating_mul(p as u64)) + (Weight::from_parts(88_548_132, 0)) + // Standard Error: 616 + .saturating_add((Weight::from_parts(8_945, 0)).saturating_mul(b as u64)) + // Standard Error: 6_515 + .saturating_add((Weight::from_parts(53_020, 0)).saturating_mul(m as u64)) + // Standard Error: 6_351 + .saturating_add((Weight::from_parts(379_369, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -413,9 +417,9 @@ impl WeightInfo for () { // Storage: `Council::ProposalOf` (r:0 w:1) // Proof: `Council::ProposalOf` (`max_values`: None, `max_size`: None, mode: `Measured`) fn disapprove_proposal(p: u32, ) -> Weight { - (Weight::from_parts(35_738_384, 0)) - // Standard Error: 4_396 - .saturating_add((Weight::from_parts(291_651, 0)).saturating_mul(p as u64)) + (Weight::from_parts(35_334_531, 0)) + // Standard Error: 3_100 + .saturating_add((Weight::from_parts(261_922, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/pallet_crowdloan_rewards.rs b/runtime/mangata-rococo/src/weights/pallet_crowdloan_rewards.rs index c457c66b7c..276b1e97c1 100644 --- a/runtime/mangata-rococo/src/weights/pallet_crowdloan_rewards.rs +++ b/runtime/mangata-rococo/src/weights/pallet_crowdloan_rewards.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_crowdloan_rewards //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -77,7 +77,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::CrowdloanAllocation` (r:0 w:1) // Proof: `Crowdloan::CrowdloanAllocation` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_crowdloan_allocation() -> Weight { - (Weight::from_parts(14_470_000, 0)) + (Weight::from_parts(12_770_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -98,9 +98,9 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::AccountsPayable` (r:100 w:100) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn initialize_reward_vec(x: u32, ) -> Weight { - (Weight::from_parts(141_666_911, 0)) - // Standard Error: 73_439 - .saturating_add((Weight::from_parts(26_080_457, 0)).saturating_mul(x as u64)) + (Weight::from_parts(140_806_355, 0)) + // Standard Error: 72_364 + .saturating_add((Weight::from_parts(25_290_013, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(2 as u64)) @@ -119,7 +119,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::CrowdloanPeriod` (r:0 w:1) // Proof: `Crowdloan::CrowdloanPeriod` (`max_values`: None, `max_size`: None, mode: `Measured`) fn complete_initialization() -> Weight { - (Weight::from_parts(27_570_000, 0)) + (Weight::from_parts(26_630_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -144,7 +144,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn claim() -> Weight { - (Weight::from_parts(131_760_000, 0)) + (Weight::from_parts(130_990_000, 0)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -153,7 +153,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::AccountsPayable` (r:2 w:2) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn update_reward_address() -> Weight { - (Weight::from_parts(35_020_000, 0)) + (Weight::from_parts(34_830_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -166,7 +166,7 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::AccountsPayable` (r:1 w:1) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn associate_native_identity() -> Weight { - (Weight::from_parts(115_070_000, 0)) + (Weight::from_parts(117_000_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -175,9 +175,9 @@ impl pallet_crowdloan_rewards::WeightInfo for ModuleWei // Storage: `Crowdloan::AccountsPayable` (r:2 w:2) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn change_association_with_relay_keys(x: u32, ) -> Weight { - (Weight::from_parts(22_606_472, 0)) - // Standard Error: 117_254 - .saturating_add((Weight::from_parts(62_758_102, 0)).saturating_mul(x as u64)) + (Weight::from_parts(27_532_509, 0)) + // Standard Error: 138_004 + .saturating_add((Weight::from_parts(60_668_712, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -194,7 +194,7 @@ impl WeightInfo for () { // Storage: `Crowdloan::CrowdloanAllocation` (r:0 w:1) // Proof: `Crowdloan::CrowdloanAllocation` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_crowdloan_allocation() -> Weight { - (Weight::from_parts(14_470_000, 0)) + (Weight::from_parts(12_770_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -215,9 +215,9 @@ impl WeightInfo for () { // Storage: `Crowdloan::AccountsPayable` (r:100 w:100) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn initialize_reward_vec(x: u32, ) -> Weight { - (Weight::from_parts(141_666_911, 0)) - // Standard Error: 73_439 - .saturating_add((Weight::from_parts(26_080_457, 0)).saturating_mul(x as u64)) + (Weight::from_parts(140_806_355, 0)) + // Standard Error: 72_364 + .saturating_add((Weight::from_parts(25_290_013, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().reads((3 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(2 as u64)) @@ -236,7 +236,7 @@ impl WeightInfo for () { // Storage: `Crowdloan::CrowdloanPeriod` (r:0 w:1) // Proof: `Crowdloan::CrowdloanPeriod` (`max_values`: None, `max_size`: None, mode: `Measured`) fn complete_initialization() -> Weight { - (Weight::from_parts(27_570_000, 0)) + (Weight::from_parts(26_630_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -261,7 +261,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn claim() -> Weight { - (Weight::from_parts(131_760_000, 0)) + (Weight::from_parts(130_990_000, 0)) .saturating_add(RocksDbWeight::get().reads(10 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -270,7 +270,7 @@ impl WeightInfo for () { // Storage: `Crowdloan::AccountsPayable` (r:2 w:2) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn update_reward_address() -> Weight { - (Weight::from_parts(35_020_000, 0)) + (Weight::from_parts(34_830_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -283,7 +283,7 @@ impl WeightInfo for () { // Storage: `Crowdloan::AccountsPayable` (r:1 w:1) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn associate_native_identity() -> Weight { - (Weight::from_parts(115_070_000, 0)) + (Weight::from_parts(117_000_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -292,9 +292,9 @@ impl WeightInfo for () { // Storage: `Crowdloan::AccountsPayable` (r:2 w:2) // Proof: `Crowdloan::AccountsPayable` (`max_values`: None, `max_size`: None, mode: `Measured`) fn change_association_with_relay_keys(x: u32, ) -> Weight { - (Weight::from_parts(22_606_472, 0)) - // Standard Error: 117_254 - .saturating_add((Weight::from_parts(62_758_102, 0)).saturating_mul(x as u64)) + (Weight::from_parts(27_532_509, 0)) + // Standard Error: 138_004 + .saturating_add((Weight::from_parts(60_668_712, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/pallet_fee_lock.rs b/runtime/mangata-rococo/src/weights/pallet_fee_lock.rs index c3b7988d63..d2b6013d3c 100644 --- a/runtime/mangata-rococo/src/weights/pallet_fee_lock.rs +++ b/runtime/mangata-rococo/src/weights/pallet_fee_lock.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_fee_lock //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -66,7 +66,7 @@ impl pallet_fee_lock::WeightInfo for ModuleWeight { // Storage: `FeeLock::FeeLockMetadata` (r:1 w:1) // Proof: `FeeLock::FeeLockMetadata` (`max_values`: Some(1), `max_size`: Some(438), added: 933, mode: `MaxEncodedLen`) fn update_fee_lock_metadata() -> Weight { - (Weight::from_parts(28_480_000, 0)) + (Weight::from_parts(25_440_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -81,7 +81,7 @@ impl pallet_fee_lock::WeightInfo for ModuleWeight { // Storage: `FeeLock::UnlockQueue` (r:1 w:1) // Proof: `FeeLock::UnlockQueue` (`max_values`: None, `max_size`: Some(56), added: 2531, mode: `MaxEncodedLen`) fn unlock_fee() -> Weight { - (Weight::from_parts(56_480_000, 0)) + (Weight::from_parts(51_730_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -92,7 +92,7 @@ impl WeightInfo for () { // Storage: `FeeLock::FeeLockMetadata` (r:1 w:1) // Proof: `FeeLock::FeeLockMetadata` (`max_values`: Some(1), `max_size`: Some(438), added: 933, mode: `MaxEncodedLen`) fn update_fee_lock_metadata() -> Weight { - (Weight::from_parts(28_480_000, 0)) + (Weight::from_parts(25_440_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -107,7 +107,7 @@ impl WeightInfo for () { // Storage: `FeeLock::UnlockQueue` (r:1 w:1) // Proof: `FeeLock::UnlockQueue` (`max_values`: None, `max_size`: Some(56), added: 2531, mode: `MaxEncodedLen`) fn unlock_fee() -> Weight { - (Weight::from_parts(56_480_000, 0)) + (Weight::from_parts(51_730_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/pallet_issuance.rs b/runtime/mangata-rococo/src/weights/pallet_issuance.rs index 780afe797b..80133fbb4c 100644 --- a/runtime/mangata-rococo/src/weights/pallet_issuance.rs +++ b/runtime/mangata-rococo/src/weights/pallet_issuance.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_issuance //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -71,14 +71,14 @@ impl pallet_issuance::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:0) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn init_issuance_config() -> Weight { - (Weight::from_parts(27_420_000, 0)) + (Weight::from_parts(24_910_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `Issuance::IsTGEFinalized` (r:1 w:1) // Proof: `Issuance::IsTGEFinalized` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn finalize_tge() -> Weight { - (Weight::from_parts(16_590_000, 0)) + (Weight::from_parts(14_820_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -97,9 +97,9 @@ impl pallet_issuance::WeightInfo for ModuleWeight { // Storage: `Issuance::TGETotal` (r:1 w:1) // Proof: `Issuance::TGETotal` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_tge(x: u32, ) -> Weight { - (Weight::from_parts(285_200_000, 0)) - // Standard Error: 142_818 - .saturating_add((Weight::from_parts(83_360_692, 0)).saturating_mul(x as u64)) + (Weight::from_parts(39_640_002, 0)) + // Standard Error: 225_590 + .saturating_add((Weight::from_parts(84_065_197, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads((4 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(2 as u64)) @@ -116,14 +116,14 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:0) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn init_issuance_config() -> Weight { - (Weight::from_parts(27_420_000, 0)) + (Weight::from_parts(24_910_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `Issuance::IsTGEFinalized` (r:1 w:1) // Proof: `Issuance::IsTGEFinalized` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn finalize_tge() -> Weight { - (Weight::from_parts(16_590_000, 0)) + (Weight::from_parts(14_820_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -142,9 +142,9 @@ impl WeightInfo for () { // Storage: `Issuance::TGETotal` (r:1 w:1) // Proof: `Issuance::TGETotal` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_tge(x: u32, ) -> Weight { - (Weight::from_parts(285_200_000, 0)) - // Standard Error: 142_818 - .saturating_add((Weight::from_parts(83_360_692, 0)).saturating_mul(x as u64)) + (Weight::from_parts(39_640_002, 0)) + // Standard Error: 225_590 + .saturating_add((Weight::from_parts(84_065_197, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().reads((4 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(2 as u64)) diff --git a/runtime/mangata-rococo/src/weights/pallet_multipurpose_liquidity.rs b/runtime/mangata-rococo/src/weights/pallet_multipurpose_liquidity.rs index 02d376e938..b95cc88557 100644 --- a/runtime/mangata-rococo/src/weights/pallet_multipurpose_liquidity.rs +++ b/runtime/mangata-rococo/src/weights/pallet_multipurpose_liquidity.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_multipurpose_liquidity //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -76,7 +76,7 @@ impl pallet_multipurpose_liquidity::WeightInfo for Modu // Storage: `MultiPurposeLiquidity::RelockStatus` (r:1 w:1) // Proof: `MultiPurposeLiquidity::RelockStatus` (`max_values`: None, `max_size`: Some(1845), added: 4320, mode: `MaxEncodedLen`) fn reserve_vesting_liquidity_tokens() -> Weight { - (Weight::from_parts(126_910_000, 0)) + (Weight::from_parts(117_650_000, 0)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -91,7 +91,7 @@ impl pallet_multipurpose_liquidity::WeightInfo for Modu // Storage: `Tokens::Locks` (r:1 w:1) // Proof: `Tokens::Locks` (`max_values`: None, `max_size`: Some(1261), added: 3736, mode: `MaxEncodedLen`) fn unreserve_and_relock_instance() -> Weight { - (Weight::from_parts(124_910_000, 0)) + (Weight::from_parts(119_580_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -112,7 +112,7 @@ impl WeightInfo for () { // Storage: `MultiPurposeLiquidity::RelockStatus` (r:1 w:1) // Proof: `MultiPurposeLiquidity::RelockStatus` (`max_values`: None, `max_size`: Some(1845), added: 4320, mode: `MaxEncodedLen`) fn reserve_vesting_liquidity_tokens() -> Weight { - (Weight::from_parts(126_910_000, 0)) + (Weight::from_parts(117_650_000, 0)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } @@ -127,7 +127,7 @@ impl WeightInfo for () { // Storage: `Tokens::Locks` (r:1 w:1) // Proof: `Tokens::Locks` (`max_values`: None, `max_size`: Some(1261), added: 3736, mode: `MaxEncodedLen`) fn unreserve_and_relock_instance() -> Weight { - (Weight::from_parts(124_910_000, 0)) + (Weight::from_parts(119_580_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/pallet_proof_of_stake.rs b/runtime/mangata-rococo/src/weights/pallet_proof_of_stake.rs index 9de88c5528..f8bf3e3545 100644 --- a/runtime/mangata-rococo/src/weights/pallet_proof_of_stake.rs +++ b/runtime/mangata-rococo/src/weights/pallet_proof_of_stake.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_proof_of_stake //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -76,7 +76,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `Tokens::Accounts` (r:2 w:2) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn claim_native_rewards() -> Weight { - (Weight::from_parts(104_800_000, 0)) + (Weight::from_parts(91_511_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -85,7 +85,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::PromotedPoolRewards` (r:1 w:1) // Proof: `ProofOfStake::PromotedPoolRewards` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn update_pool_promotion() -> Weight { - (Weight::from_parts(27_720_000, 0)) + (Weight::from_parts(24_930_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -100,7 +100,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn activate_liquidity_for_native_rewards() -> Weight { - (Weight::from_parts(104_670_000, 0)) + (Weight::from_parts(99_350_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -117,7 +117,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn deactivate_liquidity_for_native_rewards() -> Weight { - (Weight::from_parts(94_510_000, 0)) + (Weight::from_parts(93_880_000, 0)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } @@ -140,7 +140,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::RewardTokensPerPool` (r:0 w:1) // Proof: `ProofOfStake::RewardTokensPerPool` (`max_values`: None, `max_size`: None, mode: `Measured`) fn reward_pool() -> Weight { - (Weight::from_parts(144_790_000, 0)) + (Weight::from_parts(151_500_000, 0)) .saturating_add(T::DbWeight::get().reads(9 as u64)) .saturating_add(T::DbWeight::get().writes(7 as u64)) } @@ -161,7 +161,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::TotalActivatedLiquidityForSchedules` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidityForSchedules` (`max_values`: None, `max_size`: None, mode: `Measured`) fn activate_liquidity_for_3rdparty_rewards() -> Weight { - (Weight::from_parts(129_000_000, 0)) + (Weight::from_parts(130_410_000, 0)) .saturating_add(T::DbWeight::get().reads(9 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -184,7 +184,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `ProofOfStake::ActivatedNativeRewardsLiq` (r:1 w:1) // Proof: `ProofOfStake::ActivatedNativeRewardsLiq` (`max_values`: None, `max_size`: None, mode: `Measured`) fn deactivate_liquidity_for_3rdparty_rewards() -> Weight { - (Weight::from_parts(137_490_000, 0)) + (Weight::from_parts(137_660_000, 0)) .saturating_add(T::DbWeight::get().reads(11 as u64)) .saturating_add(T::DbWeight::get().writes(7 as u64)) } @@ -201,7 +201,7 @@ impl pallet_proof_of_stake::WeightInfo for ModuleWeight // Storage: `Tokens::Accounts` (r:2 w:2) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn claim_3rdparty_rewards() -> Weight { - (Weight::from_parts(142_210_000, 0)) + (Weight::from_parts(148_570_000, 0)) .saturating_add(T::DbWeight::get().reads(8 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -216,7 +216,7 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:2 w:2) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn claim_native_rewards() -> Weight { - (Weight::from_parts(104_800_000, 0)) + (Weight::from_parts(91_511_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -225,7 +225,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::PromotedPoolRewards` (r:1 w:1) // Proof: `ProofOfStake::PromotedPoolRewards` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn update_pool_promotion() -> Weight { - (Weight::from_parts(27_720_000, 0)) + (Weight::from_parts(24_930_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -240,7 +240,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn activate_liquidity_for_native_rewards() -> Weight { - (Weight::from_parts(104_670_000, 0)) + (Weight::from_parts(99_350_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -257,7 +257,7 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn deactivate_liquidity_for_native_rewards() -> Weight { - (Weight::from_parts(94_510_000, 0)) + (Weight::from_parts(93_880_000, 0)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } @@ -280,7 +280,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::RewardTokensPerPool` (r:0 w:1) // Proof: `ProofOfStake::RewardTokensPerPool` (`max_values`: None, `max_size`: None, mode: `Measured`) fn reward_pool() -> Weight { - (Weight::from_parts(144_790_000, 0)) + (Weight::from_parts(151_500_000, 0)) .saturating_add(RocksDbWeight::get().reads(9 as u64)) .saturating_add(RocksDbWeight::get().writes(7 as u64)) } @@ -301,7 +301,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::TotalActivatedLiquidityForSchedules` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidityForSchedules` (`max_values`: None, `max_size`: None, mode: `Measured`) fn activate_liquidity_for_3rdparty_rewards() -> Weight { - (Weight::from_parts(129_000_000, 0)) + (Weight::from_parts(130_410_000, 0)) .saturating_add(RocksDbWeight::get().reads(9 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -324,7 +324,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::ActivatedNativeRewardsLiq` (r:1 w:1) // Proof: `ProofOfStake::ActivatedNativeRewardsLiq` (`max_values`: None, `max_size`: None, mode: `Measured`) fn deactivate_liquidity_for_3rdparty_rewards() -> Weight { - (Weight::from_parts(137_490_000, 0)) + (Weight::from_parts(137_660_000, 0)) .saturating_add(RocksDbWeight::get().reads(11 as u64)) .saturating_add(RocksDbWeight::get().writes(7 as u64)) } @@ -341,7 +341,7 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:2 w:2) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn claim_3rdparty_rewards() -> Weight { - (Weight::from_parts(142_210_000, 0)) + (Weight::from_parts(148_570_000, 0)) .saturating_add(RocksDbWeight::get().reads(8 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/pallet_session.rs b/runtime/mangata-rococo/src/weights/pallet_session.rs index d845ee7870..3c2f5c1c69 100644 --- a/runtime/mangata-rococo/src/weights/pallet_session.rs +++ b/runtime/mangata-rococo/src/weights/pallet_session.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_session //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -68,7 +68,7 @@ impl pallet_session::WeightInfo for ModuleWeight { // Storage: `Session::KeyOwner` (r:1 w:1) // Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_keys() -> Weight { - (Weight::from_parts(28_720_000, 0)) + (Weight::from_parts(28_131_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -77,7 +77,7 @@ impl pallet_session::WeightInfo for ModuleWeight { // Storage: `Session::KeyOwner` (r:0 w:1) // Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn purge_keys() -> Weight { - (Weight::from_parts(18_130_000, 0)) + (Weight::from_parts(17_660_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -90,7 +90,7 @@ impl WeightInfo for () { // Storage: `Session::KeyOwner` (r:1 w:1) // Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn set_keys() -> Weight { - (Weight::from_parts(28_720_000, 0)) + (Weight::from_parts(28_131_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -99,7 +99,7 @@ impl WeightInfo for () { // Storage: `Session::KeyOwner` (r:0 w:1) // Proof: `Session::KeyOwner` (`max_values`: None, `max_size`: None, mode: `Measured`) fn purge_keys() -> Weight { - (Weight::from_parts(18_130_000, 0)) + (Weight::from_parts(17_660_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/pallet_timestamp.rs b/runtime/mangata-rococo/src/weights/pallet_timestamp.rs index 32bc7e1481..c67bec4127 100644 --- a/runtime/mangata-rococo/src/weights/pallet_timestamp.rs +++ b/runtime/mangata-rococo/src/weights/pallet_timestamp.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_timestamp //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -66,12 +66,12 @@ impl pallet_timestamp::WeightInfo for ModuleWeight { // Storage: `Timestamp::Now` (r:1 w:1) // Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `MaxEncodedLen`) fn set() -> Weight { - (Weight::from_parts(9_740_000, 0)) + (Weight::from_parts(10_280_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } fn on_finalize() -> Weight { - (Weight::from_parts(5_150_000, 0)) + (Weight::from_parts(5_510_000, 0)) } } @@ -80,11 +80,11 @@ impl WeightInfo for () { // Storage: `Timestamp::Now` (r:1 w:1) // Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `MaxEncodedLen`) fn set() -> Weight { - (Weight::from_parts(9_740_000, 0)) + (Weight::from_parts(10_280_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } fn on_finalize() -> Weight { - (Weight::from_parts(5_150_000, 0)) + (Weight::from_parts(5_510_000, 0)) } } diff --git a/runtime/mangata-rococo/src/weights/pallet_treasury.rs b/runtime/mangata-rococo/src/weights/pallet_treasury.rs index faa2e8a72b..87dccb8afa 100644 --- a/runtime/mangata-rococo/src/weights/pallet_treasury.rs +++ b/runtime/mangata-rococo/src/weights/pallet_treasury.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_treasury //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -68,7 +68,7 @@ pub trait WeightInfo { pub struct ModuleWeight(PhantomData); impl pallet_treasury::WeightInfo for ModuleWeight { fn spend() -> Weight { - (Weight::from_parts(480_000, 0)) + (Weight::from_parts(520_000, 0)) } // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) @@ -77,7 +77,7 @@ impl pallet_treasury::WeightInfo for ModuleWeight { // Storage: `Treasury::Proposals` (r:0 w:1) // Proof: `Treasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn propose_spend() -> Weight { - (Weight::from_parts(44_130_000, 0)) + (Weight::from_parts(44_931_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -88,7 +88,7 @@ impl pallet_treasury::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn reject_proposal() -> Weight { - (Weight::from_parts(52_489_000, 0)) + (Weight::from_parts(47_551_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -97,16 +97,16 @@ impl pallet_treasury::WeightInfo for ModuleWeight { // Storage: `Treasury::Approvals` (r:1 w:1) // Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn approve_proposal(p: u32, ) -> Weight { - (Weight::from_parts(19_551_237, 0)) - // Standard Error: 1_811 - .saturating_add((Weight::from_parts(68_875, 0)).saturating_mul(p as u64)) + (Weight::from_parts(18_608_202, 0)) + // Standard Error: 1_870 + .saturating_add((Weight::from_parts(69_054, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `Treasury::Approvals` (r:1 w:1) // Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn remove_approval() -> Weight { - (Weight::from_parts(12_580_000, 0)) + (Weight::from_parts(12_130_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -121,9 +121,9 @@ impl pallet_treasury::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn on_initialize_proposals(p: u32, ) -> Weight { - (Weight::from_parts(39_451_729, 0)) - // Standard Error: 14_637 - .saturating_add((Weight::from_parts(4_433_389, 0)).saturating_mul(p as u64)) + (Weight::from_parts(37_540_256, 0)) + // Standard Error: 17_041 + .saturating_add((Weight::from_parts(4_191_639, 0)).saturating_mul(p as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(T::DbWeight::get().writes(1 as u64)) @@ -133,7 +133,7 @@ impl pallet_treasury::WeightInfo for ModuleWeight { // For backwards compatibility and tests impl WeightInfo for () { fn spend() -> Weight { - (Weight::from_parts(480_000, 0)) + (Weight::from_parts(520_000, 0)) } // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) @@ -142,7 +142,7 @@ impl WeightInfo for () { // Storage: `Treasury::Proposals` (r:0 w:1) // Proof: `Treasury::Proposals` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn propose_spend() -> Weight { - (Weight::from_parts(44_130_000, 0)) + (Weight::from_parts(44_931_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -153,7 +153,7 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn reject_proposal() -> Weight { - (Weight::from_parts(52_489_000, 0)) + (Weight::from_parts(47_551_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -162,16 +162,16 @@ impl WeightInfo for () { // Storage: `Treasury::Approvals` (r:1 w:1) // Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn approve_proposal(p: u32, ) -> Weight { - (Weight::from_parts(19_551_237, 0)) - // Standard Error: 1_811 - .saturating_add((Weight::from_parts(68_875, 0)).saturating_mul(p as u64)) + (Weight::from_parts(18_608_202, 0)) + // Standard Error: 1_870 + .saturating_add((Weight::from_parts(69_054, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `Treasury::Approvals` (r:1 w:1) // Proof: `Treasury::Approvals` (`max_values`: Some(1), `max_size`: Some(402), added: 897, mode: `MaxEncodedLen`) fn remove_approval() -> Weight { - (Weight::from_parts(12_580_000, 0)) + (Weight::from_parts(12_130_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -186,9 +186,9 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn on_initialize_proposals(p: u32, ) -> Weight { - (Weight::from_parts(39_451_729, 0)) - // Standard Error: 14_637 - .saturating_add((Weight::from_parts(4_433_389, 0)).saturating_mul(p as u64)) + (Weight::from_parts(37_540_256, 0)) + // Standard Error: 17_041 + .saturating_add((Weight::from_parts(4_191_639, 0)).saturating_mul(p as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(p as u64))) .saturating_add(RocksDbWeight::get().writes(1 as u64)) diff --git a/runtime/mangata-rococo/src/weights/pallet_utility_mangata.rs b/runtime/mangata-rococo/src/weights/pallet_utility_mangata.rs index 9008e85d14..c31a1f2e64 100644 --- a/runtime/mangata-rococo/src/weights/pallet_utility_mangata.rs +++ b/runtime/mangata-rococo/src/weights/pallet_utility_mangata.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_utility_mangata //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -67,49 +67,49 @@ pub trait WeightInfo { pub struct ModuleWeight(PhantomData); impl pallet_utility_mangata::WeightInfo for ModuleWeight { fn batch(c: u32, ) -> Weight { - (Weight::from_parts(16_589_619, 0)) - // Standard Error: 16_418 - .saturating_add((Weight::from_parts(10_132_634, 0)).saturating_mul(c as u64)) + (Weight::from_parts(87_630_925, 0)) + // Standard Error: 17_705 + .saturating_add((Weight::from_parts(9_400_385, 0)).saturating_mul(c as u64)) } fn as_derivative() -> Weight { - (Weight::from_parts(9_780_000, 0)) + (Weight::from_parts(8_570_000, 0)) } fn batch_all(c: u32, ) -> Weight { - (Weight::from_parts(54_293_178, 0)) - // Standard Error: 22_178 - .saturating_add((Weight::from_parts(10_507_277, 0)).saturating_mul(c as u64)) + (Weight::from_parts(1_329_615, 0)) + // Standard Error: 18_555 + .saturating_add((Weight::from_parts(10_026_010, 0)).saturating_mul(c as u64)) } fn dispatch_as() -> Weight { - (Weight::from_parts(16_940_000, 0)) + (Weight::from_parts(16_320_000, 0)) } fn force_batch(c: u32, ) -> Weight { - (Weight::from_parts(24_129_155, 0)) - // Standard Error: 21_663 - .saturating_add((Weight::from_parts(10_054_761, 0)).saturating_mul(c as u64)) + (Weight::from_parts(11_910_000, 0)) + // Standard Error: 12_145 + .saturating_add((Weight::from_parts(9_695_484, 0)).saturating_mul(c as u64)) } } // For backwards compatibility and tests impl WeightInfo for () { fn batch(c: u32, ) -> Weight { - (Weight::from_parts(16_589_619, 0)) - // Standard Error: 16_418 - .saturating_add((Weight::from_parts(10_132_634, 0)).saturating_mul(c as u64)) + (Weight::from_parts(87_630_925, 0)) + // Standard Error: 17_705 + .saturating_add((Weight::from_parts(9_400_385, 0)).saturating_mul(c as u64)) } fn as_derivative() -> Weight { - (Weight::from_parts(9_780_000, 0)) + (Weight::from_parts(8_570_000, 0)) } fn batch_all(c: u32, ) -> Weight { - (Weight::from_parts(54_293_178, 0)) - // Standard Error: 22_178 - .saturating_add((Weight::from_parts(10_507_277, 0)).saturating_mul(c as u64)) + (Weight::from_parts(1_329_615, 0)) + // Standard Error: 18_555 + .saturating_add((Weight::from_parts(10_026_010, 0)).saturating_mul(c as u64)) } fn dispatch_as() -> Weight { - (Weight::from_parts(16_940_000, 0)) + (Weight::from_parts(16_320_000, 0)) } fn force_batch(c: u32, ) -> Weight { - (Weight::from_parts(24_129_155, 0)) - // Standard Error: 21_663 - .saturating_add((Weight::from_parts(10_054_761, 0)).saturating_mul(c as u64)) + (Weight::from_parts(11_910_000, 0)) + // Standard Error: 12_145 + .saturating_add((Weight::from_parts(9_695_484, 0)).saturating_mul(c as u64)) } } diff --git a/runtime/mangata-rococo/src/weights/pallet_vesting_mangata.rs b/runtime/mangata-rococo/src/weights/pallet_vesting_mangata.rs index af61cc2605..41c7886114 100644 --- a/runtime/mangata-rococo/src/weights/pallet_vesting_mangata.rs +++ b/runtime/mangata-rococo/src/weights/pallet_vesting_mangata.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_vesting_mangata //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -75,9 +75,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_locked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(51_130_831, 0)) - // Standard Error: 7_700 - .saturating_add((Weight::from_parts(172_452, 0)).saturating_mul(s as u64)) + (Weight::from_parts(48_427_927, 0)) + // Standard Error: 8_514 + .saturating_add((Weight::from_parts(185_409, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -88,9 +88,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_unlocked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(68_202_729, 0)) - // Standard Error: 5_640 - .saturating_add((Weight::from_parts(47_460, 0)).saturating_mul(s as u64)) + (Weight::from_parts(65_301_532, 0)) + // Standard Error: 6_745 + .saturating_add((Weight::from_parts(53_074, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -101,9 +101,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_other_locked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(51_573_992, 0)) - // Standard Error: 8_829 - .saturating_add((Weight::from_parts(180_014, 0)).saturating_mul(s as u64)) + (Weight::from_parts(49_635_157, 0)) + // Standard Error: 9_592 + .saturating_add((Weight::from_parts(168_802, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -116,9 +116,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn vest_other_unlocked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(67_659_964, 0)) - // Standard Error: 5_412 - .saturating_add((Weight::from_parts(87_102, 0)).saturating_mul(s as u64)) + (Weight::from_parts(67_351_274, 0)) + // Standard Error: 7_411 + .saturating_add((Weight::from_parts(84_577, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -131,9 +131,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Locks` (r:1 w:0) // Proof: `Tokens::Locks` (`max_values`: None, `max_size`: Some(1261), added: 3736, mode: `MaxEncodedLen`) fn force_vested_transfer(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(91_681_958, 0)) - // Standard Error: 15_906 - .saturating_add((Weight::from_parts(192_751, 0)).saturating_mul(s as u64)) + (Weight::from_parts(88_063_629, 0)) + // Standard Error: 14_579 + .saturating_add((Weight::from_parts(210_310, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -144,9 +144,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn not_unlocking_merge_schedules(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(51_621_276, 0)) - // Standard Error: 8_937 - .saturating_add((Weight::from_parts(187_029, 0)).saturating_mul(s as u64)) + (Weight::from_parts(50_762_808, 0)) + // Standard Error: 8_663 + .saturating_add((Weight::from_parts(163_040, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -157,9 +157,9 @@ impl pallet_vesting_mangata::WeightInfo for ModuleWeigh // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn unlocking_merge_schedules(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(51_823_056, 0)) - // Standard Error: 15_260 - .saturating_add((Weight::from_parts(266_865, 0)).saturating_mul(s as u64)) + (Weight::from_parts(49_779_765, 0)) + // Standard Error: 13_870 + .saturating_add((Weight::from_parts(262_141, 0)).saturating_mul(s as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -174,9 +174,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_locked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(51_130_831, 0)) - // Standard Error: 7_700 - .saturating_add((Weight::from_parts(172_452, 0)).saturating_mul(s as u64)) + (Weight::from_parts(48_427_927, 0)) + // Standard Error: 8_514 + .saturating_add((Weight::from_parts(185_409, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -187,9 +187,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_unlocked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(68_202_729, 0)) - // Standard Error: 5_640 - .saturating_add((Weight::from_parts(47_460, 0)).saturating_mul(s as u64)) + (Weight::from_parts(65_301_532, 0)) + // Standard Error: 6_745 + .saturating_add((Weight::from_parts(53_074, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -200,9 +200,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn vest_other_locked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(51_573_992, 0)) - // Standard Error: 8_829 - .saturating_add((Weight::from_parts(180_014, 0)).saturating_mul(s as u64)) + (Weight::from_parts(49_635_157, 0)) + // Standard Error: 9_592 + .saturating_add((Weight::from_parts(168_802, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -215,9 +215,9 @@ impl WeightInfo for () { // Storage: `System::Account` (r:1 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn vest_other_unlocked(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(67_659_964, 0)) - // Standard Error: 5_412 - .saturating_add((Weight::from_parts(87_102, 0)).saturating_mul(s as u64)) + (Weight::from_parts(67_351_274, 0)) + // Standard Error: 7_411 + .saturating_add((Weight::from_parts(84_577, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -230,9 +230,9 @@ impl WeightInfo for () { // Storage: `Tokens::Locks` (r:1 w:0) // Proof: `Tokens::Locks` (`max_values`: None, `max_size`: Some(1261), added: 3736, mode: `MaxEncodedLen`) fn force_vested_transfer(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(91_681_958, 0)) - // Standard Error: 15_906 - .saturating_add((Weight::from_parts(192_751, 0)).saturating_mul(s as u64)) + (Weight::from_parts(88_063_629, 0)) + // Standard Error: 14_579 + .saturating_add((Weight::from_parts(210_310, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -243,9 +243,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn not_unlocking_merge_schedules(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(51_621_276, 0)) - // Standard Error: 8_937 - .saturating_add((Weight::from_parts(187_029, 0)).saturating_mul(s as u64)) + (Weight::from_parts(50_762_808, 0)) + // Standard Error: 8_663 + .saturating_add((Weight::from_parts(163_040, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -256,9 +256,9 @@ impl WeightInfo for () { // Storage: `Tokens::Accounts` (r:1 w:1) // Proof: `Tokens::Accounts` (`max_values`: None, `max_size`: Some(108), added: 2583, mode: `MaxEncodedLen`) fn unlocking_merge_schedules(_l: u32, s: u32, ) -> Weight { - (Weight::from_parts(51_823_056, 0)) - // Standard Error: 15_260 - .saturating_add((Weight::from_parts(266_865, 0)).saturating_mul(s as u64)) + (Weight::from_parts(49_779_765, 0)) + // Standard Error: 13_870 + .saturating_add((Weight::from_parts(262_141, 0)).saturating_mul(s as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/pallet_xyk.rs b/runtime/mangata-rococo/src/weights/pallet_xyk.rs index f01d0c1e92..6f6cd53d70 100644 --- a/runtime/mangata-rococo/src/weights/pallet_xyk.rs +++ b/runtime/mangata-rococo/src/weights/pallet_xyk.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for pallet_xyk //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -90,7 +90,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `Xyk::LiquidityPools` (r:0 w:1) // Proof: `Xyk::LiquidityPools` (`max_values`: None, `max_size`: Some(41), added: 2516, mode: `MaxEncodedLen`) fn create_pool() -> Weight { - (Weight::from_parts(204_890_000, 0)) + (Weight::from_parts(188_230_000, 0)) .saturating_add(T::DbWeight::get().reads(14 as u64)) .saturating_add(T::DbWeight::get().writes(12 as u64)) } @@ -109,7 +109,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn sell_asset() -> Weight { - (Weight::from_parts(244_050_000, 0)) + (Weight::from_parts(239_380_000, 0)) .saturating_add(T::DbWeight::get().reads(16 as u64)) .saturating_add(T::DbWeight::get().writes(9 as u64)) } @@ -128,9 +128,9 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn multiswap_sell_asset(x: u32, ) -> Weight { - (Weight::from_parts(633_020_000, 0)) - // Standard Error: 494_601 - .saturating_add((Weight::from_parts(276_447_721, 0)).saturating_mul(x as u64)) + (Weight::from_parts(627_720_000, 0)) + // Standard Error: 509_553 + .saturating_add((Weight::from_parts(272_818_905, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(29 as u64)) .saturating_add(T::DbWeight::get().reads((10 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(1 as u64)) @@ -151,7 +151,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn buy_asset() -> Weight { - (Weight::from_parts(235_960_000, 0)) + (Weight::from_parts(235_869_000, 0)) .saturating_add(T::DbWeight::get().reads(18 as u64)) .saturating_add(T::DbWeight::get().writes(9 as u64)) } @@ -170,9 +170,9 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn multiswap_buy_asset(x: u32, ) -> Weight { - (Weight::from_parts(708_340_000, 0)) - // Standard Error: 591_581 - .saturating_add((Weight::from_parts(290_419_235, 0)).saturating_mul(x as u64)) + (Weight::from_parts(651_260_000, 0)) + // Standard Error: 536_937 + .saturating_add((Weight::from_parts(287_282_771, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(29 as u64)) .saturating_add(T::DbWeight::get().reads((10 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(1 as u64)) @@ -199,7 +199,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn mint_liquidity() -> Weight { - (Weight::from_parts(244_540_000, 0)) + (Weight::from_parts(224_910_000, 0)) .saturating_add(T::DbWeight::get().reads(15 as u64)) .saturating_add(T::DbWeight::get().writes(10 as u64)) } @@ -220,7 +220,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `Tokens::NextCurrencyId` (r:1 w:0) // Proof: `Tokens::NextCurrencyId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) fn mint_liquidity_using_vesting_native_tokens() -> Weight { - (Weight::from_parts(276_260_000, 0)) + (Weight::from_parts(277_789_000, 0)) .saturating_add(T::DbWeight::get().reads(14 as u64)) .saturating_add(T::DbWeight::get().writes(11 as u64)) } @@ -245,7 +245,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn burn_liquidity() -> Weight { - (Weight::from_parts(224_350_000, 0)) + (Weight::from_parts(206_760_000, 0)) .saturating_add(T::DbWeight::get().reads(15 as u64)) .saturating_add(T::DbWeight::get().writes(10 as u64)) } @@ -270,7 +270,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `ProofOfStake::PromotedPoolRewards` (r:1 w:0) // Proof: `ProofOfStake::PromotedPoolRewards` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn provide_liquidity_with_conversion() -> Weight { - (Weight::from_parts(395_590_000, 0)) + (Weight::from_parts(365_410_000, 0)) .saturating_add(T::DbWeight::get().reads(22 as u64)) .saturating_add(T::DbWeight::get().writes(11 as u64)) } @@ -301,7 +301,7 @@ impl pallet_xyk::WeightInfo for ModuleWeight { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn compound_rewards() -> Weight { - (Weight::from_parts(554_980_000, 0)) + (Weight::from_parts(557_650_000, 0)) .saturating_add(T::DbWeight::get().reads(25 as u64)) .saturating_add(T::DbWeight::get().writes(16 as u64)) } @@ -328,7 +328,7 @@ impl WeightInfo for () { // Storage: `Xyk::LiquidityPools` (r:0 w:1) // Proof: `Xyk::LiquidityPools` (`max_values`: None, `max_size`: Some(41), added: 2516, mode: `MaxEncodedLen`) fn create_pool() -> Weight { - (Weight::from_parts(204_890_000, 0)) + (Weight::from_parts(188_230_000, 0)) .saturating_add(RocksDbWeight::get().reads(14 as u64)) .saturating_add(RocksDbWeight::get().writes(12 as u64)) } @@ -347,7 +347,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn sell_asset() -> Weight { - (Weight::from_parts(244_050_000, 0)) + (Weight::from_parts(239_380_000, 0)) .saturating_add(RocksDbWeight::get().reads(16 as u64)) .saturating_add(RocksDbWeight::get().writes(9 as u64)) } @@ -366,9 +366,9 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn multiswap_sell_asset(x: u32, ) -> Weight { - (Weight::from_parts(633_020_000, 0)) - // Standard Error: 494_601 - .saturating_add((Weight::from_parts(276_447_721, 0)).saturating_mul(x as u64)) + (Weight::from_parts(627_720_000, 0)) + // Standard Error: 509_553 + .saturating_add((Weight::from_parts(272_818_905, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(29 as u64)) .saturating_add(RocksDbWeight::get().reads((10 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(1 as u64)) @@ -389,7 +389,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn buy_asset() -> Weight { - (Weight::from_parts(235_960_000, 0)) + (Weight::from_parts(235_869_000, 0)) .saturating_add(RocksDbWeight::get().reads(18 as u64)) .saturating_add(RocksDbWeight::get().writes(9 as u64)) } @@ -408,9 +408,9 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:2) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn multiswap_buy_asset(x: u32, ) -> Weight { - (Weight::from_parts(708_340_000, 0)) - // Standard Error: 591_581 - .saturating_add((Weight::from_parts(290_419_235, 0)).saturating_mul(x as u64)) + (Weight::from_parts(651_260_000, 0)) + // Standard Error: 536_937 + .saturating_add((Weight::from_parts(287_282_771, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(29 as u64)) .saturating_add(RocksDbWeight::get().reads((10 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(1 as u64)) @@ -437,7 +437,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn mint_liquidity() -> Weight { - (Weight::from_parts(244_540_000, 0)) + (Weight::from_parts(224_910_000, 0)) .saturating_add(RocksDbWeight::get().reads(15 as u64)) .saturating_add(RocksDbWeight::get().writes(10 as u64)) } @@ -458,7 +458,7 @@ impl WeightInfo for () { // Storage: `Tokens::NextCurrencyId` (r:1 w:0) // Proof: `Tokens::NextCurrencyId` (`max_values`: Some(1), `max_size`: Some(4), added: 499, mode: `MaxEncodedLen`) fn mint_liquidity_using_vesting_native_tokens() -> Weight { - (Weight::from_parts(276_260_000, 0)) + (Weight::from_parts(277_789_000, 0)) .saturating_add(RocksDbWeight::get().reads(14 as u64)) .saturating_add(RocksDbWeight::get().writes(11 as u64)) } @@ -483,7 +483,7 @@ impl WeightInfo for () { // Storage: `Tokens::TotalIssuance` (r:1 w:1) // Proof: `Tokens::TotalIssuance` (`max_values`: None, `max_size`: Some(28), added: 2503, mode: `MaxEncodedLen`) fn burn_liquidity() -> Weight { - (Weight::from_parts(224_350_000, 0)) + (Weight::from_parts(206_760_000, 0)) .saturating_add(RocksDbWeight::get().reads(15 as u64)) .saturating_add(RocksDbWeight::get().writes(10 as u64)) } @@ -508,7 +508,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::PromotedPoolRewards` (r:1 w:0) // Proof: `ProofOfStake::PromotedPoolRewards` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn provide_liquidity_with_conversion() -> Weight { - (Weight::from_parts(395_590_000, 0)) + (Weight::from_parts(365_410_000, 0)) .saturating_add(RocksDbWeight::get().reads(22 as u64)) .saturating_add(RocksDbWeight::get().writes(11 as u64)) } @@ -539,7 +539,7 @@ impl WeightInfo for () { // Storage: `ProofOfStake::TotalActivatedLiquidity` (r:1 w:1) // Proof: `ProofOfStake::TotalActivatedLiquidity` (`max_values`: None, `max_size`: None, mode: `Measured`) fn compound_rewards() -> Weight { - (Weight::from_parts(554_980_000, 0)) + (Weight::from_parts(557_650_000, 0)) .saturating_add(RocksDbWeight::get().reads(25 as u64)) .saturating_add(RocksDbWeight::get().writes(16 as u64)) } diff --git a/runtime/mangata-rococo/src/weights/parachain_staking.rs b/runtime/mangata-rococo/src/weights/parachain_staking.rs index a28875dae0..b63ad811a3 100644 --- a/runtime/mangata-rococo/src/weights/parachain_staking.rs +++ b/runtime/mangata-rococo/src/weights/parachain_staking.rs @@ -19,7 +19,7 @@ //! Autogenerated weights for parachain_staking //! //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev -//! DATE: 2024-01-03, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` +//! DATE: 2024-01-09, STEPS: `50`, REPEAT: 20, LOW RANGE: `[]`, HIGH RANGE: `[]` //! EXECUTION: , WASM-EXECUTION: Compiled, CHAIN: Some("mangata-kusama"), DB CACHE: 1024 // Executed Command: @@ -99,14 +99,14 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::TotalSelected` (r:1 w:1) // Proof: `ParachainStaking::TotalSelected` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_total_selected() -> Weight { - (Weight::from_parts(16_930_000, 0)) + (Weight::from_parts(18_240_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::CollatorCommission` (r:1 w:1) // Proof: `ParachainStaking::CollatorCommission` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_collator_commission() -> Weight { - (Weight::from_parts(17_340_000, 0)) + (Weight::from_parts(18_140_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -133,11 +133,11 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn join_candidates(x: u32, y: u32, ) -> Weight { - (Weight::from_parts(119_544_784, 0)) - // Standard Error: 9_354 - .saturating_add((Weight::from_parts(150_604, 0)).saturating_mul(x as u64)) - // Standard Error: 9_240 - .saturating_add((Weight::from_parts(199_000, 0)).saturating_mul(y as u64)) + (Weight::from_parts(117_053_879, 0)) + // Standard Error: 7_446 + .saturating_add((Weight::from_parts(142_269, 0)).saturating_mul(x as u64)) + // Standard Error: 7_356 + .saturating_add((Weight::from_parts(208_459, 0)).saturating_mul(y as u64)) .saturating_add(T::DbWeight::get().reads(11 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -148,9 +148,9 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(37_830_404, 0)) - // Standard Error: 2_680 - .saturating_add((Weight::from_parts(123_243, 0)).saturating_mul(x as u64)) + (Weight::from_parts(37_952_996, 0)) + // Standard Error: 2_861 + .saturating_add((Weight::from_parts(97_664, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -169,9 +169,9 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(66_566_597, 0)) - // Standard Error: 102_929 - .saturating_add((Weight::from_parts(31_808_468, 0)).saturating_mul(x as u64)) + (Weight::from_parts(78_861_262, 0)) + // Standard Error: 107_452 + .saturating_add((Weight::from_parts(30_047_808, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().reads((3 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(1 as u64)) @@ -182,9 +182,9 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn cancel_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(36_344_898, 0)) - // Standard Error: 2_734 - .saturating_add((Weight::from_parts(125_362, 0)).saturating_mul(x as u64)) + (Weight::from_parts(35_957_664, 0)) + // Standard Error: 2_682 + .saturating_add((Weight::from_parts(90_614, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -195,7 +195,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn go_offline() -> Weight { - (Weight::from_parts(36_640_000, 0)) + (Weight::from_parts(34_300_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -206,7 +206,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn go_online() -> Weight { - (Weight::from_parts(34_930_000, 0)) + (Weight::from_parts(34_580_000, 0)) .saturating_add(T::DbWeight::get().reads(3 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -219,7 +219,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_candidate_bond_more() -> Weight { - (Weight::from_parts(54_580_000, 0)) + (Weight::from_parts(49_480_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -234,7 +234,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_candidate_bond_less() -> Weight { - (Weight::from_parts(56_670_000, 0)) + (Weight::from_parts(52_750_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -251,7 +251,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_candidate_bond_more() -> Weight { - (Weight::from_parts(107_800_000, 0)) + (Weight::from_parts(94_970_000, 0)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } @@ -268,21 +268,21 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_candidate_bond_less() -> Weight { - (Weight::from_parts(101_800_000, 0)) + (Weight::from_parts(101_731_000, 0)) .saturating_add(T::DbWeight::get().reads(6 as u64)) .saturating_add(T::DbWeight::get().writes(5 as u64)) } // Storage: `ParachainStaking::CandidateState` (r:1 w:1) // Proof: `ParachainStaking::CandidateState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_candidate_bond_more() -> Weight { - (Weight::from_parts(29_240_000, 0)) + (Weight::from_parts(28_020_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::CandidateState` (r:1 w:1) // Proof: `ParachainStaking::CandidateState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_candidate_bond_less() -> Weight { - (Weight::from_parts(29_070_000, 0)) + (Weight::from_parts(26_969_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -307,11 +307,11 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn delegate(x: u32, y: u32, ) -> Weight { - (Weight::from_parts(126_212_793, 0)) - // Standard Error: 20_241 - .saturating_add((Weight::from_parts(152_166, 0)).saturating_mul(x as u64)) - // Standard Error: 19_560 - .saturating_add((Weight::from_parts(281_095, 0)).saturating_mul(y as u64)) + (Weight::from_parts(119_400_015, 0)) + // Standard Error: 19_692 + .saturating_add((Weight::from_parts(211_488, 0)).saturating_mul(x as u64)) + // Standard Error: 19_029 + .saturating_add((Weight::from_parts(310_487, 0)).saturating_mul(y as u64)) .saturating_add(T::DbWeight::get().reads(10 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -320,7 +320,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_leave_delegators() -> Weight { - (Weight::from_parts(30_220_000, 0)) + (Weight::from_parts(29_970_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -339,9 +339,9 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_leave_delegators(x: u32, ) -> Weight { - (Weight::from_parts(35_710_474, 0)) - // Standard Error: 117_122 - .saturating_add((Weight::from_parts(39_255_172, 0)).saturating_mul(x as u64)) + (Weight::from_parts(30_138_059, 0)) + // Standard Error: 116_246 + .saturating_add((Weight::from_parts(37_661_084, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().reads((1 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(4 as u64)) @@ -350,7 +350,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_leave_delegators() -> Weight { - (Weight::from_parts(29_140_000, 0)) + (Weight::from_parts(28_770_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -359,7 +359,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_revoke_delegation() -> Weight { - (Weight::from_parts(32_850_000, 0)) + (Weight::from_parts(33_140_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -372,7 +372,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_delegator_bond_more() -> Weight { - (Weight::from_parts(52_540_000, 0)) + (Weight::from_parts(55_590_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -381,7 +381,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_delegator_bond_less() -> Weight { - (Weight::from_parts(30_900_000, 0)) + (Weight::from_parts(33_310_000, 0)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -400,7 +400,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_revoke_delegation() -> Weight { - (Weight::from_parts(114_340_000, 0)) + (Weight::from_parts(120_020_000, 0)) .saturating_add(T::DbWeight::get().reads(7 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -419,7 +419,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_delegator_bond_more() -> Weight { - (Weight::from_parts(126_549_000, 0)) + (Weight::from_parts(118_400_000, 0)) .saturating_add(T::DbWeight::get().reads(7 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } @@ -438,28 +438,28 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_delegator_bond_less() -> Weight { - (Weight::from_parts(105_030_000, 0)) + (Weight::from_parts(119_180_000, 0)) .saturating_add(T::DbWeight::get().reads(7 as u64)) .saturating_add(T::DbWeight::get().writes(6 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_revoke_delegation() -> Weight { - (Weight::from_parts(28_749_000, 0)) + (Weight::from_parts(27_810_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_delegator_bond_more() -> Weight { - (Weight::from_parts(49_820_000, 0)) + (Weight::from_parts(35_100_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_delegator_bond_less() -> Weight { - (Weight::from_parts(37_670_000, 0)) + (Weight::from_parts(40_170_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -468,18 +468,18 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::StakingLiquidityTokens` (r:1 w:1) // Proof: `ParachainStaking::StakingLiquidityTokens` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn add_staking_liquidity_token(x: u32, ) -> Weight { - (Weight::from_parts(26_409_191, 0)) - // Standard Error: 2_820 - .saturating_add((Weight::from_parts(165_180, 0)).saturating_mul(x as u64)) + (Weight::from_parts(25_681_172, 0)) + // Standard Error: 3_287 + .saturating_add((Weight::from_parts(160_557, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(2 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::StakingLiquidityTokens` (r:1 w:1) // Proof: `ParachainStaking::StakingLiquidityTokens` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn remove_staking_liquidity_token(x: u32, ) -> Weight { - (Weight::from_parts(20_007_922, 0)) - // Standard Error: 2_592 - .saturating_add((Weight::from_parts(136_166, 0)).saturating_mul(x as u64)) + (Weight::from_parts(18_485_384, 0)) + // Standard Error: 2_633 + .saturating_add((Weight::from_parts(148_333, 0)).saturating_mul(x as u64)) .saturating_add(T::DbWeight::get().reads(1 as u64)) .saturating_add(T::DbWeight::get().writes(1 as u64)) } @@ -492,7 +492,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::CandidateAggregator` (r:1 w:1) // Proof: `ParachainStaking::CandidateAggregator` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn aggregator_update_metadata() -> Weight { - (Weight::from_parts(1_661_170_000, 0)) + (Weight::from_parts(1_637_999_000, 0)) .saturating_add(T::DbWeight::get().reads(102 as u64)) .saturating_add(T::DbWeight::get().writes(2 as u64)) } @@ -503,7 +503,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `ParachainStaking::AggregatorMetadata` (r:2 w:2) // Proof: `ParachainStaking::AggregatorMetadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn update_candidate_aggregator() -> Weight { - (Weight::from_parts(109_320_000, 0)) + (Weight::from_parts(106_940_000, 0)) .saturating_add(T::DbWeight::get().reads(4 as u64)) .saturating_add(T::DbWeight::get().writes(3 as u64)) } @@ -514,7 +514,7 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `System::Account` (r:32 w:31) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn payout_collator_rewards() -> Weight { - (Weight::from_parts(1_510_580_000, 0)) + (Weight::from_parts(1_382_470_000, 0)) .saturating_add(T::DbWeight::get().reads(66 as u64)) .saturating_add(T::DbWeight::get().writes(64 as u64)) } @@ -525,14 +525,14 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `System::Account` (r:2 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn payout_delegator_reward() -> Weight { - (Weight::from_parts(82_730_000, 0)) + (Weight::from_parts(76_060_000, 0)) .saturating_add(T::DbWeight::get().reads(5 as u64)) .saturating_add(T::DbWeight::get().writes(4 as u64)) } // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn passive_session_change() -> Weight { - (Weight::from_parts(7_930_000, 0)) + (Weight::from_parts(7_870_000, 0)) .saturating_add(T::DbWeight::get().reads(1 as u64)) } // Storage: `ParachainStaking::Round` (r:1 w:1) @@ -592,13 +592,13 @@ impl parachain_staking::WeightInfo for ModuleWeight // Storage: `Session::Validators` (r:0 w:1) // Proof: `Session::Validators` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn active_session_change(x: u32, y: u32, z: u32, ) -> Weight { - (Weight::from_parts(1_742_061_893, 0)) - // Standard Error: 91_439 - .saturating_add((Weight::from_parts(19_003_727, 0)).saturating_mul(x as u64)) - // Standard Error: 187_519 - .saturating_add((Weight::from_parts(7_513_684, 0)).saturating_mul(y as u64)) - // Standard Error: 324_806 - .saturating_add((Weight::from_parts(39_182_626, 0)).saturating_mul(z as u64)) + (Weight::from_parts(1_680_554_785, 0)) + // Standard Error: 111_252 + .saturating_add((Weight::from_parts(19_982_292, 0)).saturating_mul(x as u64)) + // Standard Error: 228_151 + .saturating_add((Weight::from_parts(7_042_416, 0)).saturating_mul(y as u64)) + // Standard Error: 395_185 + .saturating_add((Weight::from_parts(36_984_074, 0)).saturating_mul(z as u64)) .saturating_add(T::DbWeight::get().reads(224 as u64)) .saturating_add(T::DbWeight::get().reads((4 as u64).saturating_mul(x as u64))) .saturating_add(T::DbWeight::get().writes(219 as u64)) @@ -610,14 +610,14 @@ impl WeightInfo for () { // Storage: `ParachainStaking::TotalSelected` (r:1 w:1) // Proof: `ParachainStaking::TotalSelected` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_total_selected() -> Weight { - (Weight::from_parts(16_930_000, 0)) + (Weight::from_parts(18_240_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::CollatorCommission` (r:1 w:1) // Proof: `ParachainStaking::CollatorCommission` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn set_collator_commission() -> Weight { - (Weight::from_parts(17_340_000, 0)) + (Weight::from_parts(18_140_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -644,11 +644,11 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn join_candidates(x: u32, y: u32, ) -> Weight { - (Weight::from_parts(119_544_784, 0)) - // Standard Error: 9_354 - .saturating_add((Weight::from_parts(150_604, 0)).saturating_mul(x as u64)) - // Standard Error: 9_240 - .saturating_add((Weight::from_parts(199_000, 0)).saturating_mul(y as u64)) + (Weight::from_parts(117_053_879, 0)) + // Standard Error: 7_446 + .saturating_add((Weight::from_parts(142_269, 0)).saturating_mul(x as u64)) + // Standard Error: 7_356 + .saturating_add((Weight::from_parts(208_459, 0)).saturating_mul(y as u64)) .saturating_add(RocksDbWeight::get().reads(11 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } @@ -659,9 +659,9 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(37_830_404, 0)) - // Standard Error: 2_680 - .saturating_add((Weight::from_parts(123_243, 0)).saturating_mul(x as u64)) + (Weight::from_parts(37_952_996, 0)) + // Standard Error: 2_861 + .saturating_add((Weight::from_parts(97_664, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -680,9 +680,9 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(66_566_597, 0)) - // Standard Error: 102_929 - .saturating_add((Weight::from_parts(31_808_468, 0)).saturating_mul(x as u64)) + (Weight::from_parts(78_861_262, 0)) + // Standard Error: 107_452 + .saturating_add((Weight::from_parts(30_047_808, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().reads((3 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(1 as u64)) @@ -693,9 +693,9 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn cancel_leave_candidates(x: u32, ) -> Weight { - (Weight::from_parts(36_344_898, 0)) - // Standard Error: 2_734 - .saturating_add((Weight::from_parts(125_362, 0)).saturating_mul(x as u64)) + (Weight::from_parts(35_957_664, 0)) + // Standard Error: 2_682 + .saturating_add((Weight::from_parts(90_614, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -706,7 +706,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn go_offline() -> Weight { - (Weight::from_parts(36_640_000, 0)) + (Weight::from_parts(34_300_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -717,7 +717,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn go_online() -> Weight { - (Weight::from_parts(34_930_000, 0)) + (Weight::from_parts(34_580_000, 0)) .saturating_add(RocksDbWeight::get().reads(3 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -730,7 +730,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_candidate_bond_more() -> Weight { - (Weight::from_parts(54_580_000, 0)) + (Weight::from_parts(49_480_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -745,7 +745,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_candidate_bond_less() -> Weight { - (Weight::from_parts(56_670_000, 0)) + (Weight::from_parts(52_750_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -762,7 +762,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_candidate_bond_more() -> Weight { - (Weight::from_parts(107_800_000, 0)) + (Weight::from_parts(94_970_000, 0)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } @@ -779,21 +779,21 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidatePool` (r:1 w:1) // Proof: `ParachainStaking::CandidatePool` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn execute_candidate_bond_less() -> Weight { - (Weight::from_parts(101_800_000, 0)) + (Weight::from_parts(101_731_000, 0)) .saturating_add(RocksDbWeight::get().reads(6 as u64)) .saturating_add(RocksDbWeight::get().writes(5 as u64)) } // Storage: `ParachainStaking::CandidateState` (r:1 w:1) // Proof: `ParachainStaking::CandidateState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_candidate_bond_more() -> Weight { - (Weight::from_parts(29_240_000, 0)) + (Weight::from_parts(28_020_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::CandidateState` (r:1 w:1) // Proof: `ParachainStaking::CandidateState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_candidate_bond_less() -> Weight { - (Weight::from_parts(29_070_000, 0)) + (Weight::from_parts(26_969_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -818,11 +818,11 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn delegate(x: u32, y: u32, ) -> Weight { - (Weight::from_parts(126_212_793, 0)) - // Standard Error: 20_241 - .saturating_add((Weight::from_parts(152_166, 0)).saturating_mul(x as u64)) - // Standard Error: 19_560 - .saturating_add((Weight::from_parts(281_095, 0)).saturating_mul(y as u64)) + (Weight::from_parts(119_400_015, 0)) + // Standard Error: 19_692 + .saturating_add((Weight::from_parts(211_488, 0)).saturating_mul(x as u64)) + // Standard Error: 19_029 + .saturating_add((Weight::from_parts(310_487, 0)).saturating_mul(y as u64)) .saturating_add(RocksDbWeight::get().reads(10 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -831,7 +831,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_leave_delegators() -> Weight { - (Weight::from_parts(30_220_000, 0)) + (Weight::from_parts(29_970_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -850,9 +850,9 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_leave_delegators(x: u32, ) -> Weight { - (Weight::from_parts(35_710_474, 0)) - // Standard Error: 117_122 - .saturating_add((Weight::from_parts(39_255_172, 0)).saturating_mul(x as u64)) + (Weight::from_parts(30_138_059, 0)) + // Standard Error: 116_246 + .saturating_add((Weight::from_parts(37_661_084, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().reads((1 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(4 as u64)) @@ -861,7 +861,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_leave_delegators() -> Weight { - (Weight::from_parts(29_140_000, 0)) + (Weight::from_parts(28_770_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -870,7 +870,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_revoke_delegation() -> Weight { - (Weight::from_parts(32_850_000, 0)) + (Weight::from_parts(33_140_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -883,7 +883,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_delegator_bond_more() -> Weight { - (Weight::from_parts(52_540_000, 0)) + (Weight::from_parts(55_590_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -892,7 +892,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn schedule_delegator_bond_less() -> Weight { - (Weight::from_parts(30_900_000, 0)) + (Weight::from_parts(33_310_000, 0)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -911,7 +911,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_revoke_delegation() -> Weight { - (Weight::from_parts(114_340_000, 0)) + (Weight::from_parts(120_020_000, 0)) .saturating_add(RocksDbWeight::get().reads(7 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -930,7 +930,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_delegator_bond_more() -> Weight { - (Weight::from_parts(126_549_000, 0)) + (Weight::from_parts(118_400_000, 0)) .saturating_add(RocksDbWeight::get().reads(7 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } @@ -949,28 +949,28 @@ impl WeightInfo for () { // Storage: `ParachainStaking::Total` (r:1 w:1) // Proof: `ParachainStaking::Total` (`max_values`: None, `max_size`: None, mode: `Measured`) fn execute_delegator_bond_less() -> Weight { - (Weight::from_parts(105_030_000, 0)) + (Weight::from_parts(119_180_000, 0)) .saturating_add(RocksDbWeight::get().reads(7 as u64)) .saturating_add(RocksDbWeight::get().writes(6 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_revoke_delegation() -> Weight { - (Weight::from_parts(28_749_000, 0)) + (Weight::from_parts(27_810_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_delegator_bond_more() -> Weight { - (Weight::from_parts(49_820_000, 0)) + (Weight::from_parts(35_100_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::DelegatorState` (r:1 w:1) // Proof: `ParachainStaking::DelegatorState` (`max_values`: None, `max_size`: None, mode: `Measured`) fn cancel_delegator_bond_less() -> Weight { - (Weight::from_parts(37_670_000, 0)) + (Weight::from_parts(40_170_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -979,18 +979,18 @@ impl WeightInfo for () { // Storage: `ParachainStaking::StakingLiquidityTokens` (r:1 w:1) // Proof: `ParachainStaking::StakingLiquidityTokens` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn add_staking_liquidity_token(x: u32, ) -> Weight { - (Weight::from_parts(26_409_191, 0)) - // Standard Error: 2_820 - .saturating_add((Weight::from_parts(165_180, 0)).saturating_mul(x as u64)) + (Weight::from_parts(25_681_172, 0)) + // Standard Error: 3_287 + .saturating_add((Weight::from_parts(160_557, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(2 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } // Storage: `ParachainStaking::StakingLiquidityTokens` (r:1 w:1) // Proof: `ParachainStaking::StakingLiquidityTokens` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn remove_staking_liquidity_token(x: u32, ) -> Weight { - (Weight::from_parts(20_007_922, 0)) - // Standard Error: 2_592 - .saturating_add((Weight::from_parts(136_166, 0)).saturating_mul(x as u64)) + (Weight::from_parts(18_485_384, 0)) + // Standard Error: 2_633 + .saturating_add((Weight::from_parts(148_333, 0)).saturating_mul(x as u64)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) .saturating_add(RocksDbWeight::get().writes(1 as u64)) } @@ -1003,7 +1003,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::CandidateAggregator` (r:1 w:1) // Proof: `ParachainStaking::CandidateAggregator` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn aggregator_update_metadata() -> Weight { - (Weight::from_parts(1_661_170_000, 0)) + (Weight::from_parts(1_637_999_000, 0)) .saturating_add(RocksDbWeight::get().reads(102 as u64)) .saturating_add(RocksDbWeight::get().writes(2 as u64)) } @@ -1014,7 +1014,7 @@ impl WeightInfo for () { // Storage: `ParachainStaking::AggregatorMetadata` (r:2 w:2) // Proof: `ParachainStaking::AggregatorMetadata` (`max_values`: None, `max_size`: None, mode: `Measured`) fn update_candidate_aggregator() -> Weight { - (Weight::from_parts(109_320_000, 0)) + (Weight::from_parts(106_940_000, 0)) .saturating_add(RocksDbWeight::get().reads(4 as u64)) .saturating_add(RocksDbWeight::get().writes(3 as u64)) } @@ -1025,7 +1025,7 @@ impl WeightInfo for () { // Storage: `System::Account` (r:32 w:31) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn payout_collator_rewards() -> Weight { - (Weight::from_parts(1_510_580_000, 0)) + (Weight::from_parts(1_382_470_000, 0)) .saturating_add(RocksDbWeight::get().reads(66 as u64)) .saturating_add(RocksDbWeight::get().writes(64 as u64)) } @@ -1036,14 +1036,14 @@ impl WeightInfo for () { // Storage: `System::Account` (r:2 w:1) // Proof: `System::Account` (`max_values`: None, `max_size`: Some(64), added: 2539, mode: `MaxEncodedLen`) fn payout_delegator_reward() -> Weight { - (Weight::from_parts(82_730_000, 0)) + (Weight::from_parts(76_060_000, 0)) .saturating_add(RocksDbWeight::get().reads(5 as u64)) .saturating_add(RocksDbWeight::get().writes(4 as u64)) } // Storage: `ParachainStaking::Round` (r:1 w:0) // Proof: `ParachainStaking::Round` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn passive_session_change() -> Weight { - (Weight::from_parts(7_930_000, 0)) + (Weight::from_parts(7_870_000, 0)) .saturating_add(RocksDbWeight::get().reads(1 as u64)) } // Storage: `ParachainStaking::Round` (r:1 w:1) @@ -1103,13 +1103,13 @@ impl WeightInfo for () { // Storage: `Session::Validators` (r:0 w:1) // Proof: `Session::Validators` (`max_values`: Some(1), `max_size`: None, mode: `Measured`) fn active_session_change(x: u32, y: u32, z: u32, ) -> Weight { - (Weight::from_parts(1_742_061_893, 0)) - // Standard Error: 91_439 - .saturating_add((Weight::from_parts(19_003_727, 0)).saturating_mul(x as u64)) - // Standard Error: 187_519 - .saturating_add((Weight::from_parts(7_513_684, 0)).saturating_mul(y as u64)) - // Standard Error: 324_806 - .saturating_add((Weight::from_parts(39_182_626, 0)).saturating_mul(z as u64)) + (Weight::from_parts(1_680_554_785, 0)) + // Standard Error: 111_252 + .saturating_add((Weight::from_parts(19_982_292, 0)).saturating_mul(x as u64)) + // Standard Error: 228_151 + .saturating_add((Weight::from_parts(7_042_416, 0)).saturating_mul(y as u64)) + // Standard Error: 395_185 + .saturating_add((Weight::from_parts(36_984_074, 0)).saturating_mul(z as u64)) .saturating_add(RocksDbWeight::get().reads(224 as u64)) .saturating_add(RocksDbWeight::get().reads((4 as u64).saturating_mul(x as u64))) .saturating_add(RocksDbWeight::get().writes(219 as u64)) From a94a545bc0f1face61b17eb2335e9ee3ce9f0ce2 Mon Sep 17 00:00:00 2001 From: Mateusz Nowakowski Date: Tue, 9 Jan 2024 21:05:50 +0100 Subject: [PATCH 13/13] apply formatting --- runtime/mangata-kusama/src/weights/block_weights.rs | 1 - runtime/mangata-kusama/src/weights/extrinsic_weights.rs | 1 - runtime/mangata-rococo/src/weights/block_weights.rs | 1 - runtime/mangata-rococo/src/weights/extrinsic_weights.rs | 1 - 4 files changed, 4 deletions(-) diff --git a/runtime/mangata-kusama/src/weights/block_weights.rs b/runtime/mangata-kusama/src/weights/block_weights.rs index c22fb4aa2d..6267eca6cb 100644 --- a/runtime/mangata-kusama/src/weights/block_weights.rs +++ b/runtime/mangata-kusama/src/weights/block_weights.rs @@ -1,4 +1,3 @@ - //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev //! DATE: 2024-01-09 (Y/M/D) //! HOSTNAME: `af2cb189db8d`, CPU: `AMD EPYC 7B13` diff --git a/runtime/mangata-kusama/src/weights/extrinsic_weights.rs b/runtime/mangata-kusama/src/weights/extrinsic_weights.rs index 73714415a6..53bae3097b 100644 --- a/runtime/mangata-kusama/src/weights/extrinsic_weights.rs +++ b/runtime/mangata-kusama/src/weights/extrinsic_weights.rs @@ -1,4 +1,3 @@ - //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev //! DATE: 2024-01-09 (Y/M/D) //! HOSTNAME: `af2cb189db8d`, CPU: `AMD EPYC 7B13` diff --git a/runtime/mangata-rococo/src/weights/block_weights.rs b/runtime/mangata-rococo/src/weights/block_weights.rs index c22fb4aa2d..6267eca6cb 100644 --- a/runtime/mangata-rococo/src/weights/block_weights.rs +++ b/runtime/mangata-rococo/src/weights/block_weights.rs @@ -1,4 +1,3 @@ - //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev //! DATE: 2024-01-09 (Y/M/D) //! HOSTNAME: `af2cb189db8d`, CPU: `AMD EPYC 7B13` diff --git a/runtime/mangata-rococo/src/weights/extrinsic_weights.rs b/runtime/mangata-rococo/src/weights/extrinsic_weights.rs index 73714415a6..53bae3097b 100644 --- a/runtime/mangata-rococo/src/weights/extrinsic_weights.rs +++ b/runtime/mangata-rococo/src/weights/extrinsic_weights.rs @@ -1,4 +1,3 @@ - //! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev //! DATE: 2024-01-09 (Y/M/D) //! HOSTNAME: `af2cb189db8d`, CPU: `AMD EPYC 7B13`