mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 19:17:58 +00:00
3f92be2cc2
* contracts: Update to wasmi 0.31 * ".git/.scripts/commands/bench/bench.sh" --subcommand=pallet --runtime=dev --target_dir=substrate --pallet=pallet_contracts --------- Co-authored-by: command-bot <>
3923 lines
228 KiB
Rust
Generated
3923 lines
228 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_contracts`
|
|
//!
|
|
//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 4.0.0-dev
|
|
//! DATE: 2023-09-01, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]`
|
|
//! WORST CASE MAP SIZE: `1000000`
|
|
//! HOSTNAME: `runner-pzhd7p6z-project-674-concurrent-0`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz`
|
|
//! WASM-EXECUTION: `Compiled`, CHAIN: `Some("dev")`, DB CACHE: `1024`
|
|
|
|
// Executed Command:
|
|
// target/production/substrate-node
|
|
// benchmark
|
|
// pallet
|
|
// --steps=50
|
|
// --repeat=20
|
|
// --extrinsic=*
|
|
// --wasm-execution=compiled
|
|
// --heap-pages=4096
|
|
// --json-file=/builds/parity/mirrors/polkadot-sdk/.git/.artifacts/bench.json
|
|
// --pallet=pallet_contracts
|
|
// --chain=dev
|
|
// --header=./substrate/HEADER-APACHE2
|
|
// --output=./substrate/frame/contracts/src/weights.rs
|
|
// --template=./substrate/.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_contracts`.
|
|
pub trait WeightInfo {
|
|
fn on_process_deletion_queue_batch() -> Weight;
|
|
fn on_initialize_per_trie_key(k: u32, ) -> Weight;
|
|
fn v9_migration_step(c: u32, ) -> Weight;
|
|
fn v10_migration_step() -> Weight;
|
|
fn v11_migration_step(k: u32, ) -> Weight;
|
|
fn v12_migration_step(c: u32, ) -> Weight;
|
|
fn v13_migration_step() -> Weight;
|
|
fn v14_migration_step() -> Weight;
|
|
fn v15_migration_step() -> Weight;
|
|
fn migration_noop() -> Weight;
|
|
fn migrate() -> Weight;
|
|
fn on_runtime_upgrade_noop() -> Weight;
|
|
fn on_runtime_upgrade_in_progress() -> Weight;
|
|
fn on_runtime_upgrade() -> Weight;
|
|
fn call_with_code_per_byte(c: u32, ) -> Weight;
|
|
fn instantiate_with_code(c: u32, i: u32, s: u32, ) -> Weight;
|
|
fn instantiate(i: u32, s: u32, ) -> Weight;
|
|
fn call() -> Weight;
|
|
fn upload_code(c: u32, ) -> Weight;
|
|
fn remove_code() -> Weight;
|
|
fn set_code() -> Weight;
|
|
fn seal_caller(r: u32, ) -> Weight;
|
|
fn seal_is_contract(r: u32, ) -> Weight;
|
|
fn seal_code_hash(r: u32, ) -> Weight;
|
|
fn seal_own_code_hash(r: u32, ) -> Weight;
|
|
fn seal_caller_is_origin(r: u32, ) -> Weight;
|
|
fn seal_caller_is_root(r: u32, ) -> Weight;
|
|
fn seal_address(r: u32, ) -> Weight;
|
|
fn seal_gas_left(r: u32, ) -> Weight;
|
|
fn seal_balance(r: u32, ) -> Weight;
|
|
fn seal_value_transferred(r: u32, ) -> Weight;
|
|
fn seal_minimum_balance(r: u32, ) -> Weight;
|
|
fn seal_block_number(r: u32, ) -> Weight;
|
|
fn seal_now(r: u32, ) -> Weight;
|
|
fn seal_weight_to_fee(r: u32, ) -> Weight;
|
|
fn seal_input(r: u32, ) -> Weight;
|
|
fn seal_input_per_byte(n: u32, ) -> Weight;
|
|
fn seal_return(r: u32, ) -> Weight;
|
|
fn seal_return_per_byte(n: u32, ) -> Weight;
|
|
fn seal_terminate(r: u32, ) -> Weight;
|
|
fn seal_random(r: u32, ) -> Weight;
|
|
fn seal_deposit_event(r: u32, ) -> Weight;
|
|
fn seal_deposit_event_per_topic_and_byte(t: u32, n: u32, ) -> Weight;
|
|
fn seal_debug_message(r: u32, ) -> Weight;
|
|
fn seal_debug_message_per_byte(i: u32, ) -> Weight;
|
|
fn seal_set_storage(r: u32, ) -> Weight;
|
|
fn seal_set_storage_per_new_byte(n: u32, ) -> Weight;
|
|
fn seal_set_storage_per_old_byte(n: u32, ) -> Weight;
|
|
fn seal_clear_storage(r: u32, ) -> Weight;
|
|
fn seal_clear_storage_per_byte(n: u32, ) -> Weight;
|
|
fn seal_get_storage(r: u32, ) -> Weight;
|
|
fn seal_get_storage_per_byte(n: u32, ) -> Weight;
|
|
fn seal_contains_storage(r: u32, ) -> Weight;
|
|
fn seal_contains_storage_per_byte(n: u32, ) -> Weight;
|
|
fn seal_take_storage(r: u32, ) -> Weight;
|
|
fn seal_take_storage_per_byte(n: u32, ) -> Weight;
|
|
fn seal_transfer(r: u32, ) -> Weight;
|
|
fn seal_call(r: u32, ) -> Weight;
|
|
fn seal_delegate_call(r: u32, ) -> Weight;
|
|
fn seal_call_per_transfer_clone_byte(t: u32, c: u32, ) -> Weight;
|
|
fn seal_instantiate(r: u32, ) -> Weight;
|
|
fn seal_instantiate_per_transfer_input_salt_byte(t: u32, i: u32, s: u32, ) -> Weight;
|
|
fn seal_hash_sha2_256(r: u32, ) -> Weight;
|
|
fn seal_hash_sha2_256_per_byte(n: u32, ) -> Weight;
|
|
fn seal_hash_keccak_256(r: u32, ) -> Weight;
|
|
fn seal_hash_keccak_256_per_byte(n: u32, ) -> Weight;
|
|
fn seal_hash_blake2_256(r: u32, ) -> Weight;
|
|
fn seal_hash_blake2_256_per_byte(n: u32, ) -> Weight;
|
|
fn seal_hash_blake2_128(r: u32, ) -> Weight;
|
|
fn seal_hash_blake2_128_per_byte(n: u32, ) -> Weight;
|
|
fn seal_sr25519_verify_per_byte(n: u32, ) -> Weight;
|
|
fn seal_sr25519_verify(r: u32, ) -> Weight;
|
|
fn seal_ecdsa_recover(r: u32, ) -> Weight;
|
|
fn seal_ecdsa_to_eth_address(r: u32, ) -> Weight;
|
|
fn seal_set_code_hash(r: u32, ) -> Weight;
|
|
fn add_delegate_dependency(r: u32, ) -> Weight;
|
|
fn remove_delegate_dependency(r: u32, ) -> Weight;
|
|
fn seal_reentrance_count(r: u32, ) -> Weight;
|
|
fn seal_account_reentrance_count(r: u32, ) -> Weight;
|
|
fn seal_instantiation_nonce(r: u32, ) -> Weight;
|
|
fn instr_i64const(r: u32, ) -> Weight;
|
|
}
|
|
|
|
/// Weights for `pallet_contracts` using the Substrate node and recommended hardware.
|
|
pub struct SubstrateWeight<T>(PhantomData<T>);
|
|
impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
|
|
/// Storage: `Contracts::DeletionQueueCounter` (r:1 w:0)
|
|
/// Proof: `Contracts::DeletionQueueCounter` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
fn on_process_deletion_queue_batch() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `142`
|
|
// Estimated: `1627`
|
|
// Minimum execution time: 2_548_000 picoseconds.
|
|
Weight::from_parts(2_670_000, 1627)
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `k` is `[0, 1024]`.
|
|
fn on_initialize_per_trie_key(k: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `451 + k * (69 ±0)`
|
|
// Estimated: `441 + k * (70 ±0)`
|
|
// Minimum execution time: 13_526_000 picoseconds.
|
|
Weight::from_parts(13_902_000, 441)
|
|
// Standard Error: 1_058
|
|
.saturating_add(Weight::from_parts(1_274_724, 0).saturating_mul(k.into()))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(k.into())))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(k.into())))
|
|
.saturating_add(Weight::from_parts(0, 70).saturating_mul(k.into()))
|
|
}
|
|
/// Storage: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc553022fca90611ba8b7942f8bdb3b97f6580` (r:2 w:1)
|
|
/// Proof: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc553022fca90611ba8b7942f8bdb3b97f6580` (r:2 w:1)
|
|
/// The range of component `c` is `[0, 125952]`.
|
|
fn v9_migration_step(c: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `211 + c * (1 ±0)`
|
|
// Estimated: `6149 + c * (1 ±0)`
|
|
// Minimum execution time: 8_426_000 picoseconds.
|
|
Weight::from_parts(8_591_621, 6149)
|
|
// Standard Error: 1
|
|
.saturating_add(Weight::from_parts(1_203, 0).saturating_mul(c.into()))
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(c.into()))
|
|
}
|
|
/// Storage: `Contracts::ContractInfoOf` (r:2 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
fn v10_migration_step() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `510`
|
|
// Estimated: `6450`
|
|
// Minimum execution time: 17_008_000 picoseconds.
|
|
Weight::from_parts(17_742_000, 6450)
|
|
.saturating_add(T::DbWeight::get().reads(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Contracts::DeletionQueue` (r:1 w:1025)
|
|
/// Proof: `Contracts::DeletionQueue` (`max_values`: None, `max_size`: Some(142), added: 2617, mode: `Measured`)
|
|
/// Storage: `Contracts::DeletionQueueCounter` (r:0 w:1)
|
|
/// Proof: `Contracts::DeletionQueueCounter` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// The range of component `k` is `[0, 1024]`.
|
|
fn v11_migration_step(k: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `171 + k * (1 ±0)`
|
|
// Estimated: `3635 + k * (1 ±0)`
|
|
// Minimum execution time: 3_949_000 picoseconds.
|
|
Weight::from_parts(4_062_000, 3635)
|
|
// Standard Error: 1_983
|
|
.saturating_add(Weight::from_parts(1_173_197, 0).saturating_mul(k.into()))
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(k.into())))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(k.into()))
|
|
}
|
|
/// Storage: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc553053f13fd319a03c211337c76e0fe776df` (r:2 w:0)
|
|
/// Proof: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc553053f13fd319a03c211337c76e0fe776df` (r:2 w:0)
|
|
/// Storage: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc553022fca90611ba8b7942f8bdb3b97f6580` (r:1 w:1)
|
|
/// Proof: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc553022fca90611ba8b7942f8bdb3b97f6580` (r:1 w:1)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:0 w:1)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// The range of component `c` is `[0, 125952]`.
|
|
fn v12_migration_step(c: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `325 + c * (1 ±0)`
|
|
// Estimated: `6263 + c * (1 ±0)`
|
|
// Minimum execution time: 17_094_000 picoseconds.
|
|
Weight::from_parts(17_338_591, 6263)
|
|
// Standard Error: 1
|
|
.saturating_add(Weight::from_parts(436, 0).saturating_mul(c.into()))
|
|
.saturating_add(T::DbWeight::get().reads(4_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(c.into()))
|
|
}
|
|
/// Storage: `Contracts::ContractInfoOf` (r:2 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
fn v13_migration_step() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `440`
|
|
// Estimated: `6380`
|
|
// Minimum execution time: 12_704_000 picoseconds.
|
|
Weight::from_parts(13_147_000, 6380)
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Contracts::CodeInfoOf` (r:2 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:1)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Balances::Holds` (r:1 w:0)
|
|
/// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `Measured`)
|
|
fn v14_migration_step() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `360`
|
|
// Estimated: `6300`
|
|
// Minimum execution time: 48_387_000 picoseconds.
|
|
Weight::from_parts(50_024_000, 6300)
|
|
.saturating_add(T::DbWeight::get().reads(4_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Contracts::ContractInfoOf` (r:2 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:2 w:1)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
fn v15_migration_step() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `594`
|
|
// Estimated: `6534`
|
|
// Minimum execution time: 59_300_000 picoseconds.
|
|
Weight::from_parts(61_805_000, 6534)
|
|
.saturating_add(T::DbWeight::get().reads(4_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:1)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
fn migration_noop() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `142`
|
|
// Estimated: `1627`
|
|
// Minimum execution time: 3_327_000 picoseconds.
|
|
Weight::from_parts(3_502_000, 1627)
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:1)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:1)
|
|
/// Proof: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:1)
|
|
fn migrate() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `166`
|
|
// Estimated: `3631`
|
|
// Minimum execution time: 12_759_000 picoseconds.
|
|
Weight::from_parts(13_134_000, 3631)
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:0)
|
|
/// Proof: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:0)
|
|
fn on_runtime_upgrade_noop() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `142`
|
|
// Estimated: `3607`
|
|
// Minimum execution time: 4_775_000 picoseconds.
|
|
Weight::from_parts(5_084_000, 3607)
|
|
.saturating_add(T::DbWeight::get().reads(1_u64))
|
|
}
|
|
/// Storage: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:0)
|
|
/// Proof: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:0)
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
fn on_runtime_upgrade_in_progress() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `167`
|
|
// Estimated: `3632`
|
|
// Minimum execution time: 6_663_000 picoseconds.
|
|
Weight::from_parts(6_855_000, 3632)
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
}
|
|
/// Storage: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:0)
|
|
/// Proof: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:0)
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:1)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
fn on_runtime_upgrade() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `142`
|
|
// Estimated: `3607`
|
|
// Minimum execution time: 7_212_000 picoseconds.
|
|
Weight::from_parts(7_426_000, 3607)
|
|
.saturating_add(T::DbWeight::get().reads(2_u64))
|
|
.saturating_add(T::DbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:1)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `c` is `[0, 125952]`.
|
|
fn call_with_code_per_byte(c: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `792`
|
|
// Estimated: `6743 + c * (1 ±0)`
|
|
// Minimum execution time: 289_557_000 picoseconds.
|
|
Weight::from_parts(272_895_652, 6743)
|
|
// Standard Error: 80
|
|
.saturating_add(Weight::from_parts(39_917, 0).saturating_mul(c.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(4_u64))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(c.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Balances::Holds` (r:2 w:2)
|
|
/// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:3 w:3)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Contracts::Nonce` (r:1 w:1)
|
|
/// Proof: `Contracts::Nonce` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:1)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:0 w:1)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// The range of component `c` is `[0, 125952]`.
|
|
/// The range of component `i` is `[0, 1048576]`.
|
|
/// The range of component `s` is `[0, 1048576]`.
|
|
fn instantiate_with_code(c: u32, i: u32, s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `323`
|
|
// Estimated: `8747`
|
|
// Minimum execution time: 4_671_359_000 picoseconds.
|
|
Weight::from_parts(586_523_882, 8747)
|
|
// Standard Error: 206
|
|
.saturating_add(Weight::from_parts(115_402, 0).saturating_mul(c.into()))
|
|
// Standard Error: 24
|
|
.saturating_add(Weight::from_parts(1_797, 0).saturating_mul(i.into()))
|
|
// Standard Error: 24
|
|
.saturating_add(Weight::from_parts(2_046, 0).saturating_mul(s.into()))
|
|
.saturating_add(T::DbWeight::get().reads(11_u64))
|
|
.saturating_add(T::DbWeight::get().writes(10_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Contracts::Nonce` (r:1 w:1)
|
|
/// Proof: `Contracts::Nonce` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:1)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Balances::Holds` (r:1 w:1)
|
|
/// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `Measured`)
|
|
/// The range of component `i` is `[0, 1048576]`.
|
|
/// The range of component `s` is `[0, 1048576]`.
|
|
fn instantiate(i: u32, s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `560`
|
|
// Estimated: `6504`
|
|
// Minimum execution time: 2_170_657_000 picoseconds.
|
|
Weight::from_parts(369_331_405, 6504)
|
|
// Standard Error: 7
|
|
.saturating_add(Weight::from_parts(1_940, 0).saturating_mul(i.into()))
|
|
// Standard Error: 7
|
|
.saturating_add(Weight::from_parts(1_858, 0).saturating_mul(s.into()))
|
|
.saturating_add(T::DbWeight::get().reads(10_u64))
|
|
.saturating_add(T::DbWeight::get().writes(7_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:1)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
fn call() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `826`
|
|
// Estimated: `6766`
|
|
// Minimum execution time: 204_287_000 picoseconds.
|
|
Weight::from_parts(213_239_000, 6766)
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(4_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Balances::Holds` (r:1 w:1)
|
|
/// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:1 w:1)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:0 w:1)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// The range of component `c` is `[0, 125952]`.
|
|
fn upload_code(c: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `142`
|
|
// Estimated: `3607`
|
|
// Minimum execution time: 285_434_000 picoseconds.
|
|
Weight::from_parts(242_697_648, 3607)
|
|
// Standard Error: 128
|
|
.saturating_add(Weight::from_parts(76_087, 0).saturating_mul(c.into()))
|
|
.saturating_add(T::DbWeight::get().reads(4_u64))
|
|
.saturating_add(T::DbWeight::get().writes(4_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Balances::Holds` (r:1 w:1)
|
|
/// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:1 w:1)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:0 w:1)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
fn remove_code() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `315`
|
|
// Estimated: `3780`
|
|
// Minimum execution time: 46_486_000 picoseconds.
|
|
Weight::from_parts(48_422_000, 3780)
|
|
.saturating_add(T::DbWeight::get().reads(4_u64))
|
|
.saturating_add(T::DbWeight::get().writes(4_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:2 w:2)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:3 w:3)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
fn set_code() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `552`
|
|
// Estimated: `8967`
|
|
// Minimum execution time: 37_568_000 picoseconds.
|
|
Weight::from_parts(38_589_000, 8967)
|
|
.saturating_add(T::DbWeight::get().reads(7_u64))
|
|
.saturating_add(T::DbWeight::get().writes(6_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_caller(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `866 + r * (6 ±0)`
|
|
// Estimated: `6806 + r * (6 ±0)`
|
|
// Minimum execution time: 274_513_000 picoseconds.
|
|
Weight::from_parts(288_793_403, 6806)
|
|
// Standard Error: 650
|
|
.saturating_add(Weight::from_parts(339_309, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1601 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_is_contract(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `922 + r * (209 ±0)`
|
|
// Estimated: `6826 + r * (2684 ±0)`
|
|
// Minimum execution time: 260_096_000 picoseconds.
|
|
Weight::from_parts(149_954_322, 6826)
|
|
// Standard Error: 5_713
|
|
.saturating_add(Weight::from_parts(3_788_924, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 2684).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1601 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_code_hash(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `921 + r * (213 ±0)`
|
|
// Estimated: `6830 + r * (2688 ±0)`
|
|
// Minimum execution time: 277_496_000 picoseconds.
|
|
Weight::from_parts(285_839_000, 6830)
|
|
// Standard Error: 10_076
|
|
.saturating_add(Weight::from_parts(4_720_110, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 2688).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_own_code_hash(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `873 + r * (6 ±0)`
|
|
// Estimated: `6815 + r * (6 ±0)`
|
|
// Minimum execution time: 275_655_000 picoseconds.
|
|
Weight::from_parts(291_386_528, 6815)
|
|
// Standard Error: 898
|
|
.saturating_add(Weight::from_parts(428_765, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_caller_is_origin(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `863 + r * (3 ±0)`
|
|
// Estimated: `6804 + r * (3 ±0)`
|
|
// Minimum execution time: 260_323_000 picoseconds.
|
|
Weight::from_parts(286_371_403, 6804)
|
|
// Standard Error: 451
|
|
.saturating_add(Weight::from_parts(183_053, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_caller_is_root(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `753 + r * (3 ±0)`
|
|
// Estimated: `6693 + r * (3 ±0)`
|
|
// Minimum execution time: 262_974_000 picoseconds.
|
|
Weight::from_parts(276_571_502, 6693)
|
|
// Standard Error: 527
|
|
.saturating_add(Weight::from_parts(165_364, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(7_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_address(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `867 + r * (6 ±0)`
|
|
// Estimated: `6807 + r * (6 ±0)`
|
|
// Minimum execution time: 272_826_000 picoseconds.
|
|
Weight::from_parts(290_963_001, 6807)
|
|
// Standard Error: 810
|
|
.saturating_add(Weight::from_parts(343_762, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_gas_left(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `863 + r * (6 ±0)`
|
|
// Estimated: `6806 + r * (6 ±0)`
|
|
// Minimum execution time: 277_324_000 picoseconds.
|
|
Weight::from_parts(290_872_814, 6806)
|
|
// Standard Error: 766
|
|
.saturating_add(Weight::from_parts(371_542, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:2 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_balance(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1007 + r * (6 ±0)`
|
|
// Estimated: `6931 + r * (6 ±0)`
|
|
// Minimum execution time: 274_460_000 picoseconds.
|
|
Weight::from_parts(285_748_025, 6931)
|
|
// Standard Error: 1_570
|
|
.saturating_add(Weight::from_parts(1_656_237, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(9_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_value_transferred(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `877 + r * (6 ±0)`
|
|
// Estimated: `6823 + r * (6 ±0)`
|
|
// Minimum execution time: 278_254_000 picoseconds.
|
|
Weight::from_parts(283_893_525, 6823)
|
|
// Standard Error: 726
|
|
.saturating_add(Weight::from_parts(347_368, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_minimum_balance(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `875 + r * (6 ±0)`
|
|
// Estimated: `6816 + r * (6 ±0)`
|
|
// Minimum execution time: 279_646_000 picoseconds.
|
|
Weight::from_parts(292_505_446, 6816)
|
|
// Standard Error: 867
|
|
.saturating_add(Weight::from_parts(337_202, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_block_number(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `872 + r * (6 ±0)`
|
|
// Estimated: `6819 + r * (6 ±0)`
|
|
// Minimum execution time: 274_522_000 picoseconds.
|
|
Weight::from_parts(295_135_659, 6819)
|
|
// Standard Error: 1_052
|
|
.saturating_add(Weight::from_parts(330_788, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_now(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `863 + r * (6 ±0)`
|
|
// Estimated: `6804 + r * (6 ±0)`
|
|
// Minimum execution time: 274_228_000 picoseconds.
|
|
Weight::from_parts(289_201_593, 6804)
|
|
// Standard Error: 752
|
|
.saturating_add(Weight::from_parts(337_860, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `TransactionPayment::NextFeeMultiplier` (r:1 w:0)
|
|
/// Proof: `TransactionPayment::NextFeeMultiplier` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_weight_to_fee(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `937 + r * (14 ±0)`
|
|
// Estimated: `6872 + r * (14 ±0)`
|
|
// Minimum execution time: 277_142_000 picoseconds.
|
|
Weight::from_parts(296_736_114, 6872)
|
|
// Standard Error: 1_502
|
|
.saturating_add(Weight::from_parts(1_446_663, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(9_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 14).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_input(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `865 + r * (6 ±0)`
|
|
// Estimated: `6807 + r * (6 ±0)`
|
|
// Minimum execution time: 276_087_000 picoseconds.
|
|
Weight::from_parts(287_863_377, 6807)
|
|
// Standard Error: 495
|
|
.saturating_add(Weight::from_parts(282_718, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 1048576]`.
|
|
fn seal_input_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `869`
|
|
// Estimated: `6809`
|
|
// Minimum execution time: 277_128_000 picoseconds.
|
|
Weight::from_parts(234_478_674, 6809)
|
|
// Standard Error: 23
|
|
.saturating_add(Weight::from_parts(1_052, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1]`.
|
|
fn seal_return(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `853 + r * (45 ±0)`
|
|
// Estimated: `6793 + r * (45 ±0)`
|
|
// Minimum execution time: 251_983_000 picoseconds.
|
|
Weight::from_parts(277_986_885, 6793)
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 45).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 1048576]`.
|
|
fn seal_return_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `863`
|
|
// Estimated: `6810`
|
|
// Minimum execution time: 275_108_000 picoseconds.
|
|
Weight::from_parts(284_552_708, 6810)
|
|
// Standard Error: 0
|
|
.saturating_add(Weight::from_parts(391, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:3 w:3)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:2 w:2)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `Contracts::DeletionQueueCounter` (r:1 w:1)
|
|
/// Proof: `Contracts::DeletionQueueCounter` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:4 w:4)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Balances::Holds` (r:1 w:1)
|
|
/// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `Measured`)
|
|
/// Storage: `Contracts::DeletionQueue` (r:0 w:1)
|
|
/// Proof: `Contracts::DeletionQueue` (`max_values`: None, `max_size`: Some(142), added: 2617, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1]`.
|
|
fn seal_terminate(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `2972 + r * (316 ±0)`
|
|
// Estimated: `8912 + r * (5266 ±0)`
|
|
// Minimum execution time: 281_278_000 picoseconds.
|
|
Weight::from_parts(306_800_667, 8912)
|
|
// Standard Error: 855_257
|
|
.saturating_add(Weight::from_parts(126_508_132, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().reads((7_u64).saturating_mul(r.into())))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes((10_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 5266).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `RandomnessCollectiveFlip::RandomMaterial` (r:1 w:0)
|
|
/// Proof: `RandomnessCollectiveFlip::RandomMaterial` (`max_values`: Some(1), `max_size`: Some(2594), added: 3089, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_random(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `944 + r * (10 ±0)`
|
|
// Estimated: `6885 + r * (10 ±0)`
|
|
// Minimum execution time: 260_609_000 picoseconds.
|
|
Weight::from_parts(287_385_076, 6885)
|
|
// Standard Error: 2_754
|
|
.saturating_add(Weight::from_parts(2_057_388, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(9_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 10).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_deposit_event(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `863 + r * (10 ±0)`
|
|
// Estimated: `6805 + r * (10 ±0)`
|
|
// Minimum execution time: 254_770_000 picoseconds.
|
|
Weight::from_parts(255_105_647, 6805)
|
|
// Standard Error: 5_707
|
|
.saturating_add(Weight::from_parts(3_808_788, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 10).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:6 w:6)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `t` is `[0, 4]`.
|
|
/// The range of component `n` is `[0, 16384]`.
|
|
fn seal_deposit_event_per_topic_and_byte(t: u32, n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `880 + t * (32 ±0)`
|
|
// Estimated: `6825 + t * (2508 ±0)`
|
|
// Minimum execution time: 278_200_000 picoseconds.
|
|
Weight::from_parts(288_081_493, 6825)
|
|
// Standard Error: 97_535
|
|
.saturating_add(Weight::from_parts(3_683_455, 0).saturating_mul(t.into()))
|
|
// Standard Error: 27
|
|
.saturating_add(Weight::from_parts(731, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(t.into())))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(t.into())))
|
|
.saturating_add(Weight::from_parts(0, 2508).saturating_mul(t.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_debug_message(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `862 + r * (7 ±0)`
|
|
// Estimated: `6807 + r * (7 ±0)`
|
|
// Minimum execution time: 167_181_000 picoseconds.
|
|
Weight::from_parts(178_433_475, 6807)
|
|
// Standard Error: 374
|
|
.saturating_add(Weight::from_parts(241_240, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 7).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `MaxEncodedLen`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `MaxEncodedLen`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `MaxEncodedLen`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `i` is `[0, 1048576]`.
|
|
fn seal_debug_message_per_byte(i: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `125813`
|
|
// Estimated: `131755`
|
|
// Minimum execution time: 434_456_000 picoseconds.
|
|
Weight::from_parts(400_940_450, 131755)
|
|
// Standard Error: 13
|
|
.saturating_add(Weight::from_parts(1_102, 0).saturating_mul(i.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 800]`.
|
|
fn seal_set_storage(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `924 + r * (292 ±0)`
|
|
// Estimated: `925 + r * (293 ±0)`
|
|
// Minimum execution time: 277_825_000 picoseconds.
|
|
Weight::from_parts(159_688_263, 925)
|
|
// Standard Error: 13_610
|
|
.saturating_add(Weight::from_parts(7_145_641, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 293).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 16384]`.
|
|
fn seal_set_storage_per_new_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1446`
|
|
// Estimated: `1429`
|
|
// Minimum execution time: 284_745_000 picoseconds.
|
|
Weight::from_parts(345_928_316, 1429)
|
|
// Standard Error: 70
|
|
.saturating_add(Weight::from_parts(547, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(12_u64))
|
|
.saturating_add(T::DbWeight::get().writes(8_u64))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 16384]`.
|
|
fn seal_set_storage_per_old_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1252 + n * (1 ±0)`
|
|
// Estimated: `1252 + n * (1 ±0)`
|
|
// Minimum execution time: 275_328_000 picoseconds.
|
|
Weight::from_parts(300_037_010, 1252)
|
|
// Standard Error: 32
|
|
.saturating_add(Weight::from_parts(558, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(9_u64))
|
|
.saturating_add(T::DbWeight::get().writes(4_u64))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 800]`.
|
|
fn seal_clear_storage(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `920 + r * (288 ±0)`
|
|
// Estimated: `926 + r * (289 ±0)`
|
|
// Minimum execution time: 273_742_000 picoseconds.
|
|
Weight::from_parts(169_430_806, 926)
|
|
// Standard Error: 11_821
|
|
.saturating_add(Weight::from_parts(6_927_074, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 289).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 16384]`.
|
|
fn seal_clear_storage_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1248 + n * (1 ±0)`
|
|
// Estimated: `1248 + n * (1 ±0)`
|
|
// Minimum execution time: 275_167_000 picoseconds.
|
|
Weight::from_parts(301_883_655, 1248)
|
|
// Standard Error: 35
|
|
.saturating_add(Weight::from_parts(4, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(9_u64))
|
|
.saturating_add(T::DbWeight::get().writes(4_u64))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 800]`.
|
|
fn seal_get_storage(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `920 + r * (296 ±0)`
|
|
// Estimated: `922 + r * (297 ±0)`
|
|
// Minimum execution time: 274_628_000 picoseconds.
|
|
Weight::from_parts(195_255_092, 922)
|
|
// Standard Error: 9_109
|
|
.saturating_add(Weight::from_parts(5_707_060, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 297).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 16384]`.
|
|
fn seal_get_storage_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1264 + n * (1 ±0)`
|
|
// Estimated: `1264 + n * (1 ±0)`
|
|
// Minimum execution time: 274_202_000 picoseconds.
|
|
Weight::from_parts(296_440_752, 1264)
|
|
// Standard Error: 38
|
|
.saturating_add(Weight::from_parts(1_010, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(9_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 800]`.
|
|
fn seal_contains_storage(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `931 + r * (288 ±0)`
|
|
// Estimated: `928 + r * (289 ±0)`
|
|
// Minimum execution time: 274_123_000 picoseconds.
|
|
Weight::from_parts(193_280_535, 928)
|
|
// Standard Error: 9_264
|
|
.saturating_add(Weight::from_parts(5_548_039, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 289).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 16384]`.
|
|
fn seal_contains_storage_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1251 + n * (1 ±0)`
|
|
// Estimated: `1251 + n * (1 ±0)`
|
|
// Minimum execution time: 276_425_000 picoseconds.
|
|
Weight::from_parts(300_521_806, 1251)
|
|
// Standard Error: 36
|
|
.saturating_add(Weight::from_parts(83, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(9_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 800]`.
|
|
fn seal_take_storage(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `913 + r * (296 ±0)`
|
|
// Estimated: `918 + r * (297 ±0)`
|
|
// Minimum execution time: 264_860_000 picoseconds.
|
|
Weight::from_parts(191_561_777, 918)
|
|
// Standard Error: 10_678
|
|
.saturating_add(Weight::from_parts(6_895_457, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 297).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 16384]`.
|
|
fn seal_take_storage_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1265 + n * (1 ±0)`
|
|
// Estimated: `1265 + n * (1 ±0)`
|
|
// Minimum execution time: 282_501_000 picoseconds.
|
|
Weight::from_parts(303_351_919, 1265)
|
|
// Standard Error: 37
|
|
.saturating_add(Weight::from_parts(643, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(9_u64))
|
|
.saturating_add(T::DbWeight::get().writes(4_u64))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1602 w:1601)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_transfer(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1415 + r * (45 ±0)`
|
|
// Estimated: `7307 + r * (2520 ±0)`
|
|
// Minimum execution time: 273_198_000 picoseconds.
|
|
Weight::from_parts(179_673_238, 7307)
|
|
// Standard Error: 34_990
|
|
.saturating_add(Weight::from_parts(38_468_091, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(9_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(T::DbWeight::get().writes(4_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 2520).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:801 w:801)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:2 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:2 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:803 w:803)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 800]`.
|
|
fn seal_call(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1260 + r * (245 ±0)`
|
|
// Estimated: `9440 + r * (2721 ±0)`
|
|
// Minimum execution time: 283_869_000 picoseconds.
|
|
Weight::from_parts(288_374_000, 9440)
|
|
// Standard Error: 137_512
|
|
.saturating_add(Weight::from_parts(248_206_665, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(11_u64))
|
|
.saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(r.into())))
|
|
.saturating_add(T::DbWeight::get().writes(4_u64))
|
|
.saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 2721).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:736 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:736 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:737 w:737)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 800]`.
|
|
fn seal_delegate_call(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0 + r * (576 ±0)`
|
|
// Estimated: `6812 + r * (2637 ±3)`
|
|
// Minimum execution time: 257_577_000 picoseconds.
|
|
Weight::from_parts(277_310_000, 6812)
|
|
// Standard Error: 150_204
|
|
.saturating_add(Weight::from_parts(249_943_483, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(r.into())))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 2637).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:3 w:2)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:2 w:2)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:2 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:2 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:4 w:4)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `t` is `[0, 1]`.
|
|
/// The range of component `c` is `[0, 1048576]`.
|
|
fn seal_call_per_transfer_clone_byte(t: u32, c: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1307 + t * (277 ±0)`
|
|
// Estimated: `12197 + t * (5227 ±0)`
|
|
// Minimum execution time: 471_081_000 picoseconds.
|
|
Weight::from_parts(79_081_122, 12197)
|
|
// Standard Error: 11_777_790
|
|
.saturating_add(Weight::from_parts(357_425_411, 0).saturating_mul(t.into()))
|
|
// Standard Error: 17
|
|
.saturating_add(Weight::from_parts(1_111, 0).saturating_mul(c.into()))
|
|
.saturating_add(T::DbWeight::get().reads(13_u64))
|
|
.saturating_add(T::DbWeight::get().reads((2_u64).saturating_mul(t.into())))
|
|
.saturating_add(T::DbWeight::get().writes(6_u64))
|
|
.saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(t.into())))
|
|
.saturating_add(Weight::from_parts(0, 5227).saturating_mul(t.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:802 w:802)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:801 w:801)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:801 w:800)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:801 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `Contracts::Nonce` (r:1 w:1)
|
|
/// Proof: `Contracts::Nonce` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:803 w:803)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Balances::Holds` (r:800 w:800)
|
|
/// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `Measured`)
|
|
/// The range of component `r` is `[1, 800]`.
|
|
fn seal_instantiate(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1278 + r * (255 ±0)`
|
|
// Estimated: `9620 + r * (2731 ±0)`
|
|
// Minimum execution time: 672_742_000 picoseconds.
|
|
Weight::from_parts(680_025_000, 9620)
|
|
// Standard Error: 313_642
|
|
.saturating_add(Weight::from_parts(388_311_259, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(11_u64))
|
|
.saturating_add(T::DbWeight::get().reads((6_u64).saturating_mul(r.into())))
|
|
.saturating_add(T::DbWeight::get().writes(7_u64))
|
|
.saturating_add(T::DbWeight::get().writes((5_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 2731).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:3 w:3)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:2 w:2)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:2 w:1)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:2 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `Contracts::Nonce` (r:1 w:1)
|
|
/// Proof: `Contracts::Nonce` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:4 w:4)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Balances::Holds` (r:1 w:1)
|
|
/// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `Measured`)
|
|
/// The range of component `t` is `[0, 1]`.
|
|
/// The range of component `i` is `[0, 983040]`.
|
|
/// The range of component `s` is `[0, 983040]`.
|
|
fn seal_instantiate_per_transfer_input_salt_byte(t: u32, i: u32, s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1303 + t * (104 ±0)`
|
|
// Estimated: `12211 + t * (2549 ±1)`
|
|
// Minimum execution time: 2_733_870_000 picoseconds.
|
|
Weight::from_parts(1_001_793_458, 12211)
|
|
// Standard Error: 12
|
|
.saturating_add(Weight::from_parts(1_963, 0).saturating_mul(i.into()))
|
|
// Standard Error: 12
|
|
.saturating_add(Weight::from_parts(2_060, 0).saturating_mul(s.into()))
|
|
.saturating_add(T::DbWeight::get().reads(16_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(t.into())))
|
|
.saturating_add(T::DbWeight::get().writes(11_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(t.into())))
|
|
.saturating_add(Weight::from_parts(0, 2549).saturating_mul(t.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_hash_sha2_256(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `862 + r * (8 ±0)`
|
|
// Estimated: `6801 + r * (8 ±0)`
|
|
// Minimum execution time: 272_658_000 picoseconds.
|
|
Weight::from_parts(282_717_645, 6801)
|
|
// Standard Error: 517
|
|
.saturating_add(Weight::from_parts(400_604, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 1048576]`.
|
|
fn seal_hash_sha2_256_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `870`
|
|
// Estimated: `6808`
|
|
// Minimum execution time: 260_969_000 picoseconds.
|
|
Weight::from_parts(265_206_847, 6808)
|
|
// Standard Error: 2
|
|
.saturating_add(Weight::from_parts(1_134, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_hash_keccak_256(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `864 + r * (8 ±0)`
|
|
// Estimated: `6806 + r * (8 ±0)`
|
|
// Minimum execution time: 262_351_000 picoseconds.
|
|
Weight::from_parts(286_974_296, 6806)
|
|
// Standard Error: 514
|
|
.saturating_add(Weight::from_parts(802_363, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 1048576]`.
|
|
fn seal_hash_keccak_256_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `872`
|
|
// Estimated: `6814`
|
|
// Minimum execution time: 276_907_000 picoseconds.
|
|
Weight::from_parts(277_928_418, 6814)
|
|
// Standard Error: 1
|
|
.saturating_add(Weight::from_parts(3_410, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_hash_blake2_256(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `864 + r * (8 ±0)`
|
|
// Estimated: `6808 + r * (8 ±0)`
|
|
// Minimum execution time: 263_660_000 picoseconds.
|
|
Weight::from_parts(285_665_916, 6808)
|
|
// Standard Error: 527
|
|
.saturating_add(Weight::from_parts(480_457, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 1048576]`.
|
|
fn seal_hash_blake2_256_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `872`
|
|
// Estimated: `6813`
|
|
// Minimum execution time: 262_071_000 picoseconds.
|
|
Weight::from_parts(270_115_341, 6813)
|
|
// Standard Error: 1
|
|
.saturating_add(Weight::from_parts(1_254, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_hash_blake2_128(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `864 + r * (8 ±0)`
|
|
// Estimated: `6805 + r * (8 ±0)`
|
|
// Minimum execution time: 265_568_000 picoseconds.
|
|
Weight::from_parts(285_791_811, 6805)
|
|
// Standard Error: 559
|
|
.saturating_add(Weight::from_parts(505_330, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 1048576]`.
|
|
fn seal_hash_blake2_128_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `872`
|
|
// Estimated: `6811`
|
|
// Minimum execution time: 271_336_000 picoseconds.
|
|
Weight::from_parts(272_829_313, 6811)
|
|
// Standard Error: 0
|
|
.saturating_add(Weight::from_parts(1_252, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 125697]`.
|
|
fn seal_sr25519_verify_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `997 + n * (1 ±0)`
|
|
// Estimated: `6934 + n * (1 ±0)`
|
|
// Minimum execution time: 351_146_000 picoseconds.
|
|
Weight::from_parts(355_368_323, 6934)
|
|
// Standard Error: 14
|
|
.saturating_add(Weight::from_parts(6_155, 0).saturating_mul(n.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 160]`.
|
|
fn seal_sr25519_verify(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `807 + r * (112 ±0)`
|
|
// Estimated: `6748 + r * (112 ±0)`
|
|
// Minimum execution time: 277_250_000 picoseconds.
|
|
Weight::from_parts(346_490_114, 6748)
|
|
// Standard Error: 14_654
|
|
.saturating_add(Weight::from_parts(56_127_492, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 112).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 160]`.
|
|
fn seal_ecdsa_recover(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `907 + r * (76 ±0)`
|
|
// Estimated: `6801 + r * (77 ±0)`
|
|
// Minimum execution time: 272_697_000 picoseconds.
|
|
Weight::from_parts(345_385_667, 6801)
|
|
// Standard Error: 14_226
|
|
.saturating_add(Weight::from_parts(46_037_637, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 77).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 160]`.
|
|
fn seal_ecdsa_to_eth_address(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `877 + r * (42 ±0)`
|
|
// Estimated: `6816 + r * (42 ±0)`
|
|
// Minimum execution time: 271_800_000 picoseconds.
|
|
Weight::from_parts(314_891_136, 6816)
|
|
// Standard Error: 9_762
|
|
.saturating_add(Weight::from_parts(11_949_979, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 42).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1536 w:1536)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1536 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:1538 w:1538)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_set_code_hash(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0 + r * (965 ±0)`
|
|
// Estimated: `6807 + r * (3090 ±10)`
|
|
// Minimum execution time: 274_238_000 picoseconds.
|
|
Weight::from_parts(278_034_000, 6807)
|
|
// Standard Error: 77_011
|
|
.saturating_add(Weight::from_parts(27_627_005, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().reads((3_u64).saturating_mul(r.into())))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes((2_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 3090).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:33 w:32)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 32]`.
|
|
fn add_delegate_dependency(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `928 + r * (131 ±0)`
|
|
// Estimated: `6878 + r * (2606 ±0)`
|
|
// Minimum execution time: 271_519_000 picoseconds.
|
|
Weight::from_parts(292_726_476, 6878)
|
|
// Standard Error: 23_870
|
|
.saturating_add(Weight::from_parts(6_695_172, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 2606).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `MaxEncodedLen`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:33 w:32)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `MaxEncodedLen`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `MaxEncodedLen`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 32]`.
|
|
fn remove_delegate_dependency(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `969 + r * (183 ±0)`
|
|
// Estimated: `129453 + r * (2568 ±0)`
|
|
// Minimum execution time: 274_675_000 picoseconds.
|
|
Weight::from_parts(293_727_489, 129453)
|
|
// Standard Error: 23_160
|
|
.saturating_add(Weight::from_parts(5_895_043, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(T::DbWeight::get().writes((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 2568).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_reentrance_count(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `858 + r * (3 ±0)`
|
|
// Estimated: `6804 + r * (3 ±0)`
|
|
// Minimum execution time: 253_330_000 picoseconds.
|
|
Weight::from_parts(281_079_564, 6804)
|
|
// Standard Error: 378
|
|
.saturating_add(Weight::from_parts(180_655, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_account_reentrance_count(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `2109 + r * (39 ±0)`
|
|
// Estimated: `7899 + r * (40 ±0)`
|
|
// Minimum execution time: 276_552_000 picoseconds.
|
|
Weight::from_parts(368_521_088, 7899)
|
|
// Standard Error: 2_310
|
|
.saturating_add(Weight::from_parts(318_129, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(8_u64))
|
|
.saturating_add(T::DbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 40).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `Contracts::Nonce` (r:1 w:1)
|
|
/// Proof: `Contracts::Nonce` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_instantiation_nonce(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `861 + r * (3 ±0)`
|
|
// Estimated: `6801 + r * (3 ±0)`
|
|
// Minimum execution time: 258_953_000 picoseconds.
|
|
Weight::from_parts(288_222_836, 6801)
|
|
// Standard Error: 367
|
|
.saturating_add(Weight::from_parts(152_842, 0).saturating_mul(r.into()))
|
|
.saturating_add(T::DbWeight::get().reads(9_u64))
|
|
.saturating_add(T::DbWeight::get().writes(4_u64))
|
|
.saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into()))
|
|
}
|
|
/// The range of component `r` is `[0, 5000]`.
|
|
fn instr_i64const(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 1_476_000 picoseconds.
|
|
Weight::from_parts(2_119_717, 0)
|
|
// Standard Error: 28
|
|
.saturating_add(Weight::from_parts(9_805, 0).saturating_mul(r.into()))
|
|
}
|
|
}
|
|
|
|
// For backwards compatibility and tests.
|
|
impl WeightInfo for () {
|
|
/// Storage: `Contracts::DeletionQueueCounter` (r:1 w:0)
|
|
/// Proof: `Contracts::DeletionQueueCounter` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
fn on_process_deletion_queue_batch() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `142`
|
|
// Estimated: `1627`
|
|
// Minimum execution time: 2_548_000 picoseconds.
|
|
Weight::from_parts(2_670_000, 1627)
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `k` is `[0, 1024]`.
|
|
fn on_initialize_per_trie_key(k: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `451 + k * (69 ±0)`
|
|
// Estimated: `441 + k * (70 ±0)`
|
|
// Minimum execution time: 13_526_000 picoseconds.
|
|
Weight::from_parts(13_902_000, 441)
|
|
// Standard Error: 1_058
|
|
.saturating_add(Weight::from_parts(1_274_724, 0).saturating_mul(k.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(k.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(k.into())))
|
|
.saturating_add(Weight::from_parts(0, 70).saturating_mul(k.into()))
|
|
}
|
|
/// Storage: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc553022fca90611ba8b7942f8bdb3b97f6580` (r:2 w:1)
|
|
/// Proof: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc553022fca90611ba8b7942f8bdb3b97f6580` (r:2 w:1)
|
|
/// The range of component `c` is `[0, 125952]`.
|
|
fn v9_migration_step(c: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `211 + c * (1 ±0)`
|
|
// Estimated: `6149 + c * (1 ±0)`
|
|
// Minimum execution time: 8_426_000 picoseconds.
|
|
Weight::from_parts(8_591_621, 6149)
|
|
// Standard Error: 1
|
|
.saturating_add(Weight::from_parts(1_203, 0).saturating_mul(c.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(c.into()))
|
|
}
|
|
/// Storage: `Contracts::ContractInfoOf` (r:2 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
fn v10_migration_step() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `510`
|
|
// Estimated: `6450`
|
|
// Minimum execution time: 17_008_000 picoseconds.
|
|
Weight::from_parts(17_742_000, 6450)
|
|
.saturating_add(RocksDbWeight::get().reads(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Contracts::DeletionQueue` (r:1 w:1025)
|
|
/// Proof: `Contracts::DeletionQueue` (`max_values`: None, `max_size`: Some(142), added: 2617, mode: `Measured`)
|
|
/// Storage: `Contracts::DeletionQueueCounter` (r:0 w:1)
|
|
/// Proof: `Contracts::DeletionQueueCounter` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// The range of component `k` is `[0, 1024]`.
|
|
fn v11_migration_step(k: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `171 + k * (1 ±0)`
|
|
// Estimated: `3635 + k * (1 ±0)`
|
|
// Minimum execution time: 3_949_000 picoseconds.
|
|
Weight::from_parts(4_062_000, 3635)
|
|
// Standard Error: 1_983
|
|
.saturating_add(Weight::from_parts(1_173_197, 0).saturating_mul(k.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(k.into())))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(k.into()))
|
|
}
|
|
/// Storage: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc553053f13fd319a03c211337c76e0fe776df` (r:2 w:0)
|
|
/// Proof: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc553053f13fd319a03c211337c76e0fe776df` (r:2 w:0)
|
|
/// Storage: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc553022fca90611ba8b7942f8bdb3b97f6580` (r:1 w:1)
|
|
/// Proof: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc553022fca90611ba8b7942f8bdb3b97f6580` (r:1 w:1)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:0 w:1)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// The range of component `c` is `[0, 125952]`.
|
|
fn v12_migration_step(c: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `325 + c * (1 ±0)`
|
|
// Estimated: `6263 + c * (1 ±0)`
|
|
// Minimum execution time: 17_094_000 picoseconds.
|
|
Weight::from_parts(17_338_591, 6263)
|
|
// Standard Error: 1
|
|
.saturating_add(Weight::from_parts(436, 0).saturating_mul(c.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(4_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(c.into()))
|
|
}
|
|
/// Storage: `Contracts::ContractInfoOf` (r:2 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
fn v13_migration_step() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `440`
|
|
// Estimated: `6380`
|
|
// Minimum execution time: 12_704_000 picoseconds.
|
|
Weight::from_parts(13_147_000, 6380)
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Contracts::CodeInfoOf` (r:2 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:1)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Balances::Holds` (r:1 w:0)
|
|
/// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `Measured`)
|
|
fn v14_migration_step() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `360`
|
|
// Estimated: `6300`
|
|
// Minimum execution time: 48_387_000 picoseconds.
|
|
Weight::from_parts(50_024_000, 6300)
|
|
.saturating_add(RocksDbWeight::get().reads(4_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Contracts::ContractInfoOf` (r:2 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:2 w:1)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
fn v15_migration_step() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `594`
|
|
// Estimated: `6534`
|
|
// Minimum execution time: 59_300_000 picoseconds.
|
|
Weight::from_parts(61_805_000, 6534)
|
|
.saturating_add(RocksDbWeight::get().reads(4_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:1)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
fn migration_noop() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `142`
|
|
// Estimated: `1627`
|
|
// Minimum execution time: 3_327_000 picoseconds.
|
|
Weight::from_parts(3_502_000, 1627)
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:1)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:1)
|
|
/// Proof: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:1)
|
|
fn migrate() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `166`
|
|
// Estimated: `3631`
|
|
// Minimum execution time: 12_759_000 picoseconds.
|
|
Weight::from_parts(13_134_000, 3631)
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(2_u64))
|
|
}
|
|
/// Storage: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:0)
|
|
/// Proof: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:0)
|
|
fn on_runtime_upgrade_noop() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `142`
|
|
// Estimated: `3607`
|
|
// Minimum execution time: 4_775_000 picoseconds.
|
|
Weight::from_parts(5_084_000, 3607)
|
|
.saturating_add(RocksDbWeight::get().reads(1_u64))
|
|
}
|
|
/// Storage: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:0)
|
|
/// Proof: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:0)
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
fn on_runtime_upgrade_in_progress() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `167`
|
|
// Estimated: `3632`
|
|
// Minimum execution time: 6_663_000 picoseconds.
|
|
Weight::from_parts(6_855_000, 3632)
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
}
|
|
/// Storage: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:0)
|
|
/// Proof: UNKNOWN KEY `0x4342193e496fab7ec59d615ed0dc55304e7b9012096b41c4eb3aaf947f6ea429` (r:1 w:0)
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:1)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
fn on_runtime_upgrade() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `142`
|
|
// Estimated: `3607`
|
|
// Minimum execution time: 7_212_000 picoseconds.
|
|
Weight::from_parts(7_426_000, 3607)
|
|
.saturating_add(RocksDbWeight::get().reads(2_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(1_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:1)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `c` is `[0, 125952]`.
|
|
fn call_with_code_per_byte(c: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `792`
|
|
// Estimated: `6743 + c * (1 ±0)`
|
|
// Minimum execution time: 289_557_000 picoseconds.
|
|
Weight::from_parts(272_895_652, 6743)
|
|
// Standard Error: 80
|
|
.saturating_add(Weight::from_parts(39_917, 0).saturating_mul(c.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(4_u64))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(c.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Balances::Holds` (r:2 w:2)
|
|
/// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:3 w:3)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Contracts::Nonce` (r:1 w:1)
|
|
/// Proof: `Contracts::Nonce` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:1)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:0 w:1)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// The range of component `c` is `[0, 125952]`.
|
|
/// The range of component `i` is `[0, 1048576]`.
|
|
/// The range of component `s` is `[0, 1048576]`.
|
|
fn instantiate_with_code(c: u32, i: u32, s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `323`
|
|
// Estimated: `8747`
|
|
// Minimum execution time: 4_671_359_000 picoseconds.
|
|
Weight::from_parts(586_523_882, 8747)
|
|
// Standard Error: 206
|
|
.saturating_add(Weight::from_parts(115_402, 0).saturating_mul(c.into()))
|
|
// Standard Error: 24
|
|
.saturating_add(Weight::from_parts(1_797, 0).saturating_mul(i.into()))
|
|
// Standard Error: 24
|
|
.saturating_add(Weight::from_parts(2_046, 0).saturating_mul(s.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(11_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(10_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Contracts::Nonce` (r:1 w:1)
|
|
/// Proof: `Contracts::Nonce` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:1)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Balances::Holds` (r:1 w:1)
|
|
/// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `Measured`)
|
|
/// The range of component `i` is `[0, 1048576]`.
|
|
/// The range of component `s` is `[0, 1048576]`.
|
|
fn instantiate(i: u32, s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `560`
|
|
// Estimated: `6504`
|
|
// Minimum execution time: 2_170_657_000 picoseconds.
|
|
Weight::from_parts(369_331_405, 6504)
|
|
// Standard Error: 7
|
|
.saturating_add(Weight::from_parts(1_940, 0).saturating_mul(i.into()))
|
|
// Standard Error: 7
|
|
.saturating_add(Weight::from_parts(1_858, 0).saturating_mul(s.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(10_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(7_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:1)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
fn call() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `826`
|
|
// Estimated: `6766`
|
|
// Minimum execution time: 204_287_000 picoseconds.
|
|
Weight::from_parts(213_239_000, 6766)
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(4_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Balances::Holds` (r:1 w:1)
|
|
/// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:1 w:1)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:0 w:1)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// The range of component `c` is `[0, 125952]`.
|
|
fn upload_code(c: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `142`
|
|
// Estimated: `3607`
|
|
// Minimum execution time: 285_434_000 picoseconds.
|
|
Weight::from_parts(242_697_648, 3607)
|
|
// Standard Error: 128
|
|
.saturating_add(Weight::from_parts(76_087, 0).saturating_mul(c.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(4_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(4_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Balances::Holds` (r:1 w:1)
|
|
/// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:1 w:1)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:0 w:1)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
fn remove_code() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `315`
|
|
// Estimated: `3780`
|
|
// Minimum execution time: 46_486_000 picoseconds.
|
|
Weight::from_parts(48_422_000, 3780)
|
|
.saturating_add(RocksDbWeight::get().reads(4_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(4_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:2 w:2)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:3 w:3)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
fn set_code() -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `552`
|
|
// Estimated: `8967`
|
|
// Minimum execution time: 37_568_000 picoseconds.
|
|
Weight::from_parts(38_589_000, 8967)
|
|
.saturating_add(RocksDbWeight::get().reads(7_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(6_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_caller(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `866 + r * (6 ±0)`
|
|
// Estimated: `6806 + r * (6 ±0)`
|
|
// Minimum execution time: 274_513_000 picoseconds.
|
|
Weight::from_parts(288_793_403, 6806)
|
|
// Standard Error: 650
|
|
.saturating_add(Weight::from_parts(339_309, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1601 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_is_contract(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `922 + r * (209 ±0)`
|
|
// Estimated: `6826 + r * (2684 ±0)`
|
|
// Minimum execution time: 260_096_000 picoseconds.
|
|
Weight::from_parts(149_954_322, 6826)
|
|
// Standard Error: 5_713
|
|
.saturating_add(Weight::from_parts(3_788_924, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 2684).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1601 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_code_hash(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `921 + r * (213 ±0)`
|
|
// Estimated: `6830 + r * (2688 ±0)`
|
|
// Minimum execution time: 277_496_000 picoseconds.
|
|
Weight::from_parts(285_839_000, 6830)
|
|
// Standard Error: 10_076
|
|
.saturating_add(Weight::from_parts(4_720_110, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 2688).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_own_code_hash(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `873 + r * (6 ±0)`
|
|
// Estimated: `6815 + r * (6 ±0)`
|
|
// Minimum execution time: 275_655_000 picoseconds.
|
|
Weight::from_parts(291_386_528, 6815)
|
|
// Standard Error: 898
|
|
.saturating_add(Weight::from_parts(428_765, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_caller_is_origin(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `863 + r * (3 ±0)`
|
|
// Estimated: `6804 + r * (3 ±0)`
|
|
// Minimum execution time: 260_323_000 picoseconds.
|
|
Weight::from_parts(286_371_403, 6804)
|
|
// Standard Error: 451
|
|
.saturating_add(Weight::from_parts(183_053, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_caller_is_root(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `753 + r * (3 ±0)`
|
|
// Estimated: `6693 + r * (3 ±0)`
|
|
// Minimum execution time: 262_974_000 picoseconds.
|
|
Weight::from_parts(276_571_502, 6693)
|
|
// Standard Error: 527
|
|
.saturating_add(Weight::from_parts(165_364, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(7_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_address(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `867 + r * (6 ±0)`
|
|
// Estimated: `6807 + r * (6 ±0)`
|
|
// Minimum execution time: 272_826_000 picoseconds.
|
|
Weight::from_parts(290_963_001, 6807)
|
|
// Standard Error: 810
|
|
.saturating_add(Weight::from_parts(343_762, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_gas_left(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `863 + r * (6 ±0)`
|
|
// Estimated: `6806 + r * (6 ±0)`
|
|
// Minimum execution time: 277_324_000 picoseconds.
|
|
Weight::from_parts(290_872_814, 6806)
|
|
// Standard Error: 766
|
|
.saturating_add(Weight::from_parts(371_542, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:2 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_balance(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1007 + r * (6 ±0)`
|
|
// Estimated: `6931 + r * (6 ±0)`
|
|
// Minimum execution time: 274_460_000 picoseconds.
|
|
Weight::from_parts(285_748_025, 6931)
|
|
// Standard Error: 1_570
|
|
.saturating_add(Weight::from_parts(1_656_237, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(9_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_value_transferred(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `877 + r * (6 ±0)`
|
|
// Estimated: `6823 + r * (6 ±0)`
|
|
// Minimum execution time: 278_254_000 picoseconds.
|
|
Weight::from_parts(283_893_525, 6823)
|
|
// Standard Error: 726
|
|
.saturating_add(Weight::from_parts(347_368, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_minimum_balance(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `875 + r * (6 ±0)`
|
|
// Estimated: `6816 + r * (6 ±0)`
|
|
// Minimum execution time: 279_646_000 picoseconds.
|
|
Weight::from_parts(292_505_446, 6816)
|
|
// Standard Error: 867
|
|
.saturating_add(Weight::from_parts(337_202, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_block_number(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `872 + r * (6 ±0)`
|
|
// Estimated: `6819 + r * (6 ±0)`
|
|
// Minimum execution time: 274_522_000 picoseconds.
|
|
Weight::from_parts(295_135_659, 6819)
|
|
// Standard Error: 1_052
|
|
.saturating_add(Weight::from_parts(330_788, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_now(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `863 + r * (6 ±0)`
|
|
// Estimated: `6804 + r * (6 ±0)`
|
|
// Minimum execution time: 274_228_000 picoseconds.
|
|
Weight::from_parts(289_201_593, 6804)
|
|
// Standard Error: 752
|
|
.saturating_add(Weight::from_parts(337_860, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `TransactionPayment::NextFeeMultiplier` (r:1 w:0)
|
|
/// Proof: `TransactionPayment::NextFeeMultiplier` (`max_values`: Some(1), `max_size`: Some(16), added: 511, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_weight_to_fee(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `937 + r * (14 ±0)`
|
|
// Estimated: `6872 + r * (14 ±0)`
|
|
// Minimum execution time: 277_142_000 picoseconds.
|
|
Weight::from_parts(296_736_114, 6872)
|
|
// Standard Error: 1_502
|
|
.saturating_add(Weight::from_parts(1_446_663, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(9_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 14).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_input(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `865 + r * (6 ±0)`
|
|
// Estimated: `6807 + r * (6 ±0)`
|
|
// Minimum execution time: 276_087_000 picoseconds.
|
|
Weight::from_parts(287_863_377, 6807)
|
|
// Standard Error: 495
|
|
.saturating_add(Weight::from_parts(282_718, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 6).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 1048576]`.
|
|
fn seal_input_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `869`
|
|
// Estimated: `6809`
|
|
// Minimum execution time: 277_128_000 picoseconds.
|
|
Weight::from_parts(234_478_674, 6809)
|
|
// Standard Error: 23
|
|
.saturating_add(Weight::from_parts(1_052, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1]`.
|
|
fn seal_return(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `853 + r * (45 ±0)`
|
|
// Estimated: `6793 + r * (45 ±0)`
|
|
// Minimum execution time: 251_983_000 picoseconds.
|
|
Weight::from_parts(277_986_885, 6793)
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 45).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 1048576]`.
|
|
fn seal_return_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `863`
|
|
// Estimated: `6810`
|
|
// Minimum execution time: 275_108_000 picoseconds.
|
|
Weight::from_parts(284_552_708, 6810)
|
|
// Standard Error: 0
|
|
.saturating_add(Weight::from_parts(391, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:3 w:3)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:2 w:2)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `Contracts::DeletionQueueCounter` (r:1 w:1)
|
|
/// Proof: `Contracts::DeletionQueueCounter` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:4 w:4)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Balances::Holds` (r:1 w:1)
|
|
/// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `Measured`)
|
|
/// Storage: `Contracts::DeletionQueue` (r:0 w:1)
|
|
/// Proof: `Contracts::DeletionQueue` (`max_values`: None, `max_size`: Some(142), added: 2617, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1]`.
|
|
fn seal_terminate(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `2972 + r * (316 ±0)`
|
|
// Estimated: `8912 + r * (5266 ±0)`
|
|
// Minimum execution time: 281_278_000 picoseconds.
|
|
Weight::from_parts(306_800_667, 8912)
|
|
// Standard Error: 855_257
|
|
.saturating_add(Weight::from_parts(126_508_132, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((7_u64).saturating_mul(r.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((10_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 5266).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `RandomnessCollectiveFlip::RandomMaterial` (r:1 w:0)
|
|
/// Proof: `RandomnessCollectiveFlip::RandomMaterial` (`max_values`: Some(1), `max_size`: Some(2594), added: 3089, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_random(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `944 + r * (10 ±0)`
|
|
// Estimated: `6885 + r * (10 ±0)`
|
|
// Minimum execution time: 260_609_000 picoseconds.
|
|
Weight::from_parts(287_385_076, 6885)
|
|
// Standard Error: 2_754
|
|
.saturating_add(Weight::from_parts(2_057_388, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(9_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 10).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_deposit_event(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `863 + r * (10 ±0)`
|
|
// Estimated: `6805 + r * (10 ±0)`
|
|
// Minimum execution time: 254_770_000 picoseconds.
|
|
Weight::from_parts(255_105_647, 6805)
|
|
// Standard Error: 5_707
|
|
.saturating_add(Weight::from_parts(3_808_788, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 10).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:6 w:6)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `t` is `[0, 4]`.
|
|
/// The range of component `n` is `[0, 16384]`.
|
|
fn seal_deposit_event_per_topic_and_byte(t: u32, n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `880 + t * (32 ±0)`
|
|
// Estimated: `6825 + t * (2508 ±0)`
|
|
// Minimum execution time: 278_200_000 picoseconds.
|
|
Weight::from_parts(288_081_493, 6825)
|
|
// Standard Error: 97_535
|
|
.saturating_add(Weight::from_parts(3_683_455, 0).saturating_mul(t.into()))
|
|
// Standard Error: 27
|
|
.saturating_add(Weight::from_parts(731, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(t.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(t.into())))
|
|
.saturating_add(Weight::from_parts(0, 2508).saturating_mul(t.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_debug_message(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `862 + r * (7 ±0)`
|
|
// Estimated: `6807 + r * (7 ±0)`
|
|
// Minimum execution time: 167_181_000 picoseconds.
|
|
Weight::from_parts(178_433_475, 6807)
|
|
// Standard Error: 374
|
|
.saturating_add(Weight::from_parts(241_240, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 7).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `MaxEncodedLen`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `MaxEncodedLen`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `MaxEncodedLen`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `i` is `[0, 1048576]`.
|
|
fn seal_debug_message_per_byte(i: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `125813`
|
|
// Estimated: `131755`
|
|
// Minimum execution time: 434_456_000 picoseconds.
|
|
Weight::from_parts(400_940_450, 131755)
|
|
// Standard Error: 13
|
|
.saturating_add(Weight::from_parts(1_102, 0).saturating_mul(i.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 800]`.
|
|
fn seal_set_storage(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `924 + r * (292 ±0)`
|
|
// Estimated: `925 + r * (293 ±0)`
|
|
// Minimum execution time: 277_825_000 picoseconds.
|
|
Weight::from_parts(159_688_263, 925)
|
|
// Standard Error: 13_610
|
|
.saturating_add(Weight::from_parts(7_145_641, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 293).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 16384]`.
|
|
fn seal_set_storage_per_new_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1446`
|
|
// Estimated: `1429`
|
|
// Minimum execution time: 284_745_000 picoseconds.
|
|
Weight::from_parts(345_928_316, 1429)
|
|
// Standard Error: 70
|
|
.saturating_add(Weight::from_parts(547, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(12_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(8_u64))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 16384]`.
|
|
fn seal_set_storage_per_old_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1252 + n * (1 ±0)`
|
|
// Estimated: `1252 + n * (1 ±0)`
|
|
// Minimum execution time: 275_328_000 picoseconds.
|
|
Weight::from_parts(300_037_010, 1252)
|
|
// Standard Error: 32
|
|
.saturating_add(Weight::from_parts(558, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(9_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(4_u64))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 800]`.
|
|
fn seal_clear_storage(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `920 + r * (288 ±0)`
|
|
// Estimated: `926 + r * (289 ±0)`
|
|
// Minimum execution time: 273_742_000 picoseconds.
|
|
Weight::from_parts(169_430_806, 926)
|
|
// Standard Error: 11_821
|
|
.saturating_add(Weight::from_parts(6_927_074, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 289).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 16384]`.
|
|
fn seal_clear_storage_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1248 + n * (1 ±0)`
|
|
// Estimated: `1248 + n * (1 ±0)`
|
|
// Minimum execution time: 275_167_000 picoseconds.
|
|
Weight::from_parts(301_883_655, 1248)
|
|
// Standard Error: 35
|
|
.saturating_add(Weight::from_parts(4, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(9_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(4_u64))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 800]`.
|
|
fn seal_get_storage(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `920 + r * (296 ±0)`
|
|
// Estimated: `922 + r * (297 ±0)`
|
|
// Minimum execution time: 274_628_000 picoseconds.
|
|
Weight::from_parts(195_255_092, 922)
|
|
// Standard Error: 9_109
|
|
.saturating_add(Weight::from_parts(5_707_060, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 297).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 16384]`.
|
|
fn seal_get_storage_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1264 + n * (1 ±0)`
|
|
// Estimated: `1264 + n * (1 ±0)`
|
|
// Minimum execution time: 274_202_000 picoseconds.
|
|
Weight::from_parts(296_440_752, 1264)
|
|
// Standard Error: 38
|
|
.saturating_add(Weight::from_parts(1_010, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(9_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 800]`.
|
|
fn seal_contains_storage(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `931 + r * (288 ±0)`
|
|
// Estimated: `928 + r * (289 ±0)`
|
|
// Minimum execution time: 274_123_000 picoseconds.
|
|
Weight::from_parts(193_280_535, 928)
|
|
// Standard Error: 9_264
|
|
.saturating_add(Weight::from_parts(5_548_039, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 289).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 16384]`.
|
|
fn seal_contains_storage_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1251 + n * (1 ±0)`
|
|
// Estimated: `1251 + n * (1 ±0)`
|
|
// Minimum execution time: 276_425_000 picoseconds.
|
|
Weight::from_parts(300_521_806, 1251)
|
|
// Standard Error: 36
|
|
.saturating_add(Weight::from_parts(83, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(9_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 800]`.
|
|
fn seal_take_storage(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `913 + r * (296 ±0)`
|
|
// Estimated: `918 + r * (297 ±0)`
|
|
// Minimum execution time: 264_860_000 picoseconds.
|
|
Weight::from_parts(191_561_777, 918)
|
|
// Standard Error: 10_678
|
|
.saturating_add(Weight::from_parts(6_895_457, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 297).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Skipped::Metadata` (r:0 w:0)
|
|
/// Proof: `Skipped::Metadata` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 16384]`.
|
|
fn seal_take_storage_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1265 + n * (1 ±0)`
|
|
// Estimated: `1265 + n * (1 ±0)`
|
|
// Minimum execution time: 282_501_000 picoseconds.
|
|
Weight::from_parts(303_351_919, 1265)
|
|
// Standard Error: 37
|
|
.saturating_add(Weight::from_parts(643, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(9_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(4_u64))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1602 w:1601)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_transfer(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1415 + r * (45 ±0)`
|
|
// Estimated: `7307 + r * (2520 ±0)`
|
|
// Minimum execution time: 273_198_000 picoseconds.
|
|
Weight::from_parts(179_673_238, 7307)
|
|
// Standard Error: 34_990
|
|
.saturating_add(Weight::from_parts(38_468_091, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(9_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(4_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 2520).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:801 w:801)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:2 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:2 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:803 w:803)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 800]`.
|
|
fn seal_call(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1260 + r * (245 ±0)`
|
|
// Estimated: `9440 + r * (2721 ±0)`
|
|
// Minimum execution time: 283_869_000 picoseconds.
|
|
Weight::from_parts(288_374_000, 9440)
|
|
// Standard Error: 137_512
|
|
.saturating_add(Weight::from_parts(248_206_665, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(11_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((2_u64).saturating_mul(r.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(4_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((2_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 2721).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:736 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:736 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:737 w:737)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 800]`.
|
|
fn seal_delegate_call(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0 + r * (576 ±0)`
|
|
// Estimated: `6812 + r * (2637 ±3)`
|
|
// Minimum execution time: 257_577_000 picoseconds.
|
|
Weight::from_parts(277_310_000, 6812)
|
|
// Standard Error: 150_204
|
|
.saturating_add(Weight::from_parts(249_943_483, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((3_u64).saturating_mul(r.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 2637).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:3 w:2)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:2 w:2)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:2 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:2 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:4 w:4)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `t` is `[0, 1]`.
|
|
/// The range of component `c` is `[0, 1048576]`.
|
|
fn seal_call_per_transfer_clone_byte(t: u32, c: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1307 + t * (277 ±0)`
|
|
// Estimated: `12197 + t * (5227 ±0)`
|
|
// Minimum execution time: 471_081_000 picoseconds.
|
|
Weight::from_parts(79_081_122, 12197)
|
|
// Standard Error: 11_777_790
|
|
.saturating_add(Weight::from_parts(357_425_411, 0).saturating_mul(t.into()))
|
|
// Standard Error: 17
|
|
.saturating_add(Weight::from_parts(1_111, 0).saturating_mul(c.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(13_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((2_u64).saturating_mul(t.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(6_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((2_u64).saturating_mul(t.into())))
|
|
.saturating_add(Weight::from_parts(0, 5227).saturating_mul(t.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:802 w:802)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:801 w:801)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:801 w:800)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:801 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `Contracts::Nonce` (r:1 w:1)
|
|
/// Proof: `Contracts::Nonce` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:803 w:803)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Balances::Holds` (r:800 w:800)
|
|
/// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `Measured`)
|
|
/// The range of component `r` is `[1, 800]`.
|
|
fn seal_instantiate(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1278 + r * (255 ±0)`
|
|
// Estimated: `9620 + r * (2731 ±0)`
|
|
// Minimum execution time: 672_742_000 picoseconds.
|
|
Weight::from_parts(680_025_000, 9620)
|
|
// Standard Error: 313_642
|
|
.saturating_add(Weight::from_parts(388_311_259, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(11_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((6_u64).saturating_mul(r.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(7_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((5_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 2731).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:3 w:3)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:2 w:2)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:2 w:1)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:2 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `Contracts::Nonce` (r:1 w:1)
|
|
/// Proof: `Contracts::Nonce` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:4 w:4)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// Storage: `Balances::Holds` (r:1 w:1)
|
|
/// Proof: `Balances::Holds` (`max_values`: None, `max_size`: Some(85), added: 2560, mode: `Measured`)
|
|
/// The range of component `t` is `[0, 1]`.
|
|
/// The range of component `i` is `[0, 983040]`.
|
|
/// The range of component `s` is `[0, 983040]`.
|
|
fn seal_instantiate_per_transfer_input_salt_byte(t: u32, i: u32, s: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `1303 + t * (104 ±0)`
|
|
// Estimated: `12211 + t * (2549 ±1)`
|
|
// Minimum execution time: 2_733_870_000 picoseconds.
|
|
Weight::from_parts(1_001_793_458, 12211)
|
|
// Standard Error: 12
|
|
.saturating_add(Weight::from_parts(1_963, 0).saturating_mul(i.into()))
|
|
// Standard Error: 12
|
|
.saturating_add(Weight::from_parts(2_060, 0).saturating_mul(s.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(16_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(t.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(11_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(t.into())))
|
|
.saturating_add(Weight::from_parts(0, 2549).saturating_mul(t.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_hash_sha2_256(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `862 + r * (8 ±0)`
|
|
// Estimated: `6801 + r * (8 ±0)`
|
|
// Minimum execution time: 272_658_000 picoseconds.
|
|
Weight::from_parts(282_717_645, 6801)
|
|
// Standard Error: 517
|
|
.saturating_add(Weight::from_parts(400_604, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 1048576]`.
|
|
fn seal_hash_sha2_256_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `870`
|
|
// Estimated: `6808`
|
|
// Minimum execution time: 260_969_000 picoseconds.
|
|
Weight::from_parts(265_206_847, 6808)
|
|
// Standard Error: 2
|
|
.saturating_add(Weight::from_parts(1_134, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_hash_keccak_256(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `864 + r * (8 ±0)`
|
|
// Estimated: `6806 + r * (8 ±0)`
|
|
// Minimum execution time: 262_351_000 picoseconds.
|
|
Weight::from_parts(286_974_296, 6806)
|
|
// Standard Error: 514
|
|
.saturating_add(Weight::from_parts(802_363, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 1048576]`.
|
|
fn seal_hash_keccak_256_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `872`
|
|
// Estimated: `6814`
|
|
// Minimum execution time: 276_907_000 picoseconds.
|
|
Weight::from_parts(277_928_418, 6814)
|
|
// Standard Error: 1
|
|
.saturating_add(Weight::from_parts(3_410, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_hash_blake2_256(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `864 + r * (8 ±0)`
|
|
// Estimated: `6808 + r * (8 ±0)`
|
|
// Minimum execution time: 263_660_000 picoseconds.
|
|
Weight::from_parts(285_665_916, 6808)
|
|
// Standard Error: 527
|
|
.saturating_add(Weight::from_parts(480_457, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 1048576]`.
|
|
fn seal_hash_blake2_256_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `872`
|
|
// Estimated: `6813`
|
|
// Minimum execution time: 262_071_000 picoseconds.
|
|
Weight::from_parts(270_115_341, 6813)
|
|
// Standard Error: 1
|
|
.saturating_add(Weight::from_parts(1_254, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_hash_blake2_128(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `864 + r * (8 ±0)`
|
|
// Estimated: `6805 + r * (8 ±0)`
|
|
// Minimum execution time: 265_568_000 picoseconds.
|
|
Weight::from_parts(285_791_811, 6805)
|
|
// Standard Error: 559
|
|
.saturating_add(Weight::from_parts(505_330, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 8).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 1048576]`.
|
|
fn seal_hash_blake2_128_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `872`
|
|
// Estimated: `6811`
|
|
// Minimum execution time: 271_336_000 picoseconds.
|
|
Weight::from_parts(272_829_313, 6811)
|
|
// Standard Error: 0
|
|
.saturating_add(Weight::from_parts(1_252, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `n` is `[0, 125697]`.
|
|
fn seal_sr25519_verify_per_byte(n: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `997 + n * (1 ±0)`
|
|
// Estimated: `6934 + n * (1 ±0)`
|
|
// Minimum execution time: 351_146_000 picoseconds.
|
|
Weight::from_parts(355_368_323, 6934)
|
|
// Standard Error: 14
|
|
.saturating_add(Weight::from_parts(6_155, 0).saturating_mul(n.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 1).saturating_mul(n.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 160]`.
|
|
fn seal_sr25519_verify(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `807 + r * (112 ±0)`
|
|
// Estimated: `6748 + r * (112 ±0)`
|
|
// Minimum execution time: 277_250_000 picoseconds.
|
|
Weight::from_parts(346_490_114, 6748)
|
|
// Standard Error: 14_654
|
|
.saturating_add(Weight::from_parts(56_127_492, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 112).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 160]`.
|
|
fn seal_ecdsa_recover(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `907 + r * (76 ±0)`
|
|
// Estimated: `6801 + r * (77 ±0)`
|
|
// Minimum execution time: 272_697_000 picoseconds.
|
|
Weight::from_parts(345_385_667, 6801)
|
|
// Standard Error: 14_226
|
|
.saturating_add(Weight::from_parts(46_037_637, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 77).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 160]`.
|
|
fn seal_ecdsa_to_eth_address(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `877 + r * (42 ±0)`
|
|
// Estimated: `6816 + r * (42 ±0)`
|
|
// Minimum execution time: 271_800_000 picoseconds.
|
|
Weight::from_parts(314_891_136, 6816)
|
|
// Standard Error: 9_762
|
|
.saturating_add(Weight::from_parts(11_949_979, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 42).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1536 w:1536)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1536 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:1538 w:1538)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_set_code_hash(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0 + r * (965 ±0)`
|
|
// Estimated: `6807 + r * (3090 ±10)`
|
|
// Minimum execution time: 274_238_000 picoseconds.
|
|
Weight::from_parts(278_034_000, 6807)
|
|
// Standard Error: 77_011
|
|
.saturating_add(Weight::from_parts(27_627_005, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((3_u64).saturating_mul(r.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((2_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 3090).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:33 w:32)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 32]`.
|
|
fn add_delegate_dependency(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `928 + r * (131 ±0)`
|
|
// Estimated: `6878 + r * (2606 ±0)`
|
|
// Minimum execution time: 271_519_000 picoseconds.
|
|
Weight::from_parts(292_726_476, 6878)
|
|
// Standard Error: 23_870
|
|
.saturating_add(Weight::from_parts(6_695_172, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 2606).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `MaxEncodedLen`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:33 w:32)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `MaxEncodedLen`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `MaxEncodedLen`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `MaxEncodedLen`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 32]`.
|
|
fn remove_delegate_dependency(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `969 + r * (183 ±0)`
|
|
// Estimated: `129453 + r * (2568 ±0)`
|
|
// Minimum execution time: 274_675_000 picoseconds.
|
|
Weight::from_parts(293_727_489, 129453)
|
|
// Standard Error: 23_160
|
|
.saturating_add(Weight::from_parts(5_895_043, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().reads((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(RocksDbWeight::get().writes((1_u64).saturating_mul(r.into())))
|
|
.saturating_add(Weight::from_parts(0, 2568).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_reentrance_count(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `858 + r * (3 ±0)`
|
|
// Estimated: `6804 + r * (3 ±0)`
|
|
// Minimum execution time: 253_330_000 picoseconds.
|
|
Weight::from_parts(281_079_564, 6804)
|
|
// Standard Error: 378
|
|
.saturating_add(Weight::from_parts(180_655, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_account_reentrance_count(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `2109 + r * (39 ±0)`
|
|
// Estimated: `7899 + r * (40 ±0)`
|
|
// Minimum execution time: 276_552_000 picoseconds.
|
|
Weight::from_parts(368_521_088, 7899)
|
|
// Standard Error: 2_310
|
|
.saturating_add(Weight::from_parts(318_129, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(8_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(3_u64))
|
|
.saturating_add(Weight::from_parts(0, 40).saturating_mul(r.into()))
|
|
}
|
|
/// Storage: `Contracts::MigrationInProgress` (r:1 w:0)
|
|
/// Proof: `Contracts::MigrationInProgress` (`max_values`: Some(1), `max_size`: Some(1026), added: 1521, mode: `Measured`)
|
|
/// Storage: `System::Account` (r:1 w:0)
|
|
/// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `Measured`)
|
|
/// Storage: `Contracts::ContractInfoOf` (r:1 w:1)
|
|
/// Proof: `Contracts::ContractInfoOf` (`max_values`: None, `max_size`: Some(1795), added: 4270, mode: `Measured`)
|
|
/// Storage: `Contracts::CodeInfoOf` (r:1 w:0)
|
|
/// Proof: `Contracts::CodeInfoOf` (`max_values`: None, `max_size`: Some(93), added: 2568, mode: `Measured`)
|
|
/// Storage: `Contracts::PristineCode` (r:1 w:0)
|
|
/// Proof: `Contracts::PristineCode` (`max_values`: None, `max_size`: Some(125988), added: 128463, mode: `Measured`)
|
|
/// Storage: `Timestamp::Now` (r:1 w:0)
|
|
/// Proof: `Timestamp::Now` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `Contracts::Nonce` (r:1 w:1)
|
|
/// Proof: `Contracts::Nonce` (`max_values`: Some(1), `max_size`: Some(8), added: 503, mode: `Measured`)
|
|
/// Storage: `System::EventTopics` (r:2 w:2)
|
|
/// Proof: `System::EventTopics` (`max_values`: None, `max_size`: None, mode: `Measured`)
|
|
/// The range of component `r` is `[0, 1600]`.
|
|
fn seal_instantiation_nonce(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `861 + r * (3 ±0)`
|
|
// Estimated: `6801 + r * (3 ±0)`
|
|
// Minimum execution time: 258_953_000 picoseconds.
|
|
Weight::from_parts(288_222_836, 6801)
|
|
// Standard Error: 367
|
|
.saturating_add(Weight::from_parts(152_842, 0).saturating_mul(r.into()))
|
|
.saturating_add(RocksDbWeight::get().reads(9_u64))
|
|
.saturating_add(RocksDbWeight::get().writes(4_u64))
|
|
.saturating_add(Weight::from_parts(0, 3).saturating_mul(r.into()))
|
|
}
|
|
/// The range of component `r` is `[0, 5000]`.
|
|
fn instr_i64const(r: u32, ) -> Weight {
|
|
// Proof Size summary in bytes:
|
|
// Measured: `0`
|
|
// Estimated: `0`
|
|
// Minimum execution time: 1_476_000 picoseconds.
|
|
Weight::from_parts(2_119_717, 0)
|
|
// Standard Error: 28
|
|
.saturating_add(Weight::from_parts(9_805, 0).saturating_mul(r.into()))
|
|
}
|
|
}
|