1234567891011121314151617pub mod config;18pub mod construct_runtime;19pub mod dispatch;20pub mod ethereum;21pub mod identity;22pub mod instance;23pub mod maintenance;24pub mod runtime_apis;2526pub mod sponsoring;27#[allow(missing_docs)]28pub mod weights;2930#[cfg(test)]31pub mod tests;3233use frame_support::{34 traits::{Currency, Imbalance, OnUnbalanced},35 weights::Weight,36};37use sp_runtime::{38 generic, impl_opaque_keys,39 traits::{BlakeTwo256, BlockNumberProvider},40};41use sp_std::vec::Vec;42#[cfg(feature = "std")]43use sp_version::NativeVersion;44use up_common::types::{AccountId, BlockNumber};4546use crate::{AllPalletsWithSystem, Aura, Balances, Runtime, RuntimeCall, Signature, Treasury};4748#[macro_export]49macro_rules! unsupported {50 () => {51 pallet_common::unsupported!($crate::Runtime)52 };53}545556pub type Address = sp_runtime::MultiAddress<AccountId, ()>;5758pub type SignedBlock = generic::SignedBlock<Block>;5960pub type UncheckedExtrinsic =61 fp_self_contained::UncheckedExtrinsic<Address, RuntimeCall, Signature, SignedExtra>;6263pub type Header = generic::Header<BlockNumber, BlakeTwo256>;6465pub type Block = generic::Block<Header, UncheckedExtrinsic>;6667pub type BlockId = generic::BlockId<Block>;6869impl_opaque_keys! {70 pub struct SessionKeys {71 pub aura: Aura,72 }73}747576#[cfg(feature = "std")]77pub fn native_version() -> NativeVersion {78 NativeVersion {79 runtime_version: crate::VERSION,80 can_author_with: Default::default(),81 }82}8384pub type SignedExtra = (85 frame_system::CheckSpecVersion<Runtime>,86 frame_system::CheckTxVersion<Runtime>,87 frame_system::CheckGenesis<Runtime>,88 frame_system::CheckEra<Runtime>,89 pallet_charge_transaction::CheckNonce<Runtime>,90 frame_system::CheckWeight<Runtime>,91 maintenance::CheckMaintenance,92 identity::DisableIdentityCalls,93 pallet_charge_transaction::ChargeTransactionPayment<Runtime>,94 95 pallet_ethereum::FakeTransactionFinalizer<Runtime>,96);979899pub type Executive = frame_executive::Executive<100 Runtime,101 Block,102 frame_system::ChainContext<Runtime>,103 Runtime,104 AllPalletsWithSystem,105 AuraToCollatorSelection,106>;107108type NegativeImbalance = <Balances as Currency<AccountId>>::NegativeImbalance;109110pub(crate) type DealWithFees = Treasury;111112pub struct RelayChainBlockNumberProvider<T>(sp_std::marker::PhantomData<T>);113114impl<T: cumulus_pallet_parachain_system::Config> BlockNumberProvider115 for RelayChainBlockNumberProvider<T>116{117 type BlockNumber = BlockNumber;118119 fn current_block_number() -> Self::BlockNumber {120 cumulus_pallet_parachain_system::Pallet::<T>::validation_data()121 .map(|d| d.relay_parent_number)122 .unwrap_or_default()123 }124 #[cfg(feature = "runtime-benchmarks")]125 fn set_block_number(block: Self::BlockNumber) {126 cumulus_pallet_parachain_system::RelaychainDataProvider::<T>::set_block_number(block)127 }128}129130#[cfg(not(feature = "lookahead"))]131pub(crate) struct CheckInherents;132133#[cfg(not(feature = "lookahead"))]134impl cumulus_pallet_parachain_system::CheckInherents<Block> for CheckInherents {135 fn check_inherents(136 block: &Block,137 relay_state_proof: &cumulus_pallet_parachain_system::RelayChainStateProof,138 ) -> sp_inherents::CheckInherentsResult {139 use crate::InherentDataExt;140141 let relay_chain_slot = relay_state_proof142 .read_slot()143 .expect("Could not read the relay chain slot from the proof");144145 let inherent_data =146 cumulus_primitives_timestamp::InherentDataProvider::from_relay_chain_slot_and_duration(147 relay_chain_slot,148 sp_std::time::Duration::from_secs(6),149 )150 .create_inherent_data()151 .expect("Could not create the timestamp inherent data");152153 inherent_data.check_extrinsics(block)154 }155}156157#[derive(parity_scale_codec::Encode, parity_scale_codec::Decode)]158pub enum XCMPMessage<XAccountId, XBalance> {159 160 TransferToken(XAccountId, XBalance),161}162163pub struct AuraToCollatorSelection;164impl frame_support::traits::OnRuntimeUpgrade for AuraToCollatorSelection {165 fn on_runtime_upgrade() -> Weight {166 #[cfg(feature = "collator-selection")]167 {168 use frame_support::{storage::migration, BoundedVec};169 use pallet_session::SessionManager;170 use sp_runtime::{traits::OpaqueKeys, RuntimeAppPublic};171172 use crate::config::pallets::MaxCollators;173174 let mut weight = <Runtime as frame_system::Config>::DbWeight::get().reads(1);175176 let version = migration::get_storage_value::<()>(177 b"AuraToCollatorSelection",178 b"StorageVersion",179 &[],180 );181182 let should_upgrade = version.is_none();183184 if should_upgrade {185 log::info!(186 target: "runtime::aura_to_collator_selection",187 "Running migration of Aura authorities to Collator Selection invulnerables"188 );189190 let invulnerables = pallet_aura::Pallet::<Runtime>::authorities()191 .iter()192 .cloned()193 .filter_map(|authority_id| {194 weight.saturating_accrue(<Runtime as frame_system::Config>::DbWeight::get().reads_writes(1, 1));195 let vec = authority_id.to_raw_vec();196 let slice = vec.as_slice();197 let array: Option<[u8; 32]> = match slice.try_into() {198 Ok(a) => Some(a),199 Err(_) => {200 log::error!("Failed to convert an Aura authority to a Collator Selection invulnerable: {:?}", authority_id);201 None202 },203 };204 array.map(|a| (AccountId::from(a), authority_id))205 })206 .collect::<Vec<_>>();207208 let bounded_invulnerables = BoundedVec::<_, MaxCollators>::try_from(209 invulnerables210 .iter()211 .cloned()212 .map(|(acc, _)| acc)213 .collect::<Vec<_>>(),214 )215 .expect("Existing collators/invulnerables are more than MaxCollators");216217 <pallet_collator_selection::Invulnerables<Runtime>>::put(bounded_invulnerables);218219 let keys = invulnerables220 .into_iter()221 .map(|(acc, aura)| {222 (223 acc.clone(), 224 acc, 225 SessionKeys { aura }, 226 )227 })228 .collect::<Vec<_>>();229230 for (account, val, keys) in keys.iter() {231 for id in <Runtime as pallet_session::Config>::Keys::key_ids() {232 <pallet_session::KeyOwner<Runtime>>::insert((*id, keys.get_raw(*id)), val)233 }234 <pallet_session::NextKeys<Runtime>>::insert(val, keys);235 236 if frame_system::Pallet::<Runtime>::inc_consumers_without_limit(account)237 .is_err()238 {239 log::warn!(240 "We have entered an error with incrementing consumers without limit during the migration"241 );242 243 244 245 246 frame_system::Pallet::<Runtime>::inc_providers(account);247 }248 }249250 let initial_validators_0 =251 <Runtime as pallet_session::Config>::SessionManager::new_session(0)252 .unwrap_or_else(|| {253 frame_support::print(254 "No initial validator provided by `SessionManager`, use \255 session config keys to generate initial validator set.",256 );257 keys.iter().map(|x| x.1.clone()).collect()258 });259 260261262263264 let initial_validators_1 =265 <Runtime as pallet_session::Config>::SessionManager::new_session(1)266 .unwrap_or_else(|| initial_validators_0.clone());267 268269270271272 let queued_keys: Vec<_> = initial_validators_1273 .iter()274 .cloned()275 .map(|v| {276 (277 v.clone(),278 <pallet_session::NextKeys<Runtime>>::get(&v)279 .expect("Validator in session 1 missing keys!"),280 )281 })282 .collect();283284 285 286287 <pallet_session::Validators<Runtime>>::put(initial_validators_0);288 <pallet_session::QueuedKeys<Runtime>>::put(queued_keys);289290 <Runtime as pallet_session::Config>::SessionManager::start_session(0);291292 log::info!(293 target: "runtime::aura_to_collator_selection",294 "Migration of Aura authorities to Collator Selection invulnerables is complete."295 );296297 migration::put_storage_value::<()>(298 b"AuraToCollatorSelection",299 b"StorageVersion",300 &[],301 (),302 );303304 weight += <Runtime as frame_system::Config>::DbWeight::get().writes(1)305 } else {306 log::info!(307 target: "runtime::aura_to_collator_selection",308 "The storage migration has already been flagged as complete. No migration needs to be done.",309 );310 }311312 weight313 }314315 #[cfg(not(feature = "collator-selection"))]316 {317 Weight::zero()318 }319 }320}