// This file is part of Pezcumulus. // SPDX-License-Identifier: Unlicense // This is free and unencumbered software released into the public domain. // Anyone is free to copy, modify, publish, use, compile, sell, or // distribute this software, either in source code form or as a compiled // binary, for any purpose, commercial or non-commercial, and by any // means. // In jurisdictions that recognize copyright laws, the author or authors // of this software dedicate any and all copyright interest in the // software to the public domain. We make this dedication for the benefit // of the public at large and to the detriment of our heirs and // successors. We intend this dedication to be an overt act of // relinquishment in perpetuity of all present and future rights to this // software under copyright law. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. // IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR // OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, // ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR // OTHER DEALINGS IN THE SOFTWARE. // For more information, please refer to //! The PenPal runtime is designed as a test runtime that can be created with an arbitrary `ParaId`, //! such that multiple instances of the teyrchain can be on the same parent relay. Ensure that you //! have enough nodes running to support this or you will get scheduling errors. //! //! The PenPal runtime's primary use is for testing interactions between System teyrchains and //! other chains that are not trusted teleporters. #![cfg_attr(not(feature = "std"), no_std)] // `construct_runtime!` does a lot of recursion and requires us to increase the limit to 256. #![recursion_limit = "256"] // Make the WASM binary available. #[cfg(feature = "std")] include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs")); mod genesis_config_presets; mod weights; pub mod xcm_config; extern crate alloc; use alloc::{vec, vec::Vec}; pub use assets_common::local_and_foreign_assets::ForeignAssetReserveData; use assets_common::{ foreign_creators::ForeignCreators, local_and_foreign_assets::{LocalFromLeft, TargetFromLeft}, AssetIdForTrustBackedAssetsConvert, }; use cumulus_pallet_teyrchain_system::RelayNumberStrictlyIncreases; use cumulus_primitives_core::{AggregateMessageOrigin, ParaId}; use pezframe_support::{ construct_runtime, derive_impl, dispatch::DispatchClass, genesis_builder_helper::{build_state, get_preset}, ord_parameter_types, pezpallet_prelude::Weight, parameter_types, traits::{ tokens::{fungible, fungibles, imbalance::ResolveAssetTo}, AsEnsureOriginWithArg, ConstBool, ConstU128, ConstU32, ConstU64, ConstU8, Everything, TransformOrigin, }, weights::{ constants::WEIGHT_REF_TIME_PER_SECOND, ConstantMultiplier, FeePolynomial, WeightToFeeCoefficient, WeightToFeeCoefficients, WeightToFeePolynomial, }, PalletId, }; use pezframe_system::{ limits::{BlockLength, BlockWeights}, EnsureRoot, EnsureSigned, EnsureSignedBy, }; use pezpallet_revive::evm::runtime::EthExtra; use pezkuwi_runtime_common::{BlockHashCount, SlowAdjustingFeeUpdate}; use smallvec::smallvec; use pezsp_api::impl_runtime_apis; pub use pezsp_consensus_aura::sr25519::AuthorityId as AuraId; use pezsp_core::{crypto::KeyTypeId, OpaqueMetadata}; use pezsp_runtime::{ generic, impl_opaque_keys, traits::{AccountIdConversion, AccountIdLookup, BlakeTwo256, Block as BlockT}, transaction_validity::{TransactionSource, TransactionValidity}, ApplyExtrinsicResult, FixedU128, }; pub use pezsp_runtime::{traits::ConvertInto, MultiAddress, Perbill, Permill}; use testnet_teyrchains_constants::zagros::{consensus::*, time::*}; use teyrchains_common::{ impls::{AssetsToBlockAuthor, NonZeroIssuance}, message_queue::{NarrowOriginToSibling, ParaIdToSibling}, AccountId, Balance, BlockNumber, Hash, Header, Nonce, Signature, }; use weights::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight}; use xcm::{ latest::prelude::{AssetId as AssetLocationId, BodyId}, Version as XcmVersion, VersionedAsset, VersionedAssetId, VersionedAssets, VersionedLocation, VersionedXcm, }; use xcm_runtime_apis::{ dry_run::{CallDryRunEffects, Error as XcmDryRunApiError, XcmDryRunEffects}, fees::Error as XcmPaymentApiError, }; #[cfg(any(feature = "std", test))] pub use pezsp_runtime::BuildStorage; #[cfg(feature = "std")] use pezsp_version::NativeVersion; use pezsp_version::RuntimeVersion; use xcm_config::{ ForeignAssetsAssetId, LocationToAccountId, XcmConfig, XcmOriginToTransactDispatchOrigin, }; /// The address format for describing accounts. pub type Address = MultiAddress; /// Block type as expected by this runtime. pub type Block = generic::Block; /// A Block signed with a Justification pub type SignedBlock = generic::SignedBlock; /// BlockId type as expected by this runtime. pub type BlockId = generic::BlockId; // Id used for identifying assets. pub type AssetId = u32; /// The extension to the basic transaction logic. pub type TxExtension = ( pezframe_system::AuthorizeCall, pezframe_system::CheckNonZeroSender, pezframe_system::CheckSpecVersion, pezframe_system::CheckTxVersion, pezframe_system::CheckGenesis, pezframe_system::CheckEra, pezframe_system::CheckNonce, pezframe_system::CheckWeight, pezpallet_asset_tx_payment::ChargeAssetTxPayment, pezframe_metadata_hash_extension::CheckMetadataHash, pezpallet_revive::evm::tx_extension::SetOrigin, pezframe_system::WeightReclaim, ); /// Default extensions applied to Ethereum transactions. #[derive(Clone, PartialEq, Eq, Debug)] pub struct EthExtraImpl; impl EthExtra for EthExtraImpl { type Config = Runtime; type Extension = TxExtension; fn get_eth_extension(nonce: u32, tip: Balance) -> Self::Extension { ( pezframe_system::AuthorizeCall::::new(), pezframe_system::CheckNonZeroSender::::new(), pezframe_system::CheckSpecVersion::::new(), pezframe_system::CheckTxVersion::::new(), pezframe_system::CheckGenesis::::new(), pezframe_system::CheckEra::::from(generic::Era::Immortal), pezframe_system::CheckNonce::::from(nonce), pezframe_system::CheckWeight::::new(), pezpallet_asset_tx_payment::ChargeAssetTxPayment::::from(tip, None), pezframe_metadata_hash_extension::CheckMetadataHash::::new(false), pezpallet_revive::evm::tx_extension::SetOrigin::::new_from_eth_transaction(), pezframe_system::WeightReclaim::::new(), ) .into() } } /// Unchecked extrinsic type as expected by this runtime. pub type UncheckedExtrinsic = pezpallet_revive::evm::runtime::UncheckedExtrinsic; pub type Migrations = ( pezpallet_balances::migration::MigrateToTrackInactive, pezpallet_collator_selection::migration::v1::MigrateToV1, pezpallet_session::migrations::v1::MigrateV0ToV1< Runtime, pezpallet_session::migrations::v1::InitOffenceSeverity, >, ); /// Executive: handles dispatch to the various modules. pub type Executive = pezframe_executive::Executive< Runtime, Block, pezframe_system::ChainContext, Runtime, AllPalletsWithSystem, >; /// Handles converting a weight scalar to a fee value, based on the scale and granularity of the /// node's balance type. /// /// This should typically create a mapping between the following ranges: /// - `[0, MAXIMUM_BLOCK_WEIGHT]` /// - `[Balance::min, Balance::max]` /// /// Yet, it can be used for any other sort of change to weight-fee. Some examples being: /// - Setting it to `0` will essentially disable the weight fee. /// - Setting it to `1` will cause the literal `#[weight = x]` values to be charged. pub struct WeightToFee; impl pezframe_support::weights::WeightToFee for WeightToFee { type Balance = Balance; fn weight_to_fee(weight: &Weight) -> Self::Balance { let time_poly: FeePolynomial = RefTimeToFee::polynomial().into(); let proof_poly: FeePolynomial = ProofSizeToFee::polynomial().into(); // Take the maximum instead of the sum to charge by the more scarce resource. time_poly.eval(weight.ref_time()).max(proof_poly.eval(weight.proof_size())) } } /// Maps the reference time component of `Weight` to a fee. pub struct RefTimeToFee; impl WeightToFeePolynomial for RefTimeToFee { type Balance = Balance; fn polynomial() -> WeightToFeeCoefficients { let p = MILLIUNIT / 10; let q = 100 * Balance::from(ExtrinsicBaseWeight::get().ref_time()); smallvec![WeightToFeeCoefficient { degree: 1, negative: false, coeff_frac: Perbill::from_rational(p % q, q), coeff_integer: p / q, }] } } /// Maps the proof size component of `Weight` to a fee. pub struct ProofSizeToFee; impl WeightToFeePolynomial for ProofSizeToFee { type Balance = Balance; fn polynomial() -> WeightToFeeCoefficients { // Map 10kb proof to 1 CENT. let p = MILLIUNIT / 10; let q = 10_000; smallvec![WeightToFeeCoefficient { degree: 1, negative: false, coeff_frac: Perbill::from_rational(p % q, q), coeff_integer: p / q, }] } } /// Opaque types. These are used by the CLI to instantiate machinery that don't need to know /// the specifics of the runtime. They can then be made to be agnostic over specific formats /// of data like extrinsics, allowing for them to continue syncing the network through upgrades /// to even the core data structures. pub mod opaque { use super::*; use pezsp_runtime::{generic, traits::BlakeTwo256}; pub use pezsp_runtime::OpaqueExtrinsic as UncheckedExtrinsic; /// Opaque block header type. pub type Header = generic::Header; /// Opaque block type. pub type Block = generic::Block; /// Opaque block identifier type. pub type BlockId = generic::BlockId; } impl_opaque_keys! { pub struct SessionKeys { pub aura: Aura, } } #[pezsp_version::runtime_version] pub const VERSION: RuntimeVersion = RuntimeVersion { spec_name: alloc::borrow::Cow::Borrowed("penpal-teyrchain"), impl_name: alloc::borrow::Cow::Borrowed("penpal-teyrchain"), authoring_version: 1, spec_version: 1, impl_version: 0, apis: RUNTIME_API_VERSIONS, transaction_version: 1, system_version: 1, }; // Unit = the base number of indivisible units for balances pub const UNIT: Balance = 1_000_000_000_000; pub const MILLIUNIT: Balance = 1_000_000_000; pub const MICROUNIT: Balance = 1_000_000; /// The existential deposit. Set to 1/10 of the Connected Relay Chain. pub const EXISTENTIAL_DEPOSIT: Balance = MILLIUNIT; /// We assume that ~5% of the block weight is consumed by `on_initialize` handlers. This is /// used to limit the maximal weight of a single extrinsic. const AVERAGE_ON_INITIALIZE_RATIO: Perbill = Perbill::from_percent(5); /// We allow `Normal` extrinsics to fill up the block up to 75%, the rest can be used by /// `Operational` extrinsics. const NORMAL_DISPATCH_RATIO: Perbill = Perbill::from_percent(75); /// We allow for 0.5 of a second of compute with a 12 second average block time. const MAXIMUM_BLOCK_WEIGHT: Weight = Weight::from_parts( WEIGHT_REF_TIME_PER_SECOND.saturating_div(2), cumulus_primitives_core::relay_chain::MAX_POV_SIZE as u64, ); /// The version information used to identify this runtime when compiled natively. #[cfg(feature = "std")] pub fn native_version() -> NativeVersion { NativeVersion { runtime_version: VERSION, can_author_with: Default::default() } } parameter_types! { pub const Version: RuntimeVersion = VERSION; // This part is copied from Bizinikiwi's `bin/node/runtime/src/lib.rs`. // The `RuntimeBlockLength` and `RuntimeBlockWeights` exist here because the // `DeletionWeightLimit` and `DeletionQueueDepth` depend on those to parameterize // the lazy contract deletion. pub RuntimeBlockLength: BlockLength = BlockLength::max_with_normal_ratio(5 * 1024 * 1024, NORMAL_DISPATCH_RATIO); pub RuntimeBlockWeights: BlockWeights = BlockWeights::builder() .base_block(BlockExecutionWeight::get()) .for_class(DispatchClass::all(), |weights| { weights.base_extrinsic = ExtrinsicBaseWeight::get(); }) .for_class(DispatchClass::Normal, |weights| { weights.max_total = Some(NORMAL_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT); }) .for_class(DispatchClass::Operational, |weights| { weights.max_total = Some(MAXIMUM_BLOCK_WEIGHT); // Operational transactions have some extra reserved space, so that they // are included even if block reached `MAXIMUM_BLOCK_WEIGHT`. weights.reserved = Some( MAXIMUM_BLOCK_WEIGHT - NORMAL_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT ); }) .avg_block_initialization(AVERAGE_ON_INITIALIZE_RATIO) .build_or_panic(); pub const SS58Prefix: u16 = 42; } // Configure FRAME pallets to include in runtime. #[derive_impl(pezframe_system::config_preludes::TestDefaultConfig)] impl pezframe_system::Config for Runtime { /// The identifier used to distinguish between accounts. type AccountId = AccountId; /// The aggregated dispatch type that is available for extrinsics. type RuntimeCall = RuntimeCall; /// The lookup mechanism to get account ID from whatever is passed in dispatchers. type Lookup = AccountIdLookup; /// The index type for storing how many extrinsics an account has signed. type Nonce = Nonce; /// The type for hashing blocks and tries. type Hash = Hash; /// The hashing algorithm used. type Hashing = BlakeTwo256; /// The block type. type Block = Block; /// The ubiquitous event type. type RuntimeEvent = RuntimeEvent; /// The ubiquitous origin type. type RuntimeOrigin = RuntimeOrigin; /// Maximum number of block number to block hash mappings to keep (oldest pruned first). type BlockHashCount = BlockHashCount; /// Runtime version. type Version = Version; /// Converts a module to an index of this module in the runtime. type PalletInfo = PalletInfo; /// The data to be stored in an account. type AccountData = pezpallet_balances::AccountData; /// What to do if a new account is created. type OnNewAccount = (); /// What to do if an account is fully reaped from the system. type OnKilledAccount = (); /// The weight of database operations that the runtime can invoke. type DbWeight = RocksDbWeight; /// The basic call filter to use in dispatchable. type BaseCallFilter = Everything; /// Weight information for the extrinsics of this pallet. type SystemWeightInfo = (); /// Block & extrinsics weights: base values and limits. type BlockWeights = RuntimeBlockWeights; /// The maximum length of a block (in bytes). type BlockLength = RuntimeBlockLength; /// This is used as an identifier of the chain. 42 is the generic bizinikiwi prefix. type SS58Prefix = SS58Prefix; /// The action to take on a Runtime Upgrade type OnSetCode = cumulus_pallet_teyrchain_system::TeyrchainSetCode; type MaxConsumers = pezframe_support::traits::ConstU32<16>; type SingleBlockMigrations = Migrations; } impl pezpallet_timestamp::Config for Runtime { /// A timestamp: milliseconds since the unix epoch. type Moment = u64; type OnTimestampSet = Aura; type MinimumPeriod = ConstU64<{ SLOT_DURATION / 2 }>; type WeightInfo = (); } impl pezpallet_authorship::Config for Runtime { type FindAuthor = pezpallet_session::FindAccountFromAuthorIndex; type EventHandler = (CollatorSelection,); } parameter_types! { pub const ExistentialDeposit: Balance = EXISTENTIAL_DEPOSIT; } impl pezpallet_balances::Config for Runtime { type MaxLocks = ConstU32<50>; /// The type for recording an account's balance. type Balance = Balance; /// The ubiquitous event type. type RuntimeEvent = RuntimeEvent; type DustRemoval = (); type ExistentialDeposit = ExistentialDeposit; type AccountStore = System; type WeightInfo = pezpallet_balances::weights::BizinikiwiWeight; type MaxReserves = ConstU32<50>; type ReserveIdentifier = [u8; 8]; type RuntimeHoldReason = RuntimeHoldReason; type RuntimeFreezeReason = RuntimeFreezeReason; type FreezeIdentifier = (); type MaxFreezes = ConstU32<0>; type DoneSlashHandler = (); } parameter_types! { /// Relay Chain `TransactionByteFee` / 10 pub const TransactionByteFee: Balance = 10 * MICROUNIT; } impl pezpallet_transaction_payment::Config for Runtime { type RuntimeEvent = RuntimeEvent; type OnChargeTransaction = pezpallet_transaction_payment::FungibleAdapter; type WeightToFee = pezpallet_revive::evm::fees::BlockRatioFee<1, 1, Self>; type LengthToFee = ConstantMultiplier; type FeeMultiplierUpdate = SlowAdjustingFeeUpdate; type OperationalFeeMultiplier = ConstU8<5>; type WeightInfo = (); } parameter_types! { pub const AssetDeposit: Balance = 0; pub const AssetAccountDeposit: Balance = 0; pub const ApprovalDeposit: Balance = 0; pub const AssetsStringLimit: u32 = 50; pub const MetadataDepositBase: Balance = 0; pub const MetadataDepositPerByte: Balance = 0; } // /// We allow root and the Relay Chain council to execute privileged asset operations. // pub type AssetsForceOrigin = // EnsureOneOf, EnsureXcm>>; pub type TrustBackedAssetsInstance = pezpallet_assets::Instance1; impl pezpallet_assets::Config for Runtime { type RuntimeEvent = RuntimeEvent; type Balance = Balance; type AssetId = AssetId; type AssetIdParameter = codec::Compact; type ReserveData = (); type Currency = Balances; type CreateOrigin = AsEnsureOriginWithArg>; type ForceOrigin = EnsureRoot; type AssetDeposit = AssetDeposit; type MetadataDepositBase = MetadataDepositBase; type MetadataDepositPerByte = MetadataDepositPerByte; type ApprovalDeposit = ApprovalDeposit; type StringLimit = AssetsStringLimit; type Holder = (); type Freezer = (); type Extra = (); type WeightInfo = pezpallet_assets::weights::BizinikiwiWeight; type CallbackHandle = (); type AssetAccountDeposit = AssetAccountDeposit; type RemoveItemsLimit = pezframe_support::traits::ConstU32<1000>; #[cfg(feature = "runtime-benchmarks")] type BenchmarkHelper = (); } parameter_types! { // we just reuse the same deposits pub const ForeignAssetsAssetDeposit: Balance = AssetDeposit::get(); pub const ForeignAssetsAssetAccountDeposit: Balance = AssetAccountDeposit::get(); pub const ForeignAssetsApprovalDeposit: Balance = ApprovalDeposit::get(); pub const ForeignAssetsAssetsStringLimit: u32 = AssetsStringLimit::get(); pub const ForeignAssetsMetadataDepositBase: Balance = MetadataDepositBase::get(); pub const ForeignAssetsMetadataDepositPerByte: Balance = MetadataDepositPerByte::get(); } /// Another pallet assets instance to store foreign assets from bridgehub. pub type ForeignAssetsInstance = pezpallet_assets::Instance2; impl pezpallet_assets::Config for Runtime { type RuntimeEvent = RuntimeEvent; type Balance = Balance; type AssetId = ForeignAssetsAssetId; type AssetIdParameter = ForeignAssetsAssetId; type ReserveData = ForeignAssetReserveData; type Currency = Balances; // This is to allow any other remote location to create foreign assets. Used in tests, not // recommended on real chains. type CreateOrigin = ForeignCreators; type ForceOrigin = EnsureRoot; type AssetDeposit = ForeignAssetsAssetDeposit; type MetadataDepositBase = ForeignAssetsMetadataDepositBase; type MetadataDepositPerByte = ForeignAssetsMetadataDepositPerByte; type ApprovalDeposit = ForeignAssetsApprovalDeposit; type StringLimit = ForeignAssetsAssetsStringLimit; type Holder = (); type Freezer = (); type Extra = (); type WeightInfo = pezpallet_assets::weights::BizinikiwiWeight; type CallbackHandle = (); type AssetAccountDeposit = ForeignAssetsAssetAccountDeposit; type RemoveItemsLimit = pezframe_support::traits::ConstU32<1000>; #[cfg(feature = "runtime-benchmarks")] type BenchmarkHelper = assets_common::benchmarks::LocationAssetsBenchmarkHelper; } parameter_types! { pub const AssetConversionPalletId: PalletId = PalletId(*b"py/ascon"); pub const LiquidityWithdrawalFee: Permill = Permill::from_percent(0); } ord_parameter_types! { pub const AssetConversionOrigin: pezsp_runtime::AccountId32 = AccountIdConversion::::into_account_truncating(&AssetConversionPalletId::get()); } pub type AssetsForceOrigin = EnsureRoot; pub type PoolAssetsInstance = pezpallet_assets::Instance3; impl pezpallet_assets::Config for Runtime { type RuntimeEvent = RuntimeEvent; type Balance = Balance; type RemoveItemsLimit = ConstU32<1000>; type AssetId = u32; type AssetIdParameter = u32; type ReserveData = (); type Currency = Balances; type CreateOrigin = AsEnsureOriginWithArg>; type ForceOrigin = AssetsForceOrigin; type AssetDeposit = ConstU128<0>; type AssetAccountDeposit = ConstU128<0>; type MetadataDepositBase = ConstU128<0>; type MetadataDepositPerByte = ConstU128<0>; type ApprovalDeposit = ConstU128<0>; type StringLimit = ConstU32<50>; type Holder = (); type Freezer = (); type Extra = (); type WeightInfo = pezpallet_assets::weights::BizinikiwiWeight; type CallbackHandle = (); #[cfg(feature = "runtime-benchmarks")] type BenchmarkHelper = (); } /// Union fungibles implementation for `Assets` and `ForeignAssets`. pub type LocalAndForeignAssets = fungibles::UnionOf< Assets, ForeignAssets, LocalFromLeft< AssetIdForTrustBackedAssetsConvert< xcm_config::TrustBackedAssetsPalletLocation, xcm::latest::Location, >, teyrchains_common::AssetIdForTrustBackedAssets, xcm::latest::Location, >, xcm::latest::Location, AccountId, >; /// Union fungibles implementation for [`LocalAndForeignAssets`] and `Balances`. pub type NativeAndAssets = fungible::UnionOf< Balances, LocalAndForeignAssets, TargetFromLeft, xcm::latest::Location, AccountId, >; pub type PoolIdToAccountId = pezpallet_asset_conversion::AccountIdConverter< AssetConversionPalletId, (xcm::latest::Location, xcm::latest::Location), >; impl pezpallet_asset_conversion::Config for Runtime { type RuntimeEvent = RuntimeEvent; type Balance = Balance; type HigherPrecisionBalance = pezsp_core::U256; type AssetKind = xcm::latest::Location; type Assets = NativeAndAssets; type PoolId = (Self::AssetKind, Self::AssetKind); type PoolLocator = pezpallet_asset_conversion::WithFirstAsset< xcm_config::RelayLocation, AccountId, Self::AssetKind, PoolIdToAccountId, >; type PoolAssetId = u32; type PoolAssets = PoolAssets; type PoolSetupFee = ConstU128<0>; // Asset class deposit fees are sufficient to prevent spam type PoolSetupFeeAsset = xcm_config::RelayLocation; type PoolSetupFeeTarget = ResolveAssetTo; type LiquidityWithdrawalFee = LiquidityWithdrawalFee; type LPFee = ConstU32<3>; type PalletId = AssetConversionPalletId; type MaxSwapPathLength = ConstU32<3>; type MintMinLiquidity = ConstU128<100>; type WeightInfo = (); #[cfg(feature = "runtime-benchmarks")] type BenchmarkHelper = assets_common::benchmarks::AssetPairFactory< xcm_config::RelayLocation, teyrchain_info::Pallet, xcm_config::TrustBackedAssetsPalletIndex, xcm::latest::Location, >; } parameter_types! { pub const ReservedXcmpWeight: Weight = MAXIMUM_BLOCK_WEIGHT.saturating_div(4); pub const ReservedDmpWeight: Weight = MAXIMUM_BLOCK_WEIGHT.saturating_div(4); pub const RelayOrigin: AggregateMessageOrigin = AggregateMessageOrigin::Parent; } type ConsensusHook = cumulus_pallet_aura_ext::FixedVelocityConsensusHook< Runtime, RELAY_CHAIN_SLOT_DURATION_MILLIS, BLOCK_PROCESSING_VELOCITY, UNINCLUDED_SEGMENT_CAPACITY, >; impl cumulus_pallet_teyrchain_system::Config for Runtime { type WeightInfo = (); type RuntimeEvent = RuntimeEvent; type OnSystemEvent = (); type SelfParaId = teyrchain_info::Pallet; type DmpQueue = pezframe_support::traits::EnqueueWithOrigin; type ReservedDmpWeight = ReservedDmpWeight; type OutboundXcmpMessageSource = XcmpQueue; type XcmpMessageHandler = XcmpQueue; type ReservedXcmpWeight = ReservedXcmpWeight; type CheckAssociatedRelayNumber = RelayNumberStrictlyIncreases; type ConsensusHook = cumulus_pallet_aura_ext::FixedVelocityConsensusHook< Runtime, RELAY_CHAIN_SLOT_DURATION_MILLIS, BLOCK_PROCESSING_VELOCITY, UNINCLUDED_SEGMENT_CAPACITY, >; type RelayParentOffset = ConstU32<0>; } impl teyrchain_info::Config for Runtime {} parameter_types! { pub MessageQueueServiceWeight: Weight = Perbill::from_percent(35) * RuntimeBlockWeights::get().max_block; } impl pezpallet_message_queue::Config for Runtime { type RuntimeEvent = RuntimeEvent; type WeightInfo = (); type MessageProcessor = xcm_builder::ProcessXcmMessage< AggregateMessageOrigin, xcm_executor::XcmExecutor, RuntimeCall, >; type Size = u32; // The XCMP queue pallet is only ever able to handle the `Sibling(ParaId)` origin: type QueueChangeHandler = NarrowOriginToSibling; type QueuePausedQuery = NarrowOriginToSibling; type HeapSize = pezsp_core::ConstU32<{ 103 * 1024 }>; type MaxStale = pezsp_core::ConstU32<8>; type ServiceWeight = MessageQueueServiceWeight; type IdleMaxServiceWeight = MessageQueueServiceWeight; } impl cumulus_pallet_aura_ext::Config for Runtime {} parameter_types! { /// The asset ID for the asset that we use to pay for message delivery fees. pub FeeAssetId: AssetLocationId = AssetLocationId(xcm_config::RelayLocation::get()); /// The base fee for the message delivery fees (3 CENTS). pub const BaseDeliveryFee: u128 = (1_000_000_000_000u128 / 100).saturating_mul(3); } pub type PriceForSiblingTeyrchainDelivery = pezkuwi_runtime_common::xcm_sender::ExponentialPrice< FeeAssetId, BaseDeliveryFee, TransactionByteFee, XcmpQueue, >; impl cumulus_pallet_xcmp_queue::Config for Runtime { type RuntimeEvent = RuntimeEvent; type ChannelInfo = TeyrchainSystem; type VersionWrapper = PezkuwiXcm; // Enqueue XCMP messages from siblings for later processing. type XcmpQueue = TransformOrigin; type MaxInboundSuspended = ConstU32<1_000>; type MaxActiveOutboundChannels = ConstU32<128>; // Most on-chain HRMP channels are configured to use 102400 bytes of max message size, so we // need to set the page size larger than that until we reduce the channel size on-chain. type MaxPageSize = ConstU32<{ 103 * 1024 }>; type ControllerOrigin = EnsureRoot; type ControllerOriginConverter = XcmOriginToTransactDispatchOrigin; type WeightInfo = (); type PriceForSiblingDelivery = PriceForSiblingTeyrchainDelivery; } parameter_types! { pub const Period: u32 = 6 * HOURS; pub const Offset: u32 = 0; } impl pezpallet_session::Config for Runtime { type RuntimeEvent = RuntimeEvent; type ValidatorId = ::AccountId; // we don't have stash and controller, thus we don't need the convert as well. type ValidatorIdOf = pezpallet_collator_selection::IdentityCollator; type ShouldEndSession = pezpallet_session::PeriodicSessions; type NextSessionRotation = pezpallet_session::PeriodicSessions; type SessionManager = CollatorSelection; // Essentially just Aura, but let's be pedantic. type SessionHandler = ::KeyTypeIdProviders; type Keys = SessionKeys; type DisablingStrategy = (); type WeightInfo = (); type Currency = Balances; type KeyDeposit = (); } impl pezpallet_aura::Config for Runtime { type AuthorityId = AuraId; type DisabledValidators = (); type MaxAuthorities = ConstU32<100_000>; type AllowMultipleBlocksPerSlot = ConstBool; type SlotDuration = ConstU64; } parameter_types! { pub const PotId: PalletId = PalletId(*b"PotStake"); pub const SessionLength: BlockNumber = 6 * HOURS; pub const ExecutiveBody: BodyId = BodyId::Executive; } // We allow root only to execute privileged collator selection operations. pub type CollatorSelectionUpdateOrigin = EnsureRoot; impl pezpallet_collator_selection::Config for Runtime { type RuntimeEvent = RuntimeEvent; type Currency = Balances; type UpdateOrigin = CollatorSelectionUpdateOrigin; type PotId = PotId; type MaxCandidates = ConstU32<100>; type MinEligibleCollators = ConstU32<4>; type MaxInvulnerables = ConstU32<20>; // should be a multiple of session or things will get inconsistent type KickThreshold = Period; type ValidatorId = ::AccountId; type ValidatorIdOf = pezpallet_collator_selection::IdentityCollator; type ValidatorRegistration = Session; type WeightInfo = (); } #[cfg(feature = "runtime-benchmarks")] pub struct AssetTxHelper; #[cfg(feature = "runtime-benchmarks")] impl pezpallet_asset_tx_payment::BenchmarkHelperTrait for AssetTxHelper { fn create_asset_id_parameter(_id: u32) -> (u32, u32) { unimplemented!("Penpal uses default weights"); } fn setup_balances_and_pool(_asset_id: u32, _account: AccountId) { unimplemented!("Penpal uses default weights"); } } impl pezpallet_asset_tx_payment::Config for Runtime { type RuntimeEvent = RuntimeEvent; type Fungibles = Assets; type OnChargeAssetTransaction = pezpallet_asset_tx_payment::FungiblesAdapter< pezpallet_assets::BalanceToAssetBalance< Balances, Runtime, ConvertInto, TrustBackedAssetsInstance, >, AssetsToBlockAuthor, >; type WeightInfo = (); #[cfg(feature = "runtime-benchmarks")] type BenchmarkHelper = AssetTxHelper; } parameter_types! { pub const DepositPerItem: Balance = 0; pub const DepositPerChildTrieItem: Balance = 0; pub const DepositPerByte: Balance = 0; pub CodeHashLockupDepositPercent: Perbill = Perbill::from_percent(30); pub const MaxEthExtrinsicWeight: FixedU128 = FixedU128::from_rational(9, 10); } impl pezpallet_revive::Config for Runtime { type Time = Timestamp; type Balance = Balance; type Currency = Balances; type RuntimeEvent = RuntimeEvent; type RuntimeCall = RuntimeCall; type RuntimeOrigin = RuntimeOrigin; type DepositPerItem = DepositPerItem; type DepositPerChildTrieItem = DepositPerChildTrieItem; type DepositPerByte = DepositPerByte; type WeightInfo = pezpallet_revive::weights::BizinikiwiWeight; type Precompiles = (); type AddressMapper = pezpallet_revive::AccountId32Mapper; type RuntimeMemory = ConstU32<{ 128 * 1024 * 1024 }>; type PVFMemory = ConstU32<{ 512 * 1024 * 1024 }>; type UnsafeUnstableInterface = ConstBool; type AllowEVMBytecode = ConstBool; type UploadOrigin = EnsureSigned; type InstantiateOrigin = EnsureSigned; type RuntimeHoldReason = RuntimeHoldReason; type CodeHashLockupDepositPercent = CodeHashLockupDepositPercent; type ChainId = ConstU64<420_420_999>; type NativeToEthRatio = ConstU32<1_000_000>; // 10^(18 - 12) Eth is 10^18, Native is 10^12. type FindAuthor = ::FindAuthor; type FeeInfo = pezpallet_revive::evm::fees::Info; type MaxEthExtrinsicWeight = MaxEthExtrinsicWeight; type DebugEnabled = ConstBool; } impl pezpallet_sudo::Config for Runtime { type RuntimeEvent = RuntimeEvent; type RuntimeCall = RuntimeCall; type WeightInfo = pezpallet_sudo::weights::BizinikiwiWeight; } impl pezpallet_utility::Config for Runtime { type RuntimeEvent = RuntimeEvent; type RuntimeCall = RuntimeCall; type PalletsOrigin = OriginCaller; type WeightInfo = pezpallet_utility::weights::BizinikiwiWeight; } // Create the runtime by composing the FRAME pallets that were previously configured. construct_runtime!( pub enum Runtime { // System support stuff. System: pezframe_system = 0, TeyrchainSystem: cumulus_pallet_teyrchain_system = 1, Timestamp: pezpallet_timestamp = 2, TeyrchainInfo: teyrchain_info = 3, // Monetary stuff. Balances: pezpallet_balances = 10, TransactionPayment: pezpallet_transaction_payment = 11, AssetTxPayment: pezpallet_asset_tx_payment = 12, // Collator support. The order of these 4 are important and shall not change. Authorship: pezpallet_authorship = 20, CollatorSelection: pezpallet_collator_selection = 21, Session: pezpallet_session = 22, Aura: pezpallet_aura = 23, AuraExt: cumulus_pallet_aura_ext = 24, // XCM helpers. XcmpQueue: cumulus_pallet_xcmp_queue = 30, PezkuwiXcm: pezpallet_xcm = 31, CumulusXcm: cumulus_pallet_xcm = 32, MessageQueue: pezpallet_message_queue = 34, // Handy utilities. Utility: pezpallet_utility = 40, // The main stage. Assets: pezpallet_assets:: = 50, ForeignAssets: pezpallet_assets:: = 51, PoolAssets: pezpallet_assets:: = 52, AssetConversion: pezpallet_asset_conversion = 53, Revive: pezpallet_revive = 60, Sudo: pezpallet_sudo = 255, } ); #[cfg(feature = "runtime-benchmarks")] mod benches { pezframe_benchmarking::define_benchmarks!( [pezframe_system, SystemBench::] [pezframe_system_extensions, SystemExtensionsBench::] [pezpallet_balances, Balances] [pezpallet_message_queue, MessageQueue] [pezpallet_session, SessionBench::] [pezpallet_sudo, Sudo] [pezpallet_timestamp, Timestamp] [pezpallet_collator_selection, CollatorSelection] [cumulus_pallet_teyrchain_system, TeyrchainSystem] [cumulus_pallet_xcmp_queue, XcmpQueue] [pezpallet_utility, Utility] ); } pezpallet_revive::impl_runtime_apis_plus_revive_traits!( Runtime, Revive, Executive, EthExtraImpl, impl pezsp_consensus_aura::AuraApi for Runtime { fn slot_duration() -> pezsp_consensus_aura::SlotDuration { pezsp_consensus_aura::SlotDuration::from_millis(SLOT_DURATION) } fn authorities() -> Vec { pezpallet_aura::Authorities::::get().into_inner() } } impl pezsp_api::Core for Runtime { fn version() -> RuntimeVersion { VERSION } fn execute_block(block: ::LazyBlock) { Executive::execute_block(block) } fn initialize_block(header: &::Header) -> pezsp_runtime::ExtrinsicInclusionMode { Executive::initialize_block(header) } } impl pezsp_api::Metadata for Runtime { fn metadata() -> OpaqueMetadata { OpaqueMetadata::new(Runtime::metadata().into()) } fn metadata_at_version(version: u32) -> Option { Runtime::metadata_at_version(version) } fn metadata_versions() -> alloc::vec::Vec { Runtime::metadata_versions() } } impl pezsp_block_builder::BlockBuilder for Runtime { fn apply_extrinsic(extrinsic: ::Extrinsic) -> ApplyExtrinsicResult { Executive::apply_extrinsic(extrinsic) } fn finalize_block() -> ::Header { Executive::finalize_block() } fn inherent_extrinsics(data: pezsp_inherents::InherentData) -> Vec<::Extrinsic> { data.create_extrinsics() } fn check_inherents( block: ::LazyBlock, data: pezsp_inherents::InherentData, ) -> pezsp_inherents::CheckInherentsResult { data.check_extrinsics(&block) } } impl pezsp_transaction_pool::runtime_api::TaggedTransactionQueue for Runtime { fn validate_transaction( source: TransactionSource, tx: ::Extrinsic, block_hash: ::Hash, ) -> TransactionValidity { Executive::validate_transaction(source, tx, block_hash) } } impl pezsp_offchain::OffchainWorkerApi for Runtime { fn offchain_worker(header: &::Header) { Executive::offchain_worker(header) } } impl pezsp_session::SessionKeys for Runtime { fn generate_session_keys(seed: Option>) -> Vec { SessionKeys::generate(seed) } fn decode_session_keys( encoded: Vec, ) -> Option, KeyTypeId)>> { SessionKeys::decode_into_raw_public_keys(&encoded) } } impl pezframe_system_rpc_runtime_api::AccountNonceApi for Runtime { fn account_nonce(account: AccountId) -> Nonce { System::account_nonce(account) } } impl pezpallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi for Runtime { fn query_info( uxt: ::Extrinsic, len: u32, ) -> pezpallet_transaction_payment_rpc_runtime_api::RuntimeDispatchInfo { TransactionPayment::query_info(uxt, len) } fn query_fee_details( uxt: ::Extrinsic, len: u32, ) -> pezpallet_transaction_payment::FeeDetails { TransactionPayment::query_fee_details(uxt, len) } fn query_weight_to_fee(weight: Weight) -> Balance { TransactionPayment::weight_to_fee(weight) } fn query_length_to_fee(length: u32) -> Balance { TransactionPayment::length_to_fee(length) } } impl pezpallet_transaction_payment_rpc_runtime_api::TransactionPaymentCallApi for Runtime { fn query_call_info( call: RuntimeCall, len: u32, ) -> pezpallet_transaction_payment::RuntimeDispatchInfo { TransactionPayment::query_call_info(call, len) } fn query_call_fee_details( call: RuntimeCall, len: u32, ) -> pezpallet_transaction_payment::FeeDetails { TransactionPayment::query_call_fee_details(call, len) } fn query_weight_to_fee(weight: Weight) -> Balance { TransactionPayment::weight_to_fee(weight) } fn query_length_to_fee(length: u32) -> Balance { TransactionPayment::length_to_fee(length) } } impl cumulus_primitives_core::CollectCollationInfo for Runtime { fn collect_collation_info(header: &::Header) -> cumulus_primitives_core::CollationInfo { TeyrchainSystem::collect_collation_info(header) } } impl xcm_runtime_apis::fees::XcmPaymentApi for Runtime { fn query_acceptable_payment_assets(xcm_version: xcm::Version) -> Result, XcmPaymentApiError> { let acceptable_assets = vec![AssetLocationId(xcm_config::RelayLocation::get())]; PezkuwiXcm::query_acceptable_payment_assets(xcm_version, acceptable_assets) } fn query_weight_to_asset_fee(weight: Weight, asset: VersionedAssetId) -> Result { type Trader = ::Trader; PezkuwiXcm::query_weight_to_asset_fee::(weight, asset) } fn query_xcm_weight(message: VersionedXcm<()>) -> Result { PezkuwiXcm::query_xcm_weight(message) } fn query_delivery_fees(destination: VersionedLocation, message: VersionedXcm<()>, asset_id: VersionedAssetId) -> Result { type AssetExchanger = ::AssetExchanger; PezkuwiXcm::query_delivery_fees::(destination, message, asset_id) } } impl xcm_runtime_apis::dry_run::DryRunApi for Runtime { fn dry_run_call(origin: OriginCaller, call: RuntimeCall, result_xcms_version: XcmVersion) -> Result, XcmDryRunApiError> { PezkuwiXcm::dry_run_call::(origin, call, result_xcms_version) } fn dry_run_xcm(origin_location: VersionedLocation, xcm: VersionedXcm) -> Result, XcmDryRunApiError> { PezkuwiXcm::dry_run_xcm::(origin_location, xcm) } } impl xcm_runtime_apis::conversions::LocationToAccountApi for Runtime { fn convert_location(location: VersionedLocation) -> Result< AccountId, xcm_runtime_apis::conversions::Error > { xcm_runtime_apis::conversions::LocationToAccountHelper::< AccountId, xcm_config::LocationToAccountId, >::convert_location(location) } } impl xcm_runtime_apis::trusted_query::TrustedQueryApi for Runtime { fn is_trusted_reserve(asset: VersionedAsset, location: VersionedLocation) -> xcm_runtime_apis::trusted_query::XcmTrustedQueryResult { PezkuwiXcm::is_trusted_reserve(asset, location) } fn is_trusted_teleporter(asset: VersionedAsset, location: VersionedLocation) -> xcm_runtime_apis::trusted_query::XcmTrustedQueryResult { PezkuwiXcm::is_trusted_teleporter(asset, location) } } impl xcm_runtime_apis::authorized_aliases::AuthorizedAliasersApi for Runtime { fn authorized_aliasers(target: VersionedLocation) -> Result< Vec, xcm_runtime_apis::authorized_aliases::Error > { PezkuwiXcm::authorized_aliasers(target) } fn is_authorized_alias(origin: VersionedLocation, target: VersionedLocation) -> Result< bool, xcm_runtime_apis::authorized_aliases::Error > { PezkuwiXcm::is_authorized_alias(origin, target) } } #[cfg(feature = "try-runtime")] impl pezframe_try_runtime::TryRuntime for Runtime { fn on_runtime_upgrade(checks: pezframe_try_runtime::UpgradeCheckSelect) -> (Weight, Weight) { let weight = Executive::try_runtime_upgrade(checks).unwrap(); (weight, RuntimeBlockWeights::get().max_block) } fn execute_block( block: ::LazyBlock, state_root_check: bool, signature_check: bool, select: pezframe_try_runtime::TryStateSelect, ) -> Weight { // NOTE: intentional unwrap: we don't want to propagate the error backwards, and want to // have a backtrace here. Executive::try_execute_block(block, state_root_check, signature_check, select).unwrap() } } #[cfg(feature = "runtime-benchmarks")] impl pezframe_benchmarking::Benchmark for Runtime { fn benchmark_metadata(extra: bool) -> ( Vec, Vec, ) { use pezframe_benchmarking::BenchmarkList; use pezframe_support::traits::StorageInfoTrait; use pezframe_system_benchmarking::Pallet as SystemBench; use pezframe_system_benchmarking::extensions::Pallet as SystemExtensionsBench; use cumulus_pallet_session_benchmarking::Pallet as SessionBench; let mut list = Vec::::new(); list_benchmarks!(list, extra); let storage_info = AllPalletsWithSystem::storage_info(); (list, storage_info) } #[allow(non_local_definitions)] fn dispatch_benchmark( config: pezframe_benchmarking::BenchmarkConfig ) -> Result, alloc::string::String> { use pezframe_benchmarking::BenchmarkBatch; use pezsp_storage::TrackedStorageKey; use pezframe_system_benchmarking::Pallet as SystemBench; use pezframe_system_benchmarking::extensions::Pallet as SystemExtensionsBench; impl pezframe_system_benchmarking::Config for Runtime {} use cumulus_pallet_session_benchmarking::Pallet as SessionBench; impl cumulus_pallet_session_benchmarking::Config for Runtime {} use pezframe_support::traits::WhitelistedStorageKeys; let whitelist: Vec = AllPalletsWithSystem::whitelisted_storage_keys(); let mut batches = Vec::::new(); let params = (&config, &whitelist); add_benchmarks!(params, batches); if batches.is_empty() { return Err("Benchmark not found for this pallet.".into()) } Ok(batches) } } impl pezsp_genesis_builder::GenesisBuilder for Runtime { fn build_state(config: Vec) -> pezsp_genesis_builder::Result { build_state::(config) } fn get_preset(id: &Option) -> Option> { get_preset::(id, &genesis_config_presets::get_preset) } fn preset_names() -> Vec { genesis_config_presets::preset_names() } } impl cumulus_primitives_core::GetTeyrchainInfo for Runtime { fn teyrchain_id() -> ParaId { TeyrchainInfo::teyrchain_id() } } impl cumulus_primitives_aura::AuraUnincludedSegmentApi for Runtime { fn can_build_upon( included_hash: ::Hash, slot: cumulus_primitives_aura::Slot, ) -> bool { ConsensusHook::can_build_upon(included_hash, slot) } } ); cumulus_pallet_teyrchain_system::register_validate_block! { Runtime = Runtime, BlockExecutor = cumulus_pallet_aura_ext::BlockExecutor::, }