moonbase_runtime/weights/
mod.rs

1// Copyright 2019-2025 PureStake Inc.
2// This file is part of Moonbeam.
3
4// Moonbeam is free software: you can redistribute it and/or modify
5// it under the terms of the GNU General Public License as published by
6// the Free Software Foundation, either version 3 of the License, or
7// (at your option) any later version.
8
9// Moonbeam is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License
15// along with Moonbeam.  If not, see <http://www.gnu.org/licenses/>.
16
17//! Moonbeam common weights.
18
19pub mod cumulus_pallet_parachain_system;
20pub mod cumulus_pallet_xcmp_queue;
21pub mod db;
22pub mod frame_system;
23pub mod frame_system_extensions;
24pub mod pallet_author_inherent;
25pub mod pallet_author_mapping;
26pub mod pallet_author_slot_filter;
27pub mod pallet_balances;
28pub mod pallet_collective_open_tech_committee_collective;
29pub mod pallet_collective_treasury_council_collective;
30pub mod pallet_conviction_voting;
31pub mod pallet_crowdloan_rewards;
32pub mod pallet_evm;
33pub mod pallet_identity;
34pub mod pallet_message_queue;
35pub mod pallet_migrations;
36pub mod pallet_moonbeam_foreign_assets;
37pub mod pallet_moonbeam_lazy_migrations;
38pub mod pallet_moonbeam_orbiters;
39pub mod pallet_multisig;
40pub mod pallet_parachain_staking;
41pub mod pallet_parameters;
42pub mod pallet_precompile_benchmarks;
43pub mod pallet_preimage;
44pub mod pallet_proxy;
45pub mod pallet_randomness;
46pub mod pallet_referenda;
47pub mod pallet_relay_storage_roots;
48pub mod pallet_scheduler;
49pub mod pallet_sudo;
50pub mod pallet_timestamp;
51pub mod pallet_transaction_payment;
52pub mod pallet_treasury;
53pub mod pallet_utility;
54pub mod pallet_whitelist;
55pub mod pallet_xcm;
56pub mod pallet_xcm_transactor;
57pub mod pallet_xcm_weight_trader;
58pub mod xcm;
59
60pub mod cumulus_pallet_weight_reclaim;