1234567891011121314151617use frame_support::parameter_types;18use sp_runtime::traits::AccountIdConversion;19use crate::{20 runtime_common::{21 dispatch::CollectionDispatchT,22 config::{substrate::TreasuryModuleId, ethereum::EvmCollectionHelpersAddress},23 weights::CommonWeights,24 RelayChainBlockNumberProvider,25 },26 Runtime, RuntimeEvent, RuntimeCall, RuntimeOrigin, Balances, Preimage,27};28use frame_support::traits::{ConstU32, ConstU64};29use up_common::{30 types::{AccountId, Balance, BlockNumber},31 constants::*,32};33use up_data_structs::{34 mapping::{EvmTokenAddressMapping, CrossTokenAddressMapping},35};36use sp_arithmetic::Perbill;3738#[cfg(feature = "scheduler")]39pub mod scheduler;4041#[cfg(feature = "foreign-assets")]42pub mod foreign_asset;4344#[cfg(feature = "app-promotion")]45pub mod app_promotion;4647#[cfg(feature = "collator-selection")]48pub mod collator_selection;495051#[cfg(feature = "collator-selection")]52pub mod governance;5354parameter_types! {55 pub TreasuryAccountId: AccountId = TreasuryModuleId::get().into_account_truncating();56 pub const CollectionCreationPrice: Balance = 2 * UNIQUE;57}5859impl pallet_common::Config for Runtime {60 type WeightInfo = pallet_common::weights::SubstrateWeight<Self>;61 type RuntimeEvent = RuntimeEvent;62 type Currency = Balances;63 type CollectionCreationPrice = CollectionCreationPrice;64 type TreasuryAccountId = TreasuryAccountId;65 type CollectionDispatch = CollectionDispatchT<Self>;6667 type EvmTokenAddressMapping = EvmTokenAddressMapping;68 type CrossTokenAddressMapping = CrossTokenAddressMapping<Self::AccountId>;69 type ContractAddress = EvmCollectionHelpersAddress;70}7172impl pallet_structure::Config for Runtime {73 type RuntimeEvent = RuntimeEvent;74 type RuntimeCall = RuntimeCall;75 type WeightInfo = pallet_structure::weights::SubstrateWeight<Self>;76}7778impl pallet_fungible::Config for Runtime {79 type WeightInfo = pallet_fungible::weights::SubstrateWeight<Self>;80}81impl pallet_refungible::Config for Runtime {82 type WeightInfo = pallet_refungible::weights::SubstrateWeight<Self>;83}84impl pallet_nonfungible::Config for Runtime {85 type WeightInfo = pallet_nonfungible::weights::SubstrateWeight<Self>;86}8788parameter_types! {89 pub const InflationBlockInterval: BlockNumber = 100; 90}919293impl pallet_inflation::Config for Runtime {94 type Currency = Balances;95 type TreasuryAccountId = TreasuryAccountId;96 type InflationBlockInterval = InflationBlockInterval;97 type BlockNumberProvider = RelayChainBlockNumberProvider<Runtime>;98}99100impl pallet_unique::Config for Runtime {101 type WeightInfo = pallet_unique::weights::SubstrateWeight<Self>;102 type CommonWeightInfo = CommonWeights<Self>;103 type RefungibleExtensionsWeightInfo = CommonWeights<Self>;104}105106parameter_types! {107 pub AppPromotionDailyRate: Perbill = Perbill::from_rational(5u32, 10_000);108 pub const MaxCollators: u32 = MAX_COLLATORS;109 pub const LicenseBond: Balance = GENESIS_LICENSE_BOND;110 pub const SessionPeriod: BlockNumber = SESSION_LENGTH;111 pub const DayRelayBlocks: BlockNumber = RELAY_DAYS;112}113114impl pallet_configuration::Config for Runtime {115 type RuntimeEvent = RuntimeEvent;116 type Currency = Balances;117 type DefaultWeightToFeeCoefficient = ConstU64<{ up_common::constants::WEIGHT_TO_FEE_COEFF }>;118 type DefaultMinGasPrice = ConstU64<{ up_common::constants::MIN_GAS_PRICE }>;119 type DefaultCollatorSelectionMaxCollators = MaxCollators;120 type DefaultCollatorSelectionKickThreshold = SessionPeriod;121 type DefaultCollatorSelectionLicenseBond = LicenseBond;122 type MaxXcmAllowedLocations = ConstU32<16>;123 type AppPromotionDailyRate = AppPromotionDailyRate;124 type DayRelayBlocks = DayRelayBlocks;125 type WeightInfo = pallet_configuration::weights::SubstrateWeight<Self>;126}127128impl pallet_maintenance::Config for Runtime {129 type RuntimeEvent = RuntimeEvent;130 type RuntimeOrigin = RuntimeOrigin;131 type RuntimeCall = RuntimeCall;132 type Preimages = Preimage;133 type WeightInfo = pallet_maintenance::weights::SubstrateWeight<Self>;134}