git.delta.rocks / unique-network / refs/commits / 3b2d7676c481

difftreelog

source

runtime/common/src/construct_runtime/mod.rs3.7 KiBsourcehistory
1mod util;23#[macro_export]4macro_rules! construct_runtime {5    ($select_runtime:ident) => {6        $crate::construct_runtime_impl! {7            select_runtime($select_runtime);89            pub enum Runtime where10                Block = Block,11                NodeBlock = opaque::Block,12                UncheckedExtrinsic = UncheckedExtrinsic13            {14                ParachainSystem: cumulus_pallet_parachain_system::{Pallet, Call, Config, Storage, Inherent, Event<T>, ValidateUnsigned} = 20,15                ParachainInfo: parachain_info::{Pallet, Storage, Config} = 21,1617                Aura: pallet_aura::{Pallet, Config<T>} = 22,18                AuraExt: cumulus_pallet_aura_ext::{Pallet, Config} = 23,1920                Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>} = 30,21                RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage} = 31,22                Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent} = 32,23                TransactionPayment: pallet_transaction_payment::{Pallet, Storage} = 33,24                Treasury: pallet_treasury::{Pallet, Call, Storage, Config, Event<T>} = 34,25                Sudo: pallet_sudo::{Pallet, Call, Storage, Config<T>, Event<T>} = 35,26                System: frame_system::{Pallet, Call, Storage, Config, Event<T>} = 36,27                Vesting: orml_vesting::{Pallet, Storage, Call, Event<T>, Config<T>} = 37,28                // Vesting: pallet_vesting::{Pallet, Call, Config<T>, Storage, Event<T>} = 37,29                // Contracts: pallet_contracts::{Pallet, Call, Storage, Event<T>} = 38,3031                // XCM helpers.32                XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 50,33                PolkadotXcm: pallet_xcm::{Pallet, Call, Event<T>, Origin} = 51,34                CumulusXcm: cumulus_pallet_xcm::{Pallet, Call, Event<T>, Origin} = 52,35                DmpQueue: cumulus_pallet_dmp_queue::{Pallet, Call, Storage, Event<T>} = 53,3637                // Unique Pallets38                Inflation: pallet_inflation::{Pallet, Call, Storage} = 60,39                Unique: pallet_unique::{Pallet, Call, Storage, Event<T>} = 61,4041                #[runtimes(opal)]42                Scheduler: pallet_unique_scheduler::{Pallet, Call, Storage, Event<T>} = 62,4344                // free = 634546                Charging: pallet_charge_transaction::{Pallet, Call, Storage } = 64,47                // ContractHelpers: pallet_contract_helpers::{Pallet, Call, Storage} = 65,48                Common: pallet_common::{Pallet, Storage, Event<T>} = 66,49                Fungible: pallet_fungible::{Pallet, Storage} = 67,5051                #[runtimes(opal)]52                Refungible: pallet_refungible::{Pallet, Storage} = 68,5354                Nonfungible: pallet_nonfungible::{Pallet, Storage} = 69,55                Structure: pallet_structure::{Pallet, Call, Storage, Event<T>} = 70,5657                #[runtimes(opal)]58                RmrkCore: pallet_proxy_rmrk_core::{Pallet, Call, Storage, Event<T>} = 71,5960                #[runtimes(opal)]61                RmrkEquip: pallet_proxy_rmrk_equip::{Pallet, Call, Storage, Event<T>} = 72,6263                // Frontier64                EVM: pallet_evm::{Pallet, Config, Call, Storage, Event<T>} = 100,65                Ethereum: pallet_ethereum::{Pallet, Config, Call, Storage, Event, Origin} = 101,6667                EvmCoderSubstrate: pallet_evm_coder_substrate::{Pallet, Storage} = 150,68                EvmContractHelpers: pallet_evm_contract_helpers::{Pallet, Storage} = 151,69                EvmTransactionPayment: pallet_evm_transaction_payment::{Pallet} = 152,70                EvmMigration: pallet_evm_migration::{Pallet, Call, Storage} = 153,71            }72        }73    }74}