mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-05 15:37:25 +00:00
21fbc00d04
This PR is a follow up to #1661 - [x] rename the `simple` module to `legacy` - [x] fix benchmarks to disregard the number of additional fields - [x] change the storage deposits to charge per encoded byte of the identity information instance, removing the need for `fn additional(&self) -> usize` in `IdentityInformationProvider` - [x] ~add an extrinsic to rejig deposits to account for the change above~ - [ ] ~ensure through proper configuration that the new byte-based deposit is always lower than whatever is reserved now~ - [x] remove `IdentityFields` from the `set_fields` extrinsic signature, as per [this discussion](https://github.com/paritytech/polkadot-sdk/pull/1661#discussion_r1371703403) > ensure through proper configuration that the new byte-based deposit is always lower than whatever is reserved now Not sure this is needed anymore. If the new deposits are higher than what is currently on chain and users don't have enough funds to reserve what is needed, the extrinisc fails and they're basically grandfathered and frozen until they add more funds and/or make a change to their identity. This behavior seems fine to me. Original idea [here](https://github.com/paritytech/polkadot-sdk/pull/1661#issuecomment-1779606319). > add an extrinsic to rejig deposits to account for the change above This was initially implemented but now removed from this PR in favor of the implementation detailed [here](https://github.com/paritytech/polkadot-sdk/pull/2088). --------- Signed-off-by: georgepisaltu <george.pisaltu@parity.io> Co-authored-by: joepetrowski <joe@parity.io>
625 lines
30 KiB
Rust
Generated
625 lines
30 KiB
Rust
Generated
// This file is part of Substrate.
|
|
|
|
// Copyright (C) Parity Technologies (UK) Ltd.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
//! Autogenerated weights for pallet_identity
|
|
//!
|
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
|
|
//! DATE: 2023-06-16, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]`
|
|
//! WORST CASE MAP SIZE: `1000000`
|
|
//! HOSTNAME: `runner-e8ezs4ez-project-145-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz`
|
|
//! EXECUTION: Some(Wasm), WASM-EXECUTION: Compiled, CHAIN: Some("dev"), DB CACHE: 1024
|
|
|
|
// Executed Command:
|
|
// ./target/production/substrate
|
|
// benchmark
|
|
// pallet
|
|
// --chain=dev
|
|
// --steps=50
|
|
// --repeat=20
|
|
// --pallet=pallet_identity
|
|
// --no-storage-info
|
|
// --no-median-slopes
|
|
// --no-min-squares
|
|
// --extrinsic=*
|
|
// --execution=wasm
|
|
// --wasm-execution=compiled
|
|
// --heap-pages=4096
|
|
// --output=./frame/identity/src/weights.rs
|
|
// --header=./HEADER-APACHE2
|
|
// --template=./.maintain/frame-weight-template.hbs
|
|
|
|
#![cfg_attr(rustfmt, rustfmt_skip)]
|
|
#![allow(unused_parens)]
|
|
#![allow(unused_imports)]
|
|
#![allow(missing_docs)]
|
|
|
|
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
|
|
use core::marker::PhantomData;
|
|
|
|
/// Weight functions needed for pallet_identity.
|
|
pub trait WeightInfo {
|
|
fn add_registrar(r: u32, ) -> Weight;
|
|
fn set_identity(r: u32, ) -> Weight;
|
|
fn set_subs_new(s: u32, ) -> Weight;
|
|
fn set_subs_old(p: u32, ) -> Weight;
|
|
fn clear_identity(r: u32, s: u32, ) -> Weight;
|
|
fn request_judgement(r: u32, ) -> Weight;
|
|
fn cancel_request(r: u32, ) -> Weight;
|
|
fn set_fee(r: u32, ) -> Weight;
|
|
fn set_account_id(r: u32, ) -> Weight;
|
|
fn set_fields(r: u32, ) -> Weight;
|
|
fn provide_judgement(r: u32, ) -> Weight;
|
|
fn kill_identity(r: u32, s: u32, ) -> Weight;
|
|
fn add_sub(s: u32, ) -> Weight;
|
|
fn rename_sub(s: u32, ) -> Weight;
|
|
fn remove_sub(s: u32, ) -> Weight;
|
|
fn quit_sub(s: u32, ) -> Weight;
|
|
}
|
|
|
|
/// Weights for pallet_identity using the Substrate node and recommended hardware.
|
|
pub struct SubstrateWeight<T>(PhantomData<T>);
|
|
impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
|
|
/// Storage: Identity Registrars (r:1 w:1)
|
|
/// Proof: Identity Registrars (max_values: Some(1), max_size: Some(1141), added: 1636, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 19]`.
|
|
fn add_registrar(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `32 + r * (57 ±0)`
|
|
// Estimated: `2626`
|
|
// Minimum execution time: 11_683_000 picoseconds.
|
|
Weight::from_parts(12_515_830, 2626)
|
|
// Standard Error: 2_154
|
|
.saturating_add(Weight::from_parts(147_919, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Identity IdentityOf (r:1 w:1)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 20]`.
|
|
fn set_identity(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `442 + r * (5 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 32_949_000 picoseconds.
|
|
Weight::from_parts(31_329_634, 11003)
|
|
// Standard Error: 4_496
|
|
.saturating_add(Weight::from_parts(203_570, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Identity IdentityOf (r:1 w:0)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// Storage: Identity SubsOf (r:1 w:1)
|
|
/// Proof: Identity SubsOf (max_values: None, max_size: Some(3258), added: 5733, mode: MaxEncodedLen)
|
|
/// Storage: Identity SuperOf (r:100 w:100)
|
|
/// Proof: Identity SuperOf (max_values: None, max_size: Some(114), added: 2589, mode: MaxEncodedLen)
|
|
/// The range of component `s` is `[0, 100]`.
|
|
fn set_subs_new(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `101`
|
|
// Estimated: `11003 + s * (2589 ±0)`
|
|
// Minimum execution time: 9_157_000 picoseconds.
|
|
Weight::from_parts(24_917_444, 11003)
|
|
// Standard Error: 4_554
|
|
.saturating_add(Weight::from_parts(3_279_868, 0).saturating_mul(s.into()))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(s.into())))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
|
|
.saturating_add(Weight::from_parts(0, 2589).saturating_mul(s.into()))
|
|
}
|
|
/// Storage: Identity IdentityOf (r:1 w:0)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// Storage: Identity SubsOf (r:1 w:1)
|
|
/// Proof: Identity SubsOf (max_values: None, max_size: Some(3258), added: 5733, mode: MaxEncodedLen)
|
|
/// Storage: Identity SuperOf (r:0 w:100)
|
|
/// Proof: Identity SuperOf (max_values: None, max_size: Some(114), added: 2589, mode: MaxEncodedLen)
|
|
/// The range of component `p` is `[0, 100]`.
|
|
fn set_subs_old(p: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `194 + p * (32 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 9_240_000 picoseconds.
|
|
Weight::from_parts(23_326_035, 11003)
|
|
// Standard Error: 3_664
|
|
.saturating_add(Weight::from_parts(1_439_873, 0).saturating_mul(p.into()))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(p.into())))
|
|
}
|
|
/// Storage: Identity SubsOf (r:1 w:1)
|
|
/// Proof: Identity SubsOf (max_values: None, max_size: Some(3258), added: 5733, mode: MaxEncodedLen)
|
|
/// Storage: Identity IdentityOf (r:1 w:1)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// Storage: Identity SuperOf (r:0 w:100)
|
|
/// Proof: Identity SuperOf (max_values: None, max_size: Some(114), added: 2589, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 20]`.
|
|
/// The range of component `s` is `[0, 100]`.
|
|
fn clear_identity(r: u32, s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `469 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 55_687_000 picoseconds.
|
|
Weight::from_parts(30_695_182, 11003)
|
|
// Standard Error: 9_921
|
|
.saturating_add(Weight::from_parts(162_357, 0).saturating_mul(r.into()))
|
|
// Standard Error: 1_937
|
|
.saturating_add(Weight::from_parts(1_427_998, 0).saturating_mul(s.into()))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
|
|
}
|
|
/// Storage: Identity Registrars (r:1 w:0)
|
|
/// Proof: Identity Registrars (max_values: Some(1), max_size: Some(1141), added: 1636, mode: MaxEncodedLen)
|
|
/// Storage: Identity IdentityOf (r:1 w:1)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 20]`.
|
|
fn request_judgement(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `367 + r * (57 ±0) + x * (66 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 34_876_000 picoseconds.
|
|
Weight::from_parts(32_207_018, 11003)
|
|
// Standard Error: 5_247
|
|
.saturating_add(Weight::from_parts(249_156, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Identity IdentityOf (r:1 w:1)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 20]`.
|
|
fn cancel_request(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `398 + x * (66 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 30_689_000 picoseconds.
|
|
Weight::from_parts(31_967_170, 11003)
|
|
// Standard Error: 5_387
|
|
.saturating_add(Weight::from_parts(42_676, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Identity Registrars (r:1 w:1)
|
|
/// Proof: Identity Registrars (max_values: Some(1), max_size: Some(1141), added: 1636, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 19]`.
|
|
fn set_fee(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `89 + r * (57 ±0)`
|
|
// Estimated: `2626`
|
|
// Minimum execution time: 7_357_000 picoseconds.
|
|
Weight::from_parts(7_932_950, 2626)
|
|
// Standard Error: 1_804
|
|
.saturating_add(Weight::from_parts(132_653, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Identity Registrars (r:1 w:1)
|
|
/// Proof: Identity Registrars (max_values: Some(1), max_size: Some(1141), added: 1636, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 19]`.
|
|
fn set_account_id(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `89 + r * (57 ±0)`
|
|
// Estimated: `2626`
|
|
// Minimum execution time: 7_437_000 picoseconds.
|
|
Weight::from_parts(8_051_889, 2626)
|
|
// Standard Error: 1_997
|
|
.saturating_add(Weight::from_parts(129_592, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Identity Registrars (r:1 w:1)
|
|
/// Proof: Identity Registrars (max_values: Some(1), max_size: Some(1141), added: 1636, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 19]`.
|
|
fn set_fields(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `89 + r * (57 ±0)`
|
|
// Estimated: `2626`
|
|
// Minimum execution time: 7_385_000 picoseconds.
|
|
Weight::from_parts(7_911_589, 2626)
|
|
// Standard Error: 1_791
|
|
.saturating_add(Weight::from_parts(125_788, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Identity Registrars (r:1 w:0)
|
|
/// Proof: Identity Registrars (max_values: Some(1), max_size: Some(1141), added: 1636, mode: MaxEncodedLen)
|
|
/// Storage: Identity IdentityOf (r:1 w:1)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 19]`.
|
|
fn provide_judgement(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `445 + r * (57 ±0) + x * (66 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 24_073_000 picoseconds.
|
|
Weight::from_parts(17_817_684, 11003)
|
|
// Standard Error: 8_612
|
|
.saturating_add(Weight::from_parts(406_251, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Identity SubsOf (r:1 w:1)
|
|
/// Proof: Identity SubsOf (max_values: None, max_size: Some(3258), added: 5733, mode: MaxEncodedLen)
|
|
/// Storage: Identity IdentityOf (r:1 w:1)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// Storage: System Account (r:1 w:1)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
/// Storage: Identity SuperOf (r:0 w:100)
|
|
/// Proof: Identity SuperOf (max_values: None, max_size: Some(114), added: 2589, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 20]`.
|
|
/// The range of component `s` is `[0, 100]`.
|
|
fn kill_identity(r: u32, s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `676 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 73_981_000 picoseconds.
|
|
Weight::from_parts(51_684_057, 11003)
|
|
// Standard Error: 12_662
|
|
.saturating_add(Weight::from_parts(145_285, 0).saturating_mul(r.into()))
|
|
// Standard Error: 2_472
|
|
.saturating_add(Weight::from_parts(1_421_039, 0).saturating_mul(s.into()))
|
|
.saturating_add(T::DbWeight::get().reads(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(s.into())))
|
|
}
|
|
/// Storage: Identity IdentityOf (r:1 w:0)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// Storage: Identity SuperOf (r:1 w:1)
|
|
/// Proof: Identity SuperOf (max_values: None, max_size: Some(114), added: 2589, mode: MaxEncodedLen)
|
|
/// Storage: Identity SubsOf (r:1 w:1)
|
|
/// Proof: Identity SubsOf (max_values: None, max_size: Some(3258), added: 5733, mode: MaxEncodedLen)
|
|
/// The range of component `s` is `[0, 99]`.
|
|
fn add_sub(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `475 + s * (36 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 29_367_000 picoseconds.
|
|
Weight::from_parts(34_214_998, 11003)
|
|
// Standard Error: 1_522
|
|
.saturating_add(Weight::from_parts(114_551, 0).saturating_mul(s.into()))
|
|
.saturating_add(T::DbWeight::get().reads(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: Identity IdentityOf (r:1 w:0)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// Storage: Identity SuperOf (r:1 w:1)
|
|
/// Proof: Identity SuperOf (max_values: None, max_size: Some(114), added: 2589, mode: MaxEncodedLen)
|
|
/// The range of component `s` is `[1, 100]`.
|
|
fn rename_sub(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `591 + s * (3 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 12_384_000 picoseconds.
|
|
Weight::from_parts(14_417_903, 11003)
|
|
// Standard Error: 539
|
|
.saturating_add(Weight::from_parts(38_371, 0).saturating_mul(s.into()))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Identity IdentityOf (r:1 w:0)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// Storage: Identity SuperOf (r:1 w:1)
|
|
/// Proof: Identity SuperOf (max_values: None, max_size: Some(114), added: 2589, mode: MaxEncodedLen)
|
|
/// Storage: Identity SubsOf (r:1 w:1)
|
|
/// Proof: Identity SubsOf (max_values: None, max_size: Some(3258), added: 5733, mode: MaxEncodedLen)
|
|
/// The range of component `s` is `[1, 100]`.
|
|
fn remove_sub(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `638 + s * (35 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 33_327_000 picoseconds.
|
|
Weight::from_parts(36_208_941, 11003)
|
|
// Standard Error: 1_240
|
|
.saturating_add(Weight::from_parts(105_805, 0).saturating_mul(s.into()))
|
|
.saturating_add(T::DbWeight::get().reads(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: Identity SuperOf (r:1 w:1)
|
|
/// Proof: Identity SuperOf (max_values: None, max_size: Some(114), added: 2589, mode: MaxEncodedLen)
|
|
/// Storage: Identity SubsOf (r:1 w:1)
|
|
/// Proof: Identity SubsOf (max_values: None, max_size: Some(3258), added: 5733, mode: MaxEncodedLen)
|
|
/// Storage: System Account (r:1 w:0)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
/// The range of component `s` is `[0, 99]`.
|
|
fn quit_sub(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `704 + s * (37 ±0)`
|
|
// Estimated: `6723`
|
|
// Minimum execution time: 23_764_000 picoseconds.
|
|
Weight::from_parts(26_407_731, 6723)
|
|
// Standard Error: 1_025
|
|
.saturating_add(Weight::from_parts(101_112, 0).saturating_mul(s.into()))
|
|
.saturating_add(T::DbWeight::get().reads(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
}
|
|
}
|
|
|
|
// For backwards compatibility and tests
|
|
impl WeightInfo for () {
|
|
/// Storage: Identity Registrars (r:1 w:1)
|
|
/// Proof: Identity Registrars (max_values: Some(1), max_size: Some(1141), added: 1636, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 19]`.
|
|
fn add_registrar(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `32 + r * (57 ±0)`
|
|
// Estimated: `2626`
|
|
// Minimum execution time: 11_683_000 picoseconds.
|
|
Weight::from_parts(12_515_830, 2626)
|
|
// Standard Error: 2_154
|
|
.saturating_add(Weight::from_parts(147_919, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Identity IdentityOf (r:1 w:1)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 20]`.
|
|
fn set_identity(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `442 + r * (5 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 32_949_000 picoseconds.
|
|
Weight::from_parts(31_329_634, 11003)
|
|
// Standard Error: 4_496
|
|
.saturating_add(Weight::from_parts(203_570, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Identity IdentityOf (r:1 w:0)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// Storage: Identity SubsOf (r:1 w:1)
|
|
/// Proof: Identity SubsOf (max_values: None, max_size: Some(3258), added: 5733, mode: MaxEncodedLen)
|
|
/// Storage: Identity SuperOf (r:100 w:100)
|
|
/// Proof: Identity SuperOf (max_values: None, max_size: Some(114), added: 2589, mode: MaxEncodedLen)
|
|
/// The range of component `s` is `[0, 100]`.
|
|
fn set_subs_new(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `101`
|
|
// Estimated: `11003 + s * (2589 ±0)`
|
|
// Minimum execution time: 9_157_000 picoseconds.
|
|
Weight::from_parts(24_917_444, 11003)
|
|
// Standard Error: 4_554
|
|
.saturating_add(Weight::from_parts(3_279_868, 0).saturating_mul(s.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(s.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(s.into())))
|
|
.saturating_add(Weight::from_parts(0, 2589).saturating_mul(s.into()))
|
|
}
|
|
/// Storage: Identity IdentityOf (r:1 w:0)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// Storage: Identity SubsOf (r:1 w:1)
|
|
/// Proof: Identity SubsOf (max_values: None, max_size: Some(3258), added: 5733, mode: MaxEncodedLen)
|
|
/// Storage: Identity SuperOf (r:0 w:100)
|
|
/// Proof: Identity SuperOf (max_values: None, max_size: Some(114), added: 2589, mode: MaxEncodedLen)
|
|
/// The range of component `p` is `[0, 100]`.
|
|
fn set_subs_old(p: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `194 + p * (32 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 9_240_000 picoseconds.
|
|
Weight::from_parts(23_326_035, 11003)
|
|
// Standard Error: 3_664
|
|
.saturating_add(Weight::from_parts(1_439_873, 0).saturating_mul(p.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(p.into())))
|
|
}
|
|
/// Storage: Identity SubsOf (r:1 w:1)
|
|
/// Proof: Identity SubsOf (max_values: None, max_size: Some(3258), added: 5733, mode: MaxEncodedLen)
|
|
/// Storage: Identity IdentityOf (r:1 w:1)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// Storage: Identity SuperOf (r:0 w:100)
|
|
/// Proof: Identity SuperOf (max_values: None, max_size: Some(114), added: 2589, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 20]`.
|
|
/// The range of component `s` is `[0, 100]`.
|
|
fn clear_identity(r: u32, s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `469 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 55_687_000 picoseconds.
|
|
Weight::from_parts(30_695_182, 11003)
|
|
// Standard Error: 9_921
|
|
.saturating_add(Weight::from_parts(162_357, 0).saturating_mul(r.into()))
|
|
// Standard Error: 1_937
|
|
.saturating_add(Weight::from_parts(1_427_998, 0).saturating_mul(s.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(s.into())))
|
|
}
|
|
/// Storage: Identity Registrars (r:1 w:0)
|
|
/// Proof: Identity Registrars (max_values: Some(1), max_size: Some(1141), added: 1636, mode: MaxEncodedLen)
|
|
/// Storage: Identity IdentityOf (r:1 w:1)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 20]`.
|
|
fn request_judgement(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `367 + r * (57 ±0) + x * (66 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 34_876_000 picoseconds.
|
|
Weight::from_parts(32_207_018, 11003)
|
|
// Standard Error: 5_247
|
|
.saturating_add(Weight::from_parts(249_156, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Identity IdentityOf (r:1 w:1)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 20]`.
|
|
fn cancel_request(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `398 + x * (66 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 30_689_000 picoseconds.
|
|
Weight::from_parts(31_967_170, 11003)
|
|
// Standard Error: 5_387
|
|
.saturating_add(Weight::from_parts(42_676, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Identity Registrars (r:1 w:1)
|
|
/// Proof: Identity Registrars (max_values: Some(1), max_size: Some(1141), added: 1636, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 19]`.
|
|
fn set_fee(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `89 + r * (57 ±0)`
|
|
// Estimated: `2626`
|
|
// Minimum execution time: 7_357_000 picoseconds.
|
|
Weight::from_parts(7_932_950, 2626)
|
|
// Standard Error: 1_804
|
|
.saturating_add(Weight::from_parts(132_653, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Identity Registrars (r:1 w:1)
|
|
/// Proof: Identity Registrars (max_values: Some(1), max_size: Some(1141), added: 1636, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 19]`.
|
|
fn set_account_id(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `89 + r * (57 ±0)`
|
|
// Estimated: `2626`
|
|
// Minimum execution time: 7_437_000 picoseconds.
|
|
Weight::from_parts(8_051_889, 2626)
|
|
// Standard Error: 1_997
|
|
.saturating_add(Weight::from_parts(129_592, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Identity Registrars (r:1 w:1)
|
|
/// Proof: Identity Registrars (max_values: Some(1), max_size: Some(1141), added: 1636, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 19]`.
|
|
fn set_fields(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `89 + r * (57 ±0)`
|
|
// Estimated: `2626`
|
|
// Minimum execution time: 7_385_000 picoseconds.
|
|
Weight::from_parts(7_911_589, 2626)
|
|
// Standard Error: 1_791
|
|
.saturating_add(Weight::from_parts(125_788, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Identity Registrars (r:1 w:0)
|
|
/// Proof: Identity Registrars (max_values: Some(1), max_size: Some(1141), added: 1636, mode: MaxEncodedLen)
|
|
/// Storage: Identity IdentityOf (r:1 w:1)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 19]`.
|
|
fn provide_judgement(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `445 + r * (57 ±0) + x * (66 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 24_073_000 picoseconds.
|
|
Weight::from_parts(17_817_684, 11003)
|
|
// Standard Error: 8_612
|
|
.saturating_add(Weight::from_parts(406_251, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Identity SubsOf (r:1 w:1)
|
|
/// Proof: Identity SubsOf (max_values: None, max_size: Some(3258), added: 5733, mode: MaxEncodedLen)
|
|
/// Storage: Identity IdentityOf (r:1 w:1)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// Storage: System Account (r:1 w:1)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
/// Storage: Identity SuperOf (r:0 w:100)
|
|
/// Proof: Identity SuperOf (max_values: None, max_size: Some(114), added: 2589, mode: MaxEncodedLen)
|
|
/// The range of component `r` is `[1, 20]`.
|
|
/// The range of component `s` is `[0, 100]`.
|
|
fn kill_identity(r: u32, s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `676 + r * (5 ±0) + s * (32 ±0) + x * (66 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 73_981_000 picoseconds.
|
|
Weight::from_parts(51_684_057, 11003)
|
|
// Standard Error: 12_662
|
|
.saturating_add(Weight::from_parts(145_285, 0).saturating_mul(r.into()))
|
|
// Standard Error: 2_472
|
|
.saturating_add(Weight::from_parts(1_421_039, 0).saturating_mul(s.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(s.into())))
|
|
}
|
|
/// Storage: Identity IdentityOf (r:1 w:0)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// Storage: Identity SuperOf (r:1 w:1)
|
|
/// Proof: Identity SuperOf (max_values: None, max_size: Some(114), added: 2589, mode: MaxEncodedLen)
|
|
/// Storage: Identity SubsOf (r:1 w:1)
|
|
/// Proof: Identity SubsOf (max_values: None, max_size: Some(3258), added: 5733, mode: MaxEncodedLen)
|
|
/// The range of component `s` is `[0, 99]`.
|
|
fn add_sub(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `475 + s * (36 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 29_367_000 picoseconds.
|
|
Weight::from_parts(34_214_998, 11003)
|
|
// Standard Error: 1_522
|
|
.saturating_add(Weight::from_parts(114_551, 0).saturating_mul(s.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: Identity IdentityOf (r:1 w:0)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// Storage: Identity SuperOf (r:1 w:1)
|
|
/// Proof: Identity SuperOf (max_values: None, max_size: Some(114), added: 2589, mode: MaxEncodedLen)
|
|
/// The range of component `s` is `[1, 100]`.
|
|
fn rename_sub(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `591 + s * (3 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 12_384_000 picoseconds.
|
|
Weight::from_parts(14_417_903, 11003)
|
|
// Standard Error: 539
|
|
.saturating_add(Weight::from_parts(38_371, 0).saturating_mul(s.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Identity IdentityOf (r:1 w:0)
|
|
/// Proof: Identity IdentityOf (max_values: None, max_size: Some(7538), added: 10013, mode: MaxEncodedLen)
|
|
/// Storage: Identity SuperOf (r:1 w:1)
|
|
/// Proof: Identity SuperOf (max_values: None, max_size: Some(114), added: 2589, mode: MaxEncodedLen)
|
|
/// Storage: Identity SubsOf (r:1 w:1)
|
|
/// Proof: Identity SubsOf (max_values: None, max_size: Some(3258), added: 5733, mode: MaxEncodedLen)
|
|
/// The range of component `s` is `[1, 100]`.
|
|
fn remove_sub(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `638 + s * (35 ±0)`
|
|
// Estimated: `11003`
|
|
// Minimum execution time: 33_327_000 picoseconds.
|
|
Weight::from_parts(36_208_941, 11003)
|
|
// Standard Error: 1_240
|
|
.saturating_add(Weight::from_parts(105_805, 0).saturating_mul(s.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: Identity SuperOf (r:1 w:1)
|
|
/// Proof: Identity SuperOf (max_values: None, max_size: Some(114), added: 2589, mode: MaxEncodedLen)
|
|
/// Storage: Identity SubsOf (r:1 w:1)
|
|
/// Proof: Identity SubsOf (max_values: None, max_size: Some(3258), added: 5733, mode: MaxEncodedLen)
|
|
/// Storage: System Account (r:1 w:0)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
/// The range of component `s` is `[0, 99]`.
|
|
fn quit_sub(s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `704 + s * (37 ±0)`
|
|
// Estimated: `6723`
|
|
// Minimum execution time: 23_764_000 picoseconds.
|
|
Weight::from_parts(26_407_731, 6723)
|
|
// Standard Error: 1_025
|
|
.saturating_add(Weight::from_parts(101_112, 0).saturating_mul(s.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
}
|
|
}
|