Skip to content
lib.rs 90.9 KiB
Newer Older
// Copyright (C) Parity Technologies (UK) Ltd.
ddorgan's avatar
ddorgan committed
// This file is part of Polkadot.

// Polkadot is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// Polkadot is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with Polkadot.  If not, see <http://www.gnu.org/licenses/>.

//! The Westend runtime. This can be compiled with `#[no_std]`, ready for Wasm.
ddorgan's avatar
ddorgan committed

#![cfg_attr(not(feature = "std"), no_std)]
// `#[frame_support::runtime]!` does a lot of recursion and requires us to increase the limit.
#![recursion_limit = "512"]
ddorgan's avatar
ddorgan committed

use authority_discovery_primitives::AuthorityId as AuthorityDiscoveryId;
use beefy_primitives::{
	ecdsa_crypto::{AuthorityId as BeefyId, Signature as BeefySignature},
	mmr::{BeefyDataProvider, MmrLeafVersion},
};
use frame_election_provider_support::{bounds::ElectionBoundsBuilder, onchain, SequentialPhragmen};
	derive_impl,
	genesis_builder_helper::{build_config, create_default_config},
	parameter_types,
		fungible::HoldConsideration, ConstU32, Contains, EitherOf, EitherOfDiverse, EverythingBut,
		InstanceFilter, KeyOwnerProofSystem, LinearStoragePrice, ProcessMessage,
		ProcessMessageError, WithdrawReasons,
	},
	weights::{ConstantMultiplier, WeightMeter},
use frame_system::{EnsureRoot, EnsureSigned};
use pallet_grandpa::{fg_primitives, AuthorityId as GrandpaId};
use pallet_identity::legacy::IdentityInfo;
use pallet_session::historical as session_historical;
use pallet_transaction_payment::{CurrencyAdapter, FeeDetails, RuntimeDispatchInfo};
use parity_scale_codec::{Decode, Encode, MaxEncodedLen};
	slashing,
	vstaging::{ApprovalVotingParams, NodeFeatures},
	AccountId, AccountIndex, Balance, BlockNumber, CandidateEvent, CandidateHash,
	CommittedCandidateReceipt, CoreState, DisputeState, ExecutorParams, GroupRotationInfo, Hash,
	Id as ParaId, InboundDownwardMessage, InboundHrmpMessage, Moment, Nonce,
	OccupiedCoreAssumption, PersistedValidationData, PvfCheckStatement, ScrapedOnChainVotes,
	SessionInfo, Signature, ValidationCode, ValidationCodeHash, ValidatorId, ValidatorIndex,
	ValidatorSignature, PARACHAIN_KEY_TYPE_ID,
ddorgan's avatar
ddorgan committed
};
use runtime_common::{
	assigned_slots, auctions, crowdloan,
	elections::OnChainAccuracy,
	identity_migrator, impl_runtime_weights,
Francisco Aguirre's avatar
Francisco Aguirre committed
		LocatableAssetConverter, ToAuthor, VersionedLocatableAsset, VersionedLocationConverter,
	paras_registrar, paras_sudo_wrapper, prod_or_fast, slots,
	traits::Leaser,
	BalanceToU256, BlockHashCount, BlockLength, CurrencyToVote, SlowAdjustingFeeUpdate,
	U256ToBalance,
	assigner_coretime as parachains_assigner_coretime,
	assigner_on_demand as parachains_assigner_on_demand, configuration as parachains_configuration,
	coretime, disputes as parachains_disputes,
	disputes::slashing as parachains_slashing,
	dmp as parachains_dmp, hrmp as parachains_hrmp, inclusion as parachains_inclusion,
	inclusion::{AggregateMessageOrigin, UmpQueueId},
	initializer as parachains_initializer, origin as parachains_origin, paras as parachains_paras,
	paras_inherent as parachains_paras_inherent, reward_points as parachains_reward_points,
	runtime_api_impl::{
		v7 as parachains_runtime_api_impl, vstaging as parachains_staging_runtime_api_impl,
	},
	scheduler as parachains_scheduler, session_info as parachains_session_info,
	shared as parachains_shared,
ddorgan's avatar
ddorgan committed
};
use sp_core::{OpaqueMetadata, RuntimeDebug, H256};
ddorgan's avatar
ddorgan committed
use sp_runtime::{
	create_runtime_str,
	curve::PiecewiseLinear,
	generic, impl_opaque_keys,
ddorgan's avatar
ddorgan committed
	traits::{
		BlakeTwo256, Block as BlockT, ConvertInto, Extrinsic as ExtrinsicT, IdentityLookup,
		Keccak256, OpaqueKeys, SaturatedConversion, Verify,
ddorgan's avatar
ddorgan committed
	},
	transaction_validity::{TransactionPriority, TransactionSource, TransactionValidity},
	ApplyExtrinsicResult, BoundToRuntimeAppPublic, FixedU128, KeyTypeId, Perbill, Percent, Permill,
	RuntimeAppPublic,
ddorgan's avatar
ddorgan committed
};
use sp_staking::SessionIndex;
use sp_std::{collections::btree_map::BTreeMap, prelude::*};
ddorgan's avatar
ddorgan committed
#[cfg(any(feature = "std", test))]
use sp_version::NativeVersion;
use sp_version::RuntimeVersion;
Francisco Aguirre's avatar
Francisco Aguirre committed
	latest::{InteriorLocation, Junction, Junction::PalletInstance},
	VersionedLocation,
};
use xcm_builder::PayOverXcm;
ddorgan's avatar
ddorgan committed

pub use frame_system::Call as SystemCall;
pub use pallet_balances::Call as BalancesCall;
pub use pallet_election_provider_multi_phase::{Call as EPMCall, GeometricDepositBase};
ddorgan's avatar
ddorgan committed
#[cfg(feature = "std")]
pub use pallet_staking::StakerStatus;
use pallet_staking::UseValidatorsMap;
pub use pallet_timestamp::Call as TimestampCall;
ddorgan's avatar
ddorgan committed
#[cfg(any(feature = "std", test))]
pub use sp_runtime::BuildStorage;

/// Constant values used within the runtime.
use westend_runtime_constants::{currency::*, fee::*, system_parachain::BROKER_ID, time::*};
ddorgan's avatar
ddorgan committed

mod bag_thresholds;
pub mod xcm_config;
// Implemented types.
mod impls;
use impls::ToParachainIdentityReaper;

// Governance and configurations.
pub mod governance;
use governance::{
	pallet_custom_origins, AuctionAdmin, FellowshipAdmin, GeneralAdmin, LeaseAdmin, StakingAdmin,
	Treasurer, TreasurySpender,
};

impl_runtime_weights!(westend_runtime_constants);

ddorgan's avatar
ddorgan committed
// Make the WASM binary available.
#[cfg(feature = "std")]
include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));

/// Runtime version (Westend).
Doordashcon's avatar
Doordashcon committed
#[sp_version::runtime_version]
ddorgan's avatar
ddorgan committed
pub const VERSION: RuntimeVersion = RuntimeVersion {
	spec_name: create_runtime_str!("westend"),
	impl_name: create_runtime_str!("parity-westend"),
	authoring_version: 2,
	spec_version: 1_009_000,
	impl_version: 0,
ddorgan's avatar
ddorgan committed
	apis: RUNTIME_API_VERSIONS,
	transaction_version: 24,
	state_version: 1,
ddorgan's avatar
ddorgan committed
};

/// The BABE epoch configuration at genesis.
pub const BABE_GENESIS_EPOCH_CONFIG: babe_primitives::BabeEpochConfiguration =
	babe_primitives::BabeEpochConfiguration {
		c: PRIMARY_PROBABILITY,
		allowed_slots: babe_primitives::AllowedSlots::PrimaryAndSecondaryVRFSlots,
ddorgan's avatar
ddorgan committed
/// Native version.
#[cfg(any(feature = "std", test))]
pub fn native_version() -> NativeVersion {
	NativeVersion { runtime_version: VERSION, can_author_with: Default::default() }
ddorgan's avatar
ddorgan committed
}

/// A type to identify calls to the Identity pallet. These will be filtered to prevent invocation,
/// locking the state of the pallet and preventing further updates to identities and sub-identities.
/// The locked state will be the genesis state of a new system chain and then removed from the Relay
/// Chain.
pub struct IsIdentityCall;
impl Contains<RuntimeCall> for IsIdentityCall {
	fn contains(c: &RuntimeCall) -> bool {
		matches!(c, RuntimeCall::Identity(_))
	}
}

ddorgan's avatar
ddorgan committed
parameter_types! {
	pub const Version: RuntimeVersion = VERSION;
ddorgan's avatar
ddorgan committed
}

#[derive_impl(frame_system::config_preludes::RelayChainDefaultConfig)]
impl frame_system::Config for Runtime {
	type BaseCallFilter = EverythingBut<IsIdentityCall>;
	type BlockWeights = BlockWeights;
	type BlockLength = BlockLength;
	type Nonce = Nonce;
ddorgan's avatar
ddorgan committed
	type Hash = Hash;
	type AccountId = AccountId;
ddorgan's avatar
ddorgan committed
	type BlockHashCount = BlockHashCount;
	type DbWeight = RocksDbWeight;
ddorgan's avatar
ddorgan committed
	type Version = Version;
Loading full blame...