pallet_vesting_precompiles/weights.rs
1// This file is part of Substrate.
2
3// Copyright (C) Parity Technologies (UK) Ltd.
4// SPDX-License-Identifier: Apache-2.0
5
6// Licensed under the Apache License, Version 2.0 (the "License");
7// you may not use this file except in compliance with the License.
8// You may obtain a copy of the License at
9//
10// http://www.apache.org/licenses/LICENSE-2.0
11//
12// Unless required by applicable law or agreed to in writing, software
13// distributed under the License is distributed on an "AS IS" BASIS,
14// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15// See the License for the specific language governing permissions and
16// limitations under the License.
17
18// This file is part of Substrate.
19
20// Copyright (C) Parity Technologies (UK) Ltd.
21// SPDX-License-Identifier: Apache-2.0
22
23// Licensed under the Apache License, Version 2.0 (the "License");
24// you may not use this file except in compliance with the License.
25// You may obtain a copy of the License at
26//
27// http://www.apache.org/licenses/LICENSE-2.0
28//
29// Unless required by applicable law or agreed to in writing, software
30// distributed under the License is distributed on an "AS IS" BASIS,
31// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
32// See the License for the specific language governing permissions and
33// limitations under the License.
34
35//! Autogenerated weights for `pallet_vesting_precompiles`
36//!
37//! THIS FILE WAS AUTO-GENERATED USING THE SUBSTRATE BENCHMARK CLI VERSION 32.0.0
38//! DATE: 2026-04-02, STEPS: `50`, REPEAT: `20`, LOW RANGE: `[]`, HIGH RANGE: `[]`
39//! WORST CASE MAP SIZE: `1000000`
40//! HOSTNAME: `9f9d748cbad6`, CPU: `Intel(R) Xeon(R) CPU @ 2.60GHz`
41//! WASM-EXECUTION: `Compiled`, CHAIN: `None`, DB CACHE: `1024`
42
43// Executed Command:
44// frame-omni-bencher
45// v1
46// benchmark
47// pallet
48// --extrinsic=*
49// --runtime=target/production/wbuild/kitchensink-runtime/kitchensink_runtime.wasm
50// --pallet=pallet_vesting_precompiles
51// --header=/__w/polkadot-sdk/polkadot-sdk/substrate/HEADER-APACHE2
52// --output=/__w/polkadot-sdk/polkadot-sdk/substrate/frame/vesting/precompiles/src/weights.rs
53// --wasm-execution=compiled
54// --steps=50
55// --repeat=20
56// --heap-pages=4096
57// --template=substrate/.maintain/frame-weight-template.hbs
58// --no-storage-info
59// --no-min-squares
60// --no-median-slopes
61// --exclude-pallets=pallet_xcm,pallet_xcm_benchmarks::fungible,pallet_xcm_benchmarks::generic,pallet_nomination_pools,pallet_remark,pallet_transaction_storage
62
63#![cfg_attr(rustfmt, rustfmt_skip)]
64#![allow(unused_parens)]
65#![allow(unused_imports)]
66#![allow(missing_docs)]
67#![allow(dead_code)]
68
69use frame_support::{traits::Get, weights::{Weight, constants::RocksDbWeight}};
70use core::marker::PhantomData;
71
72/// Weight functions needed for `pallet_vesting_precompiles`.
73pub trait WeightInfo {
74 fn vesting_balance() -> Weight;
75 fn vesting_balance_of() -> Weight;
76}
77
78/// Weights for `pallet_vesting_precompiles` using the Substrate node and recommended hardware.
79pub struct SubstrateWeight<T>(PhantomData<T>);
80impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
81 /// Storage: `Vesting::Vesting` (r:1 w:0)
82 /// Proof: `Vesting::Vesting` (`max_values`: None, `max_size`: Some(1057), added: 3532, mode: `MaxEncodedLen`)
83 fn vesting_balance() -> Weight {
84 // Proof Size summary in bytes:
85 // Measured: `520`
86 // Estimated: `4522`
87 // Minimum execution time: 15_399_000 picoseconds.
88 Weight::from_parts(16_490_000, 4522)
89 .saturating_add(T::DbWeight::get().reads(1_u64))
90 }
91 /// Storage: `Revive::OriginalAccount` (r:1 w:0)
92 /// Proof: `Revive::OriginalAccount` (`max_values`: None, `max_size`: Some(52), added: 2527, mode: `MaxEncodedLen`)
93 /// Storage: `Vesting::Vesting` (r:1 w:0)
94 /// Proof: `Vesting::Vesting` (`max_values`: None, `max_size`: Some(1057), added: 3532, mode: `MaxEncodedLen`)
95 /// Storage: `System::Account` (r:1 w:0)
96 /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
97 fn vesting_balance_of() -> Weight {
98 // Proof Size summary in bytes:
99 // Measured: `1087`
100 // Estimated: `4522`
101 // Minimum execution time: 21_383_000 picoseconds.
102 Weight::from_parts(22_938_000, 4522)
103 .saturating_add(T::DbWeight::get().reads(3_u64))
104 }
105}
106
107// For backwards compatibility and tests.
108impl WeightInfo for () {
109 /// Storage: `Vesting::Vesting` (r:1 w:0)
110 /// Proof: `Vesting::Vesting` (`max_values`: None, `max_size`: Some(1057), added: 3532, mode: `MaxEncodedLen`)
111 fn vesting_balance() -> Weight {
112 // Proof Size summary in bytes:
113 // Measured: `520`
114 // Estimated: `4522`
115 // Minimum execution time: 15_399_000 picoseconds.
116 Weight::from_parts(16_490_000, 4522)
117 .saturating_add(RocksDbWeight::get().reads(1_u64))
118 }
119 /// Storage: `Revive::OriginalAccount` (r:1 w:0)
120 /// Proof: `Revive::OriginalAccount` (`max_values`: None, `max_size`: Some(52), added: 2527, mode: `MaxEncodedLen`)
121 /// Storage: `Vesting::Vesting` (r:1 w:0)
122 /// Proof: `Vesting::Vesting` (`max_values`: None, `max_size`: Some(1057), added: 3532, mode: `MaxEncodedLen`)
123 /// Storage: `System::Account` (r:1 w:0)
124 /// Proof: `System::Account` (`max_values`: None, `max_size`: Some(128), added: 2603, mode: `MaxEncodedLen`)
125 fn vesting_balance_of() -> Weight {
126 // Proof Size summary in bytes:
127 // Measured: `1087`
128 // Estimated: `4522`
129 // Minimum execution time: 21_383_000 picoseconds.
130 Weight::from_parts(22_938_000, 4522)
131 .saturating_add(RocksDbWeight::get().reads(3_u64))
132 }
133}