1234567891011121314151617#[macro_export]18macro_rules! construct_runtime {19 () => {20 frame_support::construct_runtime! {2122 pub enum Runtime {23 System: frame_system = 0,24 StateTrieMigration: pallet_state_trie_migration = 1,2526 ParachainSystem: cumulus_pallet_parachain_system = 20,27 ParachainInfo: parachain_info = 21,2829 #[cfg(feature = "collator-selection")]30 Authorship: pallet_authorship = 22,3132 #[cfg(feature = "collator-selection")]33 CollatorSelection: pallet_collator_selection = 23,3435 #[cfg(feature = "collator-selection")]36 Session: pallet_session = 24,3738 Aura: pallet_aura = 25,39 AuraExt: cumulus_pallet_aura_ext = 26,4041 Balances: pallet_balances = 30,42 43 Timestamp: pallet_timestamp = 32,44 TransactionPayment: pallet_transaction_payment = 33,45 Treasury: pallet_treasury = 34,46 Sudo: pallet_sudo = 35,47 Vesting: orml_vesting = 37,4849 XTokens: orml_xtokens = 38,50 Tokens: orml_tokens = 39,51 5253 #[cfg(feature = "governance")]54 Identity: pallet_identity = 40,5556 #[cfg(feature = "preimage")]57 Preimage: pallet_preimage = 41,5859 #[cfg(feature = "governance")]60 Democracy: pallet_democracy = 42,6162 #[cfg(feature = "governance")]63 Council: pallet_collective::<Instance1> = 43,6465 #[cfg(feature = "governance")]66 TechnicalCommittee: pallet_collective::<Instance2> = 44,6768 #[cfg(feature = "governance")]69 CouncilMembership: pallet_membership::<Instance1> = 45,7071 #[cfg(feature = "governance")]72 TechnicalCommitteeMembership: pallet_membership::<Instance2> = 46,7374 #[cfg(feature = "governance")]75 FellowshipCollective: pallet_ranked_collective = 47,7677 #[cfg(feature = "governance")]78 FellowshipReferenda: pallet_referenda = 48,7980 #[cfg(feature = "governance")]81 Scheduler: pallet_scheduler = 49,8283 #[cfg(feature = "governance")]84 Origins: pallet_gov_origins = 99,8586 87 XcmpQueue: cumulus_pallet_xcmp_queue = 50,88 PolkadotXcm: pallet_xcm = 51,89 CumulusXcm: cumulus_pallet_xcm = 52,90 DmpQueue: cumulus_pallet_dmp_queue = 53,9192 93 Inflation: pallet_inflation = 60,94 Unique: pallet_unique::{Pallet, Call, Storage} = 61,9596 97 9899 Configuration: pallet_configuration = 63,100101 Charging: pallet_charge_transaction = 64,102 103 Common: pallet_common = 66,104 Fungible: pallet_fungible = 67,105106 #[cfg(feature = "refungible")]107 Refungible: pallet_refungible = 68,108109 Nonfungible: pallet_nonfungible = 69,110 Structure: pallet_structure = 70,111112 113114 115116 #[cfg(feature = "app-promotion")]117 AppPromotion: pallet_app_promotion = 73,118119 #[cfg(feature = "foreign-assets")]120 ForeignAssets: pallet_foreign_assets = 80,121122 123 EVM: pallet_evm = 100,124 Ethereum: pallet_ethereum = 101,125126 EvmCoderSubstrate: pallet_evm_coder_substrate = 150,127 EvmContractHelpers: pallet_evm_contract_helpers = 151,128 EvmTransactionPayment: pallet_evm_transaction_payment = 152,129 EvmMigration: pallet_evm_migration = 153,130131 Maintenance: pallet_maintenance = 154,132133 BalancesAdapter: pallet_balances_adapter = 155,134135 Utility: pallet_utility = 156,136137 #[cfg(feature = "pallet-test-utils")]138 TestUtils: pallet_test_utils = 255,139 }140 }141 };142}