mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-15 01:01:04 +00:00
9e56e1acdd
* Deprecate Weight::from_{ref_time, proof_size}
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
* Update templates
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
* Use from_parts
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
* Use from_parts
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
* Dont revert comment 🤦
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
* ".git/.scripts/commands/bench/bench.sh" pallet dev pallet_balances
* Update weight files
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
* More fixes
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
* Adapt to Master changes
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
---------
Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
Co-authored-by: command-bot <>
1547 lines
78 KiB
Rust
1547 lines
78 KiB
Rust
// 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_nfts
|
|
//!
|
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
|
|
//! DATE: 2023-02-15, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]`
|
|
//! WORST CASE MAP SIZE: `1000000`
|
|
//! HOSTNAME: `runner-osnnfcqu-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
|
|
// --steps=50
|
|
// --repeat=20
|
|
// --extrinsic=*
|
|
// --execution=wasm
|
|
// --wasm-execution=compiled
|
|
// --heap-pages=4096
|
|
// --json-file=/builds/parity/mirrors/substrate/.git/.artifacts/bench.json
|
|
// --pallet=pallet_nfts
|
|
// --chain=dev
|
|
// --header=./HEADER-APACHE2
|
|
// --output=./frame/nfts/src/weights.rs
|
|
// --template=./.maintain/frame-weight-template.hbs
|
|
|
|
#![cfg_attr(rustfmt, rustfmt_skip)]
|
|
#![allow(unused_parens)]
|
|
#![allow(unused_imports)]
|
|
|
|
use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
|
|
use sp_std::marker::PhantomData;
|
|
|
|
/// Weight functions needed for pallet_nfts.
|
|
pub trait WeightInfo {
|
|
fn create() -> Weight;
|
|
fn force_create() -> Weight;
|
|
fn destroy(n: u32, m: u32, a: u32, ) -> Weight;
|
|
fn mint() -> Weight;
|
|
fn force_mint() -> Weight;
|
|
fn burn() -> Weight;
|
|
fn transfer() -> Weight;
|
|
fn redeposit(i: u32, ) -> Weight;
|
|
fn lock_item_transfer() -> Weight;
|
|
fn unlock_item_transfer() -> Weight;
|
|
fn lock_collection() -> Weight;
|
|
fn transfer_ownership() -> Weight;
|
|
fn set_team() -> Weight;
|
|
fn force_collection_owner() -> Weight;
|
|
fn force_collection_config() -> Weight;
|
|
fn lock_item_properties() -> Weight;
|
|
fn set_attribute() -> Weight;
|
|
fn force_set_attribute() -> Weight;
|
|
fn clear_attribute() -> Weight;
|
|
fn approve_item_attributes() -> Weight;
|
|
fn cancel_item_attributes_approval(n: u32, ) -> Weight;
|
|
fn set_metadata() -> Weight;
|
|
fn clear_metadata() -> Weight;
|
|
fn set_collection_metadata() -> Weight;
|
|
fn clear_collection_metadata() -> Weight;
|
|
fn approve_transfer() -> Weight;
|
|
fn cancel_approval() -> Weight;
|
|
fn clear_all_transfer_approvals() -> Weight;
|
|
fn set_accept_ownership() -> Weight;
|
|
fn set_collection_max_supply() -> Weight;
|
|
fn update_mint_settings() -> Weight;
|
|
fn set_price() -> Weight;
|
|
fn buy_item() -> Weight;
|
|
fn pay_tips(n: u32, ) -> Weight;
|
|
fn create_swap() -> Weight;
|
|
fn cancel_swap() -> Weight;
|
|
fn claim_swap() -> Weight;
|
|
fn mint_pre_signed(n: u32, ) -> Weight;
|
|
fn set_attributes_pre_signed(n: u32, ) -> Weight;
|
|
}
|
|
|
|
/// Weights for pallet_nfts using the Substrate node and recommended hardware.
|
|
pub struct SubstrateWeight<T>(PhantomData<T>);
|
|
impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
|
|
/// Storage: Nfts NextCollectionId (r:1 w:1)
|
|
/// Proof: Nfts NextCollectionId (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:0 w:1)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:0 w:1)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionAccount (r:0 w:1)
|
|
/// Proof: Nfts CollectionAccount (max_values: None, max_size: Some(68), added: 2543, mode: MaxEncodedLen)
|
|
fn create() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `214`
|
|
// Estimated: `3054`
|
|
// Minimum execution time: 33_769 nanoseconds.
|
|
Weight::from_parts(36_031_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 3054))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(5_u64))
|
|
}
|
|
/// Storage: Nfts NextCollectionId (r:1 w:1)
|
|
/// Proof: Nfts NextCollectionId (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:0 w:1)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:0 w:1)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionAccount (r:0 w:1)
|
|
/// Proof: Nfts CollectionAccount (max_values: None, max_size: Some(68), added: 2543, mode: MaxEncodedLen)
|
|
fn force_create() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `42`
|
|
// Estimated: `3054`
|
|
// Minimum execution time: 21_767 nanoseconds.
|
|
Weight::from_parts(22_565_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 3054))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(5_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Item (r:1001 w:1000)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemMetadataOf (r:1001 w:1000)
|
|
/// Proof: Nfts ItemMetadataOf (max_values: None, max_size: Some(140), added: 2615, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Attribute (r:1001 w:1000)
|
|
/// Proof: Nfts Attribute (max_values: None, max_size: Some(446), added: 2921, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:0 w:1)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionMetadataOf (r:0 w:1)
|
|
/// Proof: Nfts CollectionMetadataOf (max_values: None, max_size: Some(87), added: 2562, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:0 w:1)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:0 w:1000)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Account (r:0 w:1000)
|
|
/// Proof: Nfts Account (max_values: None, max_size: Some(88), added: 2563, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionAccount (r:0 w:1)
|
|
/// Proof: Nfts CollectionAccount (max_values: None, max_size: Some(68), added: 2543, mode: MaxEncodedLen)
|
|
/// The range of component `n` is `[0, 1000]`.
|
|
/// The range of component `m` is `[0, 1000]`.
|
|
/// The range of component `a` is `[0, 1000]`.
|
|
fn destroy(_n: u32, m: u32, a: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `172781 + m * (127 ±0) + a * (402 ±0)`
|
|
// Estimated: `3347427 + m * (2615 ±0) + a * (2921 ±0)`
|
|
// Minimum execution time: 26_973_627 nanoseconds.
|
|
Weight::from_parts(19_692_361_714, 0)
|
|
.saturating_add(Weight::from_parts(0, 3347427))
|
|
// Standard Error: 17_036
|
|
.saturating_add(Weight::from_parts(7_797_219, 0).saturating_mul(m.into()))
|
|
// Standard Error: 17_036
|
|
.saturating_add(Weight::from_parts(9_504_128, 0).saturating_mul(a.into()))
|
|
.saturating_add(T::DbWeight::get().reads(1004_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(m.into())))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(a.into())))
|
|
.saturating_add(T::DbWeight::get().writes(3005_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(m.into())))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(a.into())))
|
|
.saturating_add(Weight::from_parts(0, 2615).saturating_mul(m.into()))
|
|
.saturating_add(Weight::from_parts(0, 2921).saturating_mul(a.into()))
|
|
}
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Item (r:1 w:1)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:1)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Account (r:0 w:1)
|
|
/// Proof: Nfts Account (max_values: None, max_size: Some(88), added: 2563, mode: MaxEncodedLen)
|
|
fn mint() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `448`
|
|
// Estimated: `13506`
|
|
// Minimum execution time: 44_837 nanoseconds.
|
|
Weight::from_parts(46_794_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 13506))
|
|
.saturating_add(T::DbWeight::get().reads(5_u64))
|
|
.saturating_add(T::DbWeight::get().writes(4_u64))
|
|
}
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Item (r:1 w:1)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:1)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Account (r:0 w:1)
|
|
/// Proof: Nfts Account (max_values: None, max_size: Some(88), added: 2563, mode: MaxEncodedLen)
|
|
fn force_mint() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `448`
|
|
// Estimated: `13506`
|
|
// Minimum execution time: 43_976 nanoseconds.
|
|
Weight::from_parts(44_831_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 13506))
|
|
.saturating_add(T::DbWeight::get().reads(5_u64))
|
|
.saturating_add(T::DbWeight::get().writes(4_u64))
|
|
}
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:1)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Item (r:1 w:1)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemMetadataOf (r:1 w:0)
|
|
/// Proof: Nfts ItemMetadataOf (max_values: None, max_size: Some(140), added: 2615, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Account (r:0 w:1)
|
|
/// Proof: Nfts Account (max_values: None, max_size: Some(88), added: 2563, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemPriceOf (r:0 w:1)
|
|
/// Proof: Nfts ItemPriceOf (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemAttributesApprovalsOf (r:0 w:1)
|
|
/// Proof: Nfts ItemAttributesApprovalsOf (max_values: None, max_size: Some(681), added: 3156, mode: MaxEncodedLen)
|
|
/// Storage: Nfts PendingSwapOf (r:0 w:1)
|
|
/// Proof: Nfts PendingSwapOf (max_values: None, max_size: Some(71), added: 2546, mode: MaxEncodedLen)
|
|
fn burn() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `647`
|
|
// Estimated: `13573`
|
|
// Minimum execution time: 48_233 nanoseconds.
|
|
Weight::from_parts(50_113_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 13573))
|
|
.saturating_add(T::DbWeight::get().reads(5_u64))
|
|
.saturating_add(T::DbWeight::get().writes(7_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:0)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:0)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Item (r:1 w:1)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: System Account (r:1 w:1)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Account (r:0 w:2)
|
|
/// Proof: Nfts Account (max_values: None, max_size: Some(88), added: 2563, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemPriceOf (r:0 w:1)
|
|
/// Proof: Nfts ItemPriceOf (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
|
|
/// Storage: Nfts PendingSwapOf (r:0 w:1)
|
|
/// Proof: Nfts PendingSwapOf (max_values: None, max_size: Some(71), added: 2546, mode: MaxEncodedLen)
|
|
fn transfer() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `882`
|
|
// Estimated: `16109`
|
|
// Minimum execution time: 55_452 nanoseconds.
|
|
Weight::from_parts(57_642_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 16109))
|
|
.saturating_add(T::DbWeight::get().reads(6_u64))
|
|
.saturating_add(T::DbWeight::get().writes(6_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:0)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Item (r:5000 w:5000)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// The range of component `i` is `[0, 5000]`.
|
|
fn redeposit(i: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `756 + i * (140 ±0)`
|
|
// Estimated: `5103 + i * (3336 ±0)`
|
|
// Minimum execution time: 15_598 nanoseconds.
|
|
Weight::from_parts(15_926_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5103))
|
|
// Standard Error: 13_692
|
|
.saturating_add(Weight::from_parts(14_040_741, 0).saturating_mul(i.into()))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(i.into())))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(i.into())))
|
|
.saturating_add(Weight::from_parts(0, 3336).saturating_mul(i.into()))
|
|
}
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:1)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
fn lock_item_transfer() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `401`
|
|
// Estimated: `5067`
|
|
// Minimum execution time: 19_686 nanoseconds.
|
|
Weight::from_parts(20_404_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5067))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:1)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
fn unlock_item_transfer() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `401`
|
|
// Estimated: `5067`
|
|
// Minimum execution time: 19_172 nanoseconds.
|
|
Weight::from_parts(20_151_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5067))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:1)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
fn lock_collection() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `289`
|
|
// Estimated: `5092`
|
|
// Minimum execution time: 17_063 nanoseconds.
|
|
Weight::from_parts(17_482_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5092))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts OwnershipAcceptance (r:1 w:1)
|
|
/// Proof: Nfts OwnershipAcceptance (max_values: None, max_size: Some(52), added: 2527, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionAccount (r:0 w:2)
|
|
/// Proof: Nfts CollectionAccount (max_values: None, max_size: Some(68), added: 2543, mode: MaxEncodedLen)
|
|
fn transfer_ownership() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `381`
|
|
// Estimated: `5082`
|
|
// Minimum execution time: 21_974 nanoseconds.
|
|
Weight::from_parts(22_770_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5082))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(4_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:0 w:4)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
fn set_team() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `362`
|
|
// Estimated: `2555`
|
|
// Minimum execution time: 24_341 nanoseconds.
|
|
Weight::from_parts(25_059_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 2555))
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(5_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionAccount (r:0 w:2)
|
|
/// Proof: Nfts CollectionAccount (max_values: None, max_size: Some(68), added: 2543, mode: MaxEncodedLen)
|
|
fn force_collection_owner() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `304`
|
|
// Estimated: `2555`
|
|
// Minimum execution time: 16_897 nanoseconds.
|
|
Weight::from_parts(17_560_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 2555))
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:0)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:0 w:1)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
fn force_collection_config() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `242`
|
|
// Estimated: `2555`
|
|
// Minimum execution time: 13_239 nanoseconds.
|
|
Weight::from_parts(13_963_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 2555))
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:0)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:1)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
fn lock_item_properties() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `445`
|
|
// Estimated: `5078`
|
|
// Minimum execution time: 17_187 nanoseconds.
|
|
Weight::from_parts(17_942_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5078))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:0)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Attribute (r:1 w:1)
|
|
/// Proof: Nfts Attribute (max_values: None, max_size: Some(446), added: 2921, mode: MaxEncodedLen)
|
|
fn set_attribute() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `474`
|
|
// Estimated: `10547`
|
|
// Minimum execution time: 40_925 nanoseconds.
|
|
Weight::from_parts(42_733_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 10547))
|
|
.saturating_add(T::DbWeight::get().reads(4_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Attribute (r:1 w:1)
|
|
/// Proof: Nfts Attribute (max_values: None, max_size: Some(446), added: 2921, mode: MaxEncodedLen)
|
|
fn force_set_attribute() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `337`
|
|
// Estimated: `5476`
|
|
// Minimum execution time: 24_486 nanoseconds.
|
|
Weight::from_parts(25_409_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5476))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: Nfts Attribute (r:1 w:1)
|
|
/// Proof: Nfts Attribute (max_values: None, max_size: Some(446), added: 2921, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:0)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
fn clear_attribute() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `916`
|
|
// Estimated: `7999`
|
|
// Minimum execution time: 36_643 nanoseconds.
|
|
Weight::from_parts(37_805_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 7999))
|
|
.saturating_add(T::DbWeight::get().reads(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: Nfts Item (r:1 w:0)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemAttributesApprovalsOf (r:1 w:1)
|
|
/// Proof: Nfts ItemAttributesApprovalsOf (max_values: None, max_size: Some(681), added: 3156, mode: MaxEncodedLen)
|
|
fn approve_item_attributes() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `379`
|
|
// Estimated: `6492`
|
|
// Minimum execution time: 16_798 nanoseconds.
|
|
Weight::from_parts(17_326_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 6492))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Item (r:1 w:0)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemAttributesApprovalsOf (r:1 w:1)
|
|
/// Proof: Nfts ItemAttributesApprovalsOf (max_values: None, max_size: Some(681), added: 3156, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Attribute (r:1001 w:1000)
|
|
/// Proof: Nfts Attribute (max_values: None, max_size: Some(446), added: 2921, mode: MaxEncodedLen)
|
|
/// Storage: System Account (r:1 w:1)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
/// The range of component `n` is `[0, 1000]`.
|
|
fn cancel_item_attributes_approval(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `899 + n * (396 ±0)`
|
|
// Estimated: `12016 + n * (2921 ±0)`
|
|
// Minimum execution time: 25_524 nanoseconds.
|
|
Weight::from_parts(26_107_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 12016))
|
|
// Standard Error: 5_460
|
|
.saturating_add(Weight::from_parts(9_030_830, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(4_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into())))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into())))
|
|
.saturating_add(Weight::from_parts(0, 2921).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:0)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemMetadataOf (r:1 w:1)
|
|
/// Proof: Nfts ItemMetadataOf (max_values: None, max_size: Some(140), added: 2615, mode: MaxEncodedLen)
|
|
fn set_metadata() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `474`
|
|
// Estimated: `10241`
|
|
// Minimum execution time: 34_400 nanoseconds.
|
|
Weight::from_parts(35_469_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 10241))
|
|
.saturating_add(T::DbWeight::get().reads(4_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: Nfts ItemMetadataOf (r:1 w:1)
|
|
/// Proof: Nfts ItemMetadataOf (max_values: None, max_size: Some(140), added: 2615, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:0)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
fn clear_metadata() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `609`
|
|
// Estimated: `7693`
|
|
// Minimum execution time: 31_560 nanoseconds.
|
|
Weight::from_parts(33_081_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 7693))
|
|
.saturating_add(T::DbWeight::get().reads(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionMetadataOf (r:1 w:1)
|
|
/// Proof: Nfts CollectionMetadataOf (max_values: None, max_size: Some(87), added: 2562, mode: MaxEncodedLen)
|
|
fn set_collection_metadata() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `333`
|
|
// Estimated: `7665`
|
|
// Minimum execution time: 28_821 nanoseconds.
|
|
Weight::from_parts(30_010_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 7665))
|
|
.saturating_add(T::DbWeight::get().reads(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:0)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionMetadataOf (r:1 w:1)
|
|
/// Proof: Nfts CollectionMetadataOf (max_values: None, max_size: Some(87), added: 2562, mode: MaxEncodedLen)
|
|
fn clear_collection_metadata() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `476`
|
|
// Estimated: `7665`
|
|
// Minimum execution time: 27_608 nanoseconds.
|
|
Weight::from_parts(28_766_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 7665))
|
|
.saturating_add(T::DbWeight::get().reads(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Item (r:1 w:1)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
fn approve_transfer() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `466`
|
|
// Estimated: `8428`
|
|
// Minimum execution time: 23_987 nanoseconds.
|
|
Weight::from_parts(24_819_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 8428))
|
|
.saturating_add(T::DbWeight::get().reads(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Item (r:1 w:1)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
fn cancel_approval() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `474`
|
|
// Estimated: `5880`
|
|
// Minimum execution time: 21_254 nanoseconds.
|
|
Weight::from_parts(21_826_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5880))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Item (r:1 w:1)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
fn clear_all_transfer_approvals() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `474`
|
|
// Estimated: `5880`
|
|
// Minimum execution time: 20_272 nanoseconds.
|
|
Weight::from_parts(20_922_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5880))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts OwnershipAcceptance (r:1 w:1)
|
|
/// Proof: Nfts OwnershipAcceptance (max_values: None, max_size: Some(52), added: 2527, mode: MaxEncodedLen)
|
|
fn set_accept_ownership() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `42`
|
|
// Estimated: `2527`
|
|
// Minimum execution time: 14_287 nanoseconds.
|
|
Weight::from_parts(14_960_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 2527))
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:1)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:0)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
fn set_collection_max_supply() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `333`
|
|
// Estimated: `5103`
|
|
// Minimum execution time: 17_948 nanoseconds.
|
|
Weight::from_parts(18_780_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5103))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:0)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:1)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
fn update_mint_settings() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `333`
|
|
// Estimated: `5103`
|
|
// Minimum execution time: 16_616 nanoseconds.
|
|
Weight::from_parts(17_155_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5103))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Item (r:1 w:0)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:0)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemPriceOf (r:0 w:1)
|
|
/// Proof: Nfts ItemPriceOf (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
|
|
fn set_price() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `516`
|
|
// Estimated: `8407`
|
|
// Minimum execution time: 22_777 nanoseconds.
|
|
Weight::from_parts(23_955_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 8407))
|
|
.saturating_add(T::DbWeight::get().reads(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Item (r:1 w:1)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemPriceOf (r:1 w:1)
|
|
/// Proof: Nfts ItemPriceOf (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:0)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:0)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: System Account (r:1 w:1)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Account (r:0 w:2)
|
|
/// Proof: Nfts Account (max_values: None, max_size: Some(88), added: 2563, mode: MaxEncodedLen)
|
|
/// Storage: Nfts PendingSwapOf (r:0 w:1)
|
|
/// Proof: Nfts PendingSwapOf (max_values: None, max_size: Some(71), added: 2546, mode: MaxEncodedLen)
|
|
fn buy_item() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `934`
|
|
// Estimated: `16129`
|
|
// Minimum execution time: 61_131 nanoseconds.
|
|
Weight::from_parts(62_791_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 16129))
|
|
.saturating_add(T::DbWeight::get().reads(6_u64))
|
|
.saturating_add(T::DbWeight::get().writes(6_u64))
|
|
}
|
|
/// The range of component `n` is `[0, 10]`.
|
|
fn pay_tips(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 1_952 nanoseconds.
|
|
Weight::from_parts(3_975_700, 0)
|
|
.saturating_add(Weight::from_parts(0, 0))
|
|
// Standard Error: 11_254
|
|
.saturating_add(Weight::from_parts(3_501_698, 0).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: Nfts Item (r:2 w:0)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts PendingSwapOf (r:0 w:1)
|
|
/// Proof: Nfts PendingSwapOf (max_values: None, max_size: Some(71), added: 2546, mode: MaxEncodedLen)
|
|
fn create_swap() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `524`
|
|
// Estimated: `6672`
|
|
// Minimum execution time: 20_327 nanoseconds.
|
|
Weight::from_parts(21_714_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 6672))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts PendingSwapOf (r:1 w:1)
|
|
/// Proof: Nfts PendingSwapOf (max_values: None, max_size: Some(71), added: 2546, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Item (r:1 w:0)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
fn cancel_swap() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `511`
|
|
// Estimated: `5882`
|
|
// Minimum execution time: 20_668 nanoseconds.
|
|
Weight::from_parts(21_416_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5882))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Item (r:2 w:2)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts PendingSwapOf (r:1 w:2)
|
|
/// Proof: Nfts PendingSwapOf (max_values: None, max_size: Some(71), added: 2546, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:0)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:2 w:0)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: System Account (r:1 w:1)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Account (r:0 w:4)
|
|
/// Proof: Nfts Account (max_values: None, max_size: Some(88), added: 2563, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemPriceOf (r:0 w:2)
|
|
/// Proof: Nfts ItemPriceOf (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
|
|
fn claim_swap() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1097`
|
|
// Estimated: `21970`
|
|
// Minimum execution time: 88_006 nanoseconds.
|
|
Weight::from_parts(90_390_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 21970))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(11_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Item (r:1 w:1)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:1)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: System Account (r:1 w:1)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Attribute (r:10 w:10)
|
|
/// Proof: Nfts Attribute (max_values: None, max_size: Some(446), added: 2921, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemMetadataOf (r:1 w:1)
|
|
/// Proof: Nfts ItemMetadataOf (max_values: None, max_size: Some(140), added: 2615, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Account (r:0 w:1)
|
|
/// Proof: Nfts Account (max_values: None, max_size: Some(88), added: 2563, mode: MaxEncodedLen)
|
|
/// The range of component `n` is `[0, 10]`.
|
|
fn mint_pre_signed(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `596`
|
|
// Estimated: `16180 + n * (2921 ±0)`
|
|
// Minimum execution time: 124_967 nanoseconds.
|
|
Weight::from_parts(131_602_642, 0)
|
|
.saturating_add(Weight::from_parts(0, 16180))
|
|
// Standard Error: 36_480
|
|
.saturating_add(Weight::from_parts(25_811_394, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(6_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into())))
|
|
.saturating_add(T::DbWeight::get().writes(6_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into())))
|
|
.saturating_add(Weight::from_parts(0, 2921).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: Nfts Item (r:1 w:0)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemAttributesApprovalsOf (r:1 w:1)
|
|
/// Proof: Nfts ItemAttributesApprovalsOf (max_values: None, max_size: Some(681), added: 3156, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Attribute (r:10 w:10)
|
|
/// Proof: Nfts Attribute (max_values: None, max_size: Some(446), added: 2921, mode: MaxEncodedLen)
|
|
/// Storage: System Account (r:1 w:1)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
/// The range of component `n` is `[0, 10]`.
|
|
fn set_attributes_pre_signed(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `716`
|
|
// Estimated: `14198 + n * (2921 ±0)`
|
|
// Minimum execution time: 84_153 nanoseconds.
|
|
Weight::from_parts(96_401_623, 0)
|
|
.saturating_add(Weight::from_parts(0, 14198))
|
|
// Standard Error: 70_244
|
|
.saturating_add(Weight::from_parts(26_866_222, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(4_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(n.into())))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(n.into())))
|
|
.saturating_add(Weight::from_parts(0, 2921).saturating_mul(n.into()))
|
|
}
|
|
}
|
|
|
|
// For backwards compatibility and tests
|
|
impl WeightInfo for () {
|
|
/// Storage: Nfts NextCollectionId (r:1 w:1)
|
|
/// Proof: Nfts NextCollectionId (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:0 w:1)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:0 w:1)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionAccount (r:0 w:1)
|
|
/// Proof: Nfts CollectionAccount (max_values: None, max_size: Some(68), added: 2543, mode: MaxEncodedLen)
|
|
fn create() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `214`
|
|
// Estimated: `3054`
|
|
// Minimum execution time: 33_769 nanoseconds.
|
|
Weight::from_parts(36_031_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 3054))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(5_u64))
|
|
}
|
|
/// Storage: Nfts NextCollectionId (r:1 w:1)
|
|
/// Proof: Nfts NextCollectionId (max_values: Some(1), max_size: Some(4), added: 499, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:0 w:1)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:0 w:1)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionAccount (r:0 w:1)
|
|
/// Proof: Nfts CollectionAccount (max_values: None, max_size: Some(68), added: 2543, mode: MaxEncodedLen)
|
|
fn force_create() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `42`
|
|
// Estimated: `3054`
|
|
// Minimum execution time: 21_767 nanoseconds.
|
|
Weight::from_parts(22_565_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 3054))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(5_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Item (r:1001 w:1000)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemMetadataOf (r:1001 w:1000)
|
|
/// Proof: Nfts ItemMetadataOf (max_values: None, max_size: Some(140), added: 2615, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Attribute (r:1001 w:1000)
|
|
/// Proof: Nfts Attribute (max_values: None, max_size: Some(446), added: 2921, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:0 w:1)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionMetadataOf (r:0 w:1)
|
|
/// Proof: Nfts CollectionMetadataOf (max_values: None, max_size: Some(87), added: 2562, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:0 w:1)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:0 w:1000)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Account (r:0 w:1000)
|
|
/// Proof: Nfts Account (max_values: None, max_size: Some(88), added: 2563, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionAccount (r:0 w:1)
|
|
/// Proof: Nfts CollectionAccount (max_values: None, max_size: Some(68), added: 2543, mode: MaxEncodedLen)
|
|
/// The range of component `n` is `[0, 1000]`.
|
|
/// The range of component `m` is `[0, 1000]`.
|
|
/// The range of component `a` is `[0, 1000]`.
|
|
fn destroy(_n: u32, m: u32, a: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `172781 + m * (127 ±0) + a * (402 ±0)`
|
|
// Estimated: `3347427 + m * (2615 ±0) + a * (2921 ±0)`
|
|
// Minimum execution time: 26_973_627 nanoseconds.
|
|
Weight::from_parts(19_692_361_714, 0)
|
|
.saturating_add(Weight::from_parts(0, 3347427))
|
|
// Standard Error: 17_036
|
|
.saturating_add(Weight::from_parts(7_797_219, 0).saturating_mul(m.into()))
|
|
// Standard Error: 17_036
|
|
.saturating_add(Weight::from_parts(9_504_128, 0).saturating_mul(a.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(1004_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(m.into())))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(a.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(3005_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(m.into())))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(a.into())))
|
|
.saturating_add(Weight::from_parts(0, 2615).saturating_mul(m.into()))
|
|
.saturating_add(Weight::from_parts(0, 2921).saturating_mul(a.into()))
|
|
}
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Item (r:1 w:1)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:1)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Account (r:0 w:1)
|
|
/// Proof: Nfts Account (max_values: None, max_size: Some(88), added: 2563, mode: MaxEncodedLen)
|
|
fn mint() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `448`
|
|
// Estimated: `13506`
|
|
// Minimum execution time: 44_837 nanoseconds.
|
|
Weight::from_parts(46_794_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 13506))
|
|
.saturating_add(RocksDbWeight::get().reads(5_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(4_u64))
|
|
}
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Item (r:1 w:1)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:1)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Account (r:0 w:1)
|
|
/// Proof: Nfts Account (max_values: None, max_size: Some(88), added: 2563, mode: MaxEncodedLen)
|
|
fn force_mint() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `448`
|
|
// Estimated: `13506`
|
|
// Minimum execution time: 43_976 nanoseconds.
|
|
Weight::from_parts(44_831_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 13506))
|
|
.saturating_add(RocksDbWeight::get().reads(5_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(4_u64))
|
|
}
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:1)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Item (r:1 w:1)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemMetadataOf (r:1 w:0)
|
|
/// Proof: Nfts ItemMetadataOf (max_values: None, max_size: Some(140), added: 2615, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Account (r:0 w:1)
|
|
/// Proof: Nfts Account (max_values: None, max_size: Some(88), added: 2563, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemPriceOf (r:0 w:1)
|
|
/// Proof: Nfts ItemPriceOf (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemAttributesApprovalsOf (r:0 w:1)
|
|
/// Proof: Nfts ItemAttributesApprovalsOf (max_values: None, max_size: Some(681), added: 3156, mode: MaxEncodedLen)
|
|
/// Storage: Nfts PendingSwapOf (r:0 w:1)
|
|
/// Proof: Nfts PendingSwapOf (max_values: None, max_size: Some(71), added: 2546, mode: MaxEncodedLen)
|
|
fn burn() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `647`
|
|
// Estimated: `13573`
|
|
// Minimum execution time: 48_233 nanoseconds.
|
|
Weight::from_parts(50_113_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 13573))
|
|
.saturating_add(RocksDbWeight::get().reads(5_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(7_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:0)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:0)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Item (r:1 w:1)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: System Account (r:1 w:1)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Account (r:0 w:2)
|
|
/// Proof: Nfts Account (max_values: None, max_size: Some(88), added: 2563, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemPriceOf (r:0 w:1)
|
|
/// Proof: Nfts ItemPriceOf (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
|
|
/// Storage: Nfts PendingSwapOf (r:0 w:1)
|
|
/// Proof: Nfts PendingSwapOf (max_values: None, max_size: Some(71), added: 2546, mode: MaxEncodedLen)
|
|
fn transfer() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `882`
|
|
// Estimated: `16109`
|
|
// Minimum execution time: 55_452 nanoseconds.
|
|
Weight::from_parts(57_642_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 16109))
|
|
.saturating_add(RocksDbWeight::get().reads(6_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(6_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:0)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Item (r:5000 w:5000)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// The range of component `i` is `[0, 5000]`.
|
|
fn redeposit(i: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `756 + i * (140 ±0)`
|
|
// Estimated: `5103 + i * (3336 ±0)`
|
|
// Minimum execution time: 15_598 nanoseconds.
|
|
Weight::from_parts(15_926_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5103))
|
|
// Standard Error: 13_692
|
|
.saturating_add(Weight::from_parts(14_040_741, 0).saturating_mul(i.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(i.into())))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(i.into())))
|
|
.saturating_add(Weight::from_parts(0, 3336).saturating_mul(i.into()))
|
|
}
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:1)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
fn lock_item_transfer() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `401`
|
|
// Estimated: `5067`
|
|
// Minimum execution time: 19_686 nanoseconds.
|
|
Weight::from_parts(20_404_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5067))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:1)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
fn unlock_item_transfer() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `401`
|
|
// Estimated: `5067`
|
|
// Minimum execution time: 19_172 nanoseconds.
|
|
Weight::from_parts(20_151_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5067))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:1)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
fn lock_collection() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `289`
|
|
// Estimated: `5092`
|
|
// Minimum execution time: 17_063 nanoseconds.
|
|
Weight::from_parts(17_482_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5092))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts OwnershipAcceptance (r:1 w:1)
|
|
/// Proof: Nfts OwnershipAcceptance (max_values: None, max_size: Some(52), added: 2527, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionAccount (r:0 w:2)
|
|
/// Proof: Nfts CollectionAccount (max_values: None, max_size: Some(68), added: 2543, mode: MaxEncodedLen)
|
|
fn transfer_ownership() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `381`
|
|
// Estimated: `5082`
|
|
// Minimum execution time: 21_974 nanoseconds.
|
|
Weight::from_parts(22_770_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5082))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(4_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:0 w:4)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
fn set_team() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `362`
|
|
// Estimated: `2555`
|
|
// Minimum execution time: 24_341 nanoseconds.
|
|
Weight::from_parts(25_059_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 2555))
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(5_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionAccount (r:0 w:2)
|
|
/// Proof: Nfts CollectionAccount (max_values: None, max_size: Some(68), added: 2543, mode: MaxEncodedLen)
|
|
fn force_collection_owner() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `304`
|
|
// Estimated: `2555`
|
|
// Minimum execution time: 16_897 nanoseconds.
|
|
Weight::from_parts(17_560_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 2555))
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:0)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:0 w:1)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
fn force_collection_config() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `242`
|
|
// Estimated: `2555`
|
|
// Minimum execution time: 13_239 nanoseconds.
|
|
Weight::from_parts(13_963_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 2555))
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:0)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:1)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
fn lock_item_properties() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `445`
|
|
// Estimated: `5078`
|
|
// Minimum execution time: 17_187 nanoseconds.
|
|
Weight::from_parts(17_942_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5078))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:0)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Attribute (r:1 w:1)
|
|
/// Proof: Nfts Attribute (max_values: None, max_size: Some(446), added: 2921, mode: MaxEncodedLen)
|
|
fn set_attribute() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `474`
|
|
// Estimated: `10547`
|
|
// Minimum execution time: 40_925 nanoseconds.
|
|
Weight::from_parts(42_733_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 10547))
|
|
.saturating_add(RocksDbWeight::get().reads(4_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Attribute (r:1 w:1)
|
|
/// Proof: Nfts Attribute (max_values: None, max_size: Some(446), added: 2921, mode: MaxEncodedLen)
|
|
fn force_set_attribute() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `337`
|
|
// Estimated: `5476`
|
|
// Minimum execution time: 24_486 nanoseconds.
|
|
Weight::from_parts(25_409_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5476))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: Nfts Attribute (r:1 w:1)
|
|
/// Proof: Nfts Attribute (max_values: None, max_size: Some(446), added: 2921, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:0)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
fn clear_attribute() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `916`
|
|
// Estimated: `7999`
|
|
// Minimum execution time: 36_643 nanoseconds.
|
|
Weight::from_parts(37_805_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 7999))
|
|
.saturating_add(RocksDbWeight::get().reads(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: Nfts Item (r:1 w:0)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemAttributesApprovalsOf (r:1 w:1)
|
|
/// Proof: Nfts ItemAttributesApprovalsOf (max_values: None, max_size: Some(681), added: 3156, mode: MaxEncodedLen)
|
|
fn approve_item_attributes() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `379`
|
|
// Estimated: `6492`
|
|
// Minimum execution time: 16_798 nanoseconds.
|
|
Weight::from_parts(17_326_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 6492))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Item (r:1 w:0)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemAttributesApprovalsOf (r:1 w:1)
|
|
/// Proof: Nfts ItemAttributesApprovalsOf (max_values: None, max_size: Some(681), added: 3156, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Attribute (r:1001 w:1000)
|
|
/// Proof: Nfts Attribute (max_values: None, max_size: Some(446), added: 2921, mode: MaxEncodedLen)
|
|
/// Storage: System Account (r:1 w:1)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
/// The range of component `n` is `[0, 1000]`.
|
|
fn cancel_item_attributes_approval(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `899 + n * (396 ±0)`
|
|
// Estimated: `12016 + n * (2921 ±0)`
|
|
// Minimum execution time: 25_524 nanoseconds.
|
|
Weight::from_parts(26_107_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 12016))
|
|
// Standard Error: 5_460
|
|
.saturating_add(Weight::from_parts(9_030_830, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(4_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(n.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(n.into())))
|
|
.saturating_add(Weight::from_parts(0, 2921).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:0)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemMetadataOf (r:1 w:1)
|
|
/// Proof: Nfts ItemMetadataOf (max_values: None, max_size: Some(140), added: 2615, mode: MaxEncodedLen)
|
|
fn set_metadata() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `474`
|
|
// Estimated: `10241`
|
|
// Minimum execution time: 34_400 nanoseconds.
|
|
Weight::from_parts(35_469_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 10241))
|
|
.saturating_add(RocksDbWeight::get().reads(4_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: Nfts ItemMetadataOf (r:1 w:1)
|
|
/// Proof: Nfts ItemMetadataOf (max_values: None, max_size: Some(140), added: 2615, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:0)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
fn clear_metadata() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `609`
|
|
// Estimated: `7693`
|
|
// Minimum execution time: 31_560 nanoseconds.
|
|
Weight::from_parts(33_081_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 7693))
|
|
.saturating_add(RocksDbWeight::get().reads(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionMetadataOf (r:1 w:1)
|
|
/// Proof: Nfts CollectionMetadataOf (max_values: None, max_size: Some(87), added: 2562, mode: MaxEncodedLen)
|
|
fn set_collection_metadata() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `333`
|
|
// Estimated: `7665`
|
|
// Minimum execution time: 28_821 nanoseconds.
|
|
Weight::from_parts(30_010_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 7665))
|
|
.saturating_add(RocksDbWeight::get().reads(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:0)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionMetadataOf (r:1 w:1)
|
|
/// Proof: Nfts CollectionMetadataOf (max_values: None, max_size: Some(87), added: 2562, mode: MaxEncodedLen)
|
|
fn clear_collection_metadata() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `476`
|
|
// Estimated: `7665`
|
|
// Minimum execution time: 27_608 nanoseconds.
|
|
Weight::from_parts(28_766_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 7665))
|
|
.saturating_add(RocksDbWeight::get().reads(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Item (r:1 w:1)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
fn approve_transfer() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `466`
|
|
// Estimated: `8428`
|
|
// Minimum execution time: 23_987 nanoseconds.
|
|
Weight::from_parts(24_819_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 8428))
|
|
.saturating_add(RocksDbWeight::get().reads(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Item (r:1 w:1)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
fn cancel_approval() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `474`
|
|
// Estimated: `5880`
|
|
// Minimum execution time: 21_254 nanoseconds.
|
|
Weight::from_parts(21_826_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5880))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Item (r:1 w:1)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionRoleOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionRoleOf (max_values: None, max_size: Some(69), added: 2544, mode: MaxEncodedLen)
|
|
fn clear_all_transfer_approvals() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `474`
|
|
// Estimated: `5880`
|
|
// Minimum execution time: 20_272 nanoseconds.
|
|
Weight::from_parts(20_922_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5880))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts OwnershipAcceptance (r:1 w:1)
|
|
/// Proof: Nfts OwnershipAcceptance (max_values: None, max_size: Some(52), added: 2527, mode: MaxEncodedLen)
|
|
fn set_accept_ownership() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `42`
|
|
// Estimated: `2527`
|
|
// Minimum execution time: 14_287 nanoseconds.
|
|
Weight::from_parts(14_960_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 2527))
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:1)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:0)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
fn set_collection_max_supply() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `333`
|
|
// Estimated: `5103`
|
|
// Minimum execution time: 17_948 nanoseconds.
|
|
Weight::from_parts(18_780_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5103))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:0)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:1)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
fn update_mint_settings() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `333`
|
|
// Estimated: `5103`
|
|
// Minimum execution time: 16_616 nanoseconds.
|
|
Weight::from_parts(17_155_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5103))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Item (r:1 w:0)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:0)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemPriceOf (r:0 w:1)
|
|
/// Proof: Nfts ItemPriceOf (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
|
|
fn set_price() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `516`
|
|
// Estimated: `8407`
|
|
// Minimum execution time: 22_777 nanoseconds.
|
|
Weight::from_parts(23_955_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 8407))
|
|
.saturating_add(RocksDbWeight::get().reads(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Item (r:1 w:1)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemPriceOf (r:1 w:1)
|
|
/// Proof: Nfts ItemPriceOf (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:0)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:0)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: System Account (r:1 w:1)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Account (r:0 w:2)
|
|
/// Proof: Nfts Account (max_values: None, max_size: Some(88), added: 2563, mode: MaxEncodedLen)
|
|
/// Storage: Nfts PendingSwapOf (r:0 w:1)
|
|
/// Proof: Nfts PendingSwapOf (max_values: None, max_size: Some(71), added: 2546, mode: MaxEncodedLen)
|
|
fn buy_item() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `934`
|
|
// Estimated: `16129`
|
|
// Minimum execution time: 61_131 nanoseconds.
|
|
Weight::from_parts(62_791_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 16129))
|
|
.saturating_add(RocksDbWeight::get().reads(6_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(6_u64))
|
|
}
|
|
/// The range of component `n` is `[0, 10]`.
|
|
fn pay_tips(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 1_952 nanoseconds.
|
|
Weight::from_parts(3_975_700, 0)
|
|
.saturating_add(Weight::from_parts(0, 0))
|
|
// Standard Error: 11_254
|
|
.saturating_add(Weight::from_parts(3_501_698, 0).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: Nfts Item (r:2 w:0)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts PendingSwapOf (r:0 w:1)
|
|
/// Proof: Nfts PendingSwapOf (max_values: None, max_size: Some(71), added: 2546, mode: MaxEncodedLen)
|
|
fn create_swap() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `524`
|
|
// Estimated: `6672`
|
|
// Minimum execution time: 20_327 nanoseconds.
|
|
Weight::from_parts(21_714_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 6672))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts PendingSwapOf (r:1 w:1)
|
|
/// Proof: Nfts PendingSwapOf (max_values: None, max_size: Some(71), added: 2546, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Item (r:1 w:0)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
fn cancel_swap() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `511`
|
|
// Estimated: `5882`
|
|
// Minimum execution time: 20_668 nanoseconds.
|
|
Weight::from_parts(21_416_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 5882))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: Nfts Item (r:2 w:2)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts PendingSwapOf (r:1 w:2)
|
|
/// Proof: Nfts PendingSwapOf (max_values: None, max_size: Some(71), added: 2546, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:0)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:2 w:0)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: System Account (r:1 w:1)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Account (r:0 w:4)
|
|
/// Proof: Nfts Account (max_values: None, max_size: Some(88), added: 2563, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemPriceOf (r:0 w:2)
|
|
/// Proof: Nfts ItemPriceOf (max_values: None, max_size: Some(89), added: 2564, mode: MaxEncodedLen)
|
|
fn claim_swap() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1097`
|
|
// Estimated: `21970`
|
|
// Minimum execution time: 88_006 nanoseconds.
|
|
Weight::from_parts(90_390_000, 0)
|
|
.saturating_add(Weight::from_parts(0, 21970))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(11_u64))
|
|
}
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Item (r:1 w:1)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemConfigOf (r:1 w:1)
|
|
/// Proof: Nfts ItemConfigOf (max_values: None, max_size: Some(48), added: 2523, mode: MaxEncodedLen)
|
|
/// Storage: System Account (r:1 w:1)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Attribute (r:10 w:10)
|
|
/// Proof: Nfts Attribute (max_values: None, max_size: Some(446), added: 2921, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemMetadataOf (r:1 w:1)
|
|
/// Proof: Nfts ItemMetadataOf (max_values: None, max_size: Some(140), added: 2615, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Account (r:0 w:1)
|
|
/// Proof: Nfts Account (max_values: None, max_size: Some(88), added: 2563, mode: MaxEncodedLen)
|
|
/// The range of component `n` is `[0, 10]`.
|
|
fn mint_pre_signed(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `596`
|
|
// Estimated: `16180 + n * (2921 ±0)`
|
|
// Minimum execution time: 124_967 nanoseconds.
|
|
Weight::from_parts(131_602_642, 0)
|
|
.saturating_add(Weight::from_parts(0, 16180))
|
|
// Standard Error: 36_480
|
|
.saturating_add(Weight::from_parts(25_811_394, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(6_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(n.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(6_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(n.into())))
|
|
.saturating_add(Weight::from_parts(0, 2921).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: Nfts Item (r:1 w:0)
|
|
/// Proof: Nfts Item (max_values: None, max_size: Some(861), added: 3336, mode: MaxEncodedLen)
|
|
/// Storage: Nfts ItemAttributesApprovalsOf (r:1 w:1)
|
|
/// Proof: Nfts ItemAttributesApprovalsOf (max_values: None, max_size: Some(681), added: 3156, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Collection (r:1 w:1)
|
|
/// Proof: Nfts Collection (max_values: None, max_size: Some(80), added: 2555, mode: MaxEncodedLen)
|
|
/// Storage: Nfts CollectionConfigOf (r:1 w:0)
|
|
/// Proof: Nfts CollectionConfigOf (max_values: None, max_size: Some(73), added: 2548, mode: MaxEncodedLen)
|
|
/// Storage: Nfts Attribute (r:10 w:10)
|
|
/// Proof: Nfts Attribute (max_values: None, max_size: Some(446), added: 2921, mode: MaxEncodedLen)
|
|
/// Storage: System Account (r:1 w:1)
|
|
/// Proof: System Account (max_values: None, max_size: Some(128), added: 2603, mode: MaxEncodedLen)
|
|
/// The range of component `n` is `[0, 10]`.
|
|
fn set_attributes_pre_signed(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `716`
|
|
// Estimated: `14198 + n * (2921 ±0)`
|
|
// Minimum execution time: 84_153 nanoseconds.
|
|
Weight::from_parts(96_401_623, 0)
|
|
.saturating_add(Weight::from_parts(0, 14198))
|
|
// Standard Error: 70_244
|
|
.saturating_add(Weight::from_parts(26_866_222, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(4_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(n.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(n.into())))
|
|
.saturating_add(Weight::from_parts(0, 2921).saturating_mul(n.into()))
|
|
}
|
|
}
|