12345678910111213141516171819#![cfg_attr(not(feature = "std"), no_std)]2021#![recursion_limit = "1024"]22#![allow(clippy::from_over_into, clippy::identity_op)]23#![allow(clippy::fn_to_numeric_cast_with_truncation)]2425#[cfg(feature = "std")]26include!(concat!(env!("OUT_DIR"), "/wasm_binary.rs"));2728use sp_api::impl_runtime_apis;29use sp_core::{crypto::KeyTypeId, OpaqueMetadata, H256, U256, H160};30use sp_runtime::DispatchError;31323334use sp_runtime::{35 Permill, Perbill, Percent, create_runtime_str, generic, impl_opaque_keys,36 traits::{37 AccountIdLookup, BlakeTwo256, Block as BlockT, IdentifyAccount, Verify,38 AccountIdConversion, Zero,39 },40 transaction_validity::{TransactionSource, TransactionValidity},41 ApplyExtrinsicResult, MultiSignature, RuntimeAppPublic,42};4344use sp_std::prelude::*;4546#[cfg(feature = "std")]47use sp_version::NativeVersion;48use sp_version::RuntimeVersion;49pub use pallet_transaction_payment::{50 Multiplier, TargetedFeeAdjustment, FeeDetails, RuntimeDispatchInfo,51};5253pub use pallet_balances::Call as BalancesCall;54pub use pallet_evm::{EnsureAddressTruncated, HashedAddressMapping, Runner};55pub use frame_support::{56 construct_runtime, match_type,57 dispatch::DispatchResult,58 PalletId, parameter_types, StorageValue, ConsensusEngineId,59 traits::{60 tokens::currency::Currency as CurrencyT, OnUnbalanced as OnUnbalancedT, Everything,61 Currency, ExistenceRequirement, Get, IsInVec, KeyOwnerProofSystem, LockIdentifier,62 OnUnbalanced, Randomness, FindAuthor,63 },64 weights::{65 constants::{BlockExecutionWeight, ExtrinsicBaseWeight, RocksDbWeight, WEIGHT_PER_SECOND},66 DispatchClass, DispatchInfo, GetDispatchInfo, IdentityFee, Pays, PostDispatchInfo, Weight,67 WeightToFeePolynomial, WeightToFeeCoefficient, WeightToFeeCoefficients,68 },69};70use up_data_structs::*;717273use frame_system::{74 self as frame_system, EnsureRoot, EnsureSigned,75 limits::{BlockWeights, BlockLength},76};77use sp_arithmetic::{78 traits::{BaseArithmetic, Unsigned},79};80use smallvec::smallvec;81use codec::{Encode, Decode};82use pallet_evm::{Account as EVMAccount, FeeCalculator, GasWeightMapping, OnMethodCall};83use fp_rpc::TransactionStatus;84use sp_runtime::{85 traits::{BlockNumberProvider, Dispatchable, PostDispatchInfoOf, Saturating},86 transaction_validity::TransactionValidityError,87 SaturatedConversion,88};899091pub use sp_consensus_aura::sr25519::AuthorityId as AuraId;929394use pallet_xcm::XcmPassthrough;95use polkadot_parachain::primitives::Sibling;96use xcm::v1::{BodyId, Junction::*, MultiLocation, NetworkId, Junctions::*};97use xcm_builder::{98 AccountId32Aliases, AllowTopLevelPaidExecutionFrom, AllowUnpaidExecutionFrom, CurrencyAdapter,99 EnsureXcmOrigin, FixedWeightBounds, LocationInverter, NativeAsset, ParentAsSuperuser,100 RelayChainAsNative, SiblingParachainAsNative, SiblingParachainConvertsVia,101 SignedAccountId32AsNative, SignedToAccountId32, SovereignSignedViaLocation, TakeWeightCredit,102 ParentIsPreset,103};104use xcm_executor::{Config, XcmExecutor, Assets};105use sp_std::{marker::PhantomData};106107use xcm::latest::{108 109 AssetId::{Concrete},110 Fungibility::Fungible as XcmFungible,111 MultiAsset,112 Error as XcmError,113};114use xcm_executor::traits::{MatchesFungible, WeightTrader};115116use sp_runtime::traits::CheckedConversion;117118119120121122pub type BlockNumber = u32;123124125pub type Signature = MultiSignature;126127128129pub type AccountId = <<Signature as Verify>::Signer as IdentifyAccount>::AccountId;130131pub type CrossAccountId = pallet_common::account::BasicCrossAccountId<Runtime>;132133134135pub type AccountIndex = u32;136137138pub type Balance = u128;139140141pub type Index = u32;142143144pub type Hash = sp_core::H256;145146147pub type DigestItem = generic::DigestItem;148149150151152153pub mod opaque {154 use super::*;155156 pub use sp_runtime::OpaqueExtrinsic as UncheckedExtrinsic;157158 159 pub type Block = generic::Block<Header, UncheckedExtrinsic>;160161 pub type SessionHandlers = ();162163 impl_opaque_keys! {164 pub struct SessionKeys {165 pub aura: Aura,166 }167 }168}169170171pub const VERSION: RuntimeVersion = RuntimeVersion {172 spec_name: create_runtime_str!("opal"),173 impl_name: create_runtime_str!("opal"),174 authoring_version: 1,175 spec_version: 917004,176 impl_version: 0,177 apis: RUNTIME_API_VERSIONS,178 transaction_version: 1,179 state_version: 0,180};181182pub const MILLISECS_PER_BLOCK: u64 = 12000;183184pub const SLOT_DURATION: u64 = MILLISECS_PER_BLOCK;185186187pub const MINUTES: BlockNumber = 60_000 / (MILLISECS_PER_BLOCK as BlockNumber);188pub const HOURS: BlockNumber = MINUTES * 60;189pub const DAYS: BlockNumber = HOURS * 24;190191parameter_types! {192 pub const DefaultSponsoringRateLimit: BlockNumber = 1 * DAYS;193}194195#[derive(codec::Encode, codec::Decode)]196pub enum XCMPMessage<XAccountId, XBalance> {197 198 TransferToken(XAccountId, XBalance),199}200201202#[cfg(feature = "std")]203pub fn native_version() -> NativeVersion {204 NativeVersion {205 runtime_version: VERSION,206 can_author_with: Default::default(),207 }208}209210type NegativeImbalance = <Balances as Currency<AccountId>>::NegativeImbalance;211212pub struct DealWithFees;213impl OnUnbalanced<NegativeImbalance> for DealWithFees {214 fn on_unbalanceds<B>(mut fees_then_tips: impl Iterator<Item = NegativeImbalance>) {215 if let Some(fees) = fees_then_tips.next() {216 217 let mut split = fees.ration(100, 0);218 if let Some(tips) = fees_then_tips.next() {219 220 tips.ration_merge_into(100, 0, &mut split);221 }222 Treasury::on_unbalanced(split.0);223 224 }225 }226}227228229230const AVERAGE_ON_INITIALIZE_RATIO: Perbill = Perbill::from_percent(10);231232233const NORMAL_DISPATCH_RATIO: Perbill = Perbill::from_percent(75);234235const MAXIMUM_BLOCK_WEIGHT: Weight = WEIGHT_PER_SECOND / 2;236237parameter_types! {238 pub const BlockHashCount: BlockNumber = 2400;239 pub RuntimeBlockLength: BlockLength =240 BlockLength::max_with_normal_ratio(5 * 1024 * 1024, NORMAL_DISPATCH_RATIO);241 pub const AvailableBlockRatio: Perbill = Perbill::from_percent(75);242 pub const MaximumBlockLength: u32 = 5 * 1024 * 1024;243 pub RuntimeBlockWeights: BlockWeights = BlockWeights::builder()244 .base_block(BlockExecutionWeight::get())245 .for_class(DispatchClass::all(), |weights| {246 weights.base_extrinsic = ExtrinsicBaseWeight::get();247 })248 .for_class(DispatchClass::Normal, |weights| {249 weights.max_total = Some(NORMAL_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT);250 })251 .for_class(DispatchClass::Operational, |weights| {252 weights.max_total = Some(MAXIMUM_BLOCK_WEIGHT);253 254 255 weights.reserved = Some(256 MAXIMUM_BLOCK_WEIGHT - NORMAL_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT257 );258 })259 .avg_block_initialization(AVERAGE_ON_INITIALIZE_RATIO)260 .build_or_panic();261 pub const Version: RuntimeVersion = VERSION;262 pub const SS58Prefix: u8 = 42;263}264265266267268269270parameter_types! {271 pub const ChainId: u64 = 8882;272}273274pub struct FixedFee;275impl FeeCalculator for FixedFee {276 fn min_gas_price() -> U256 {277 278 1_018_751_825_264u64.into()279 }280}281282283284285parameter_types! {286 pub const WritesPerSecond: u64 = WEIGHT_PER_SECOND / <Runtime as frame_system::Config>::DbWeight::get().write;287 pub const GasPerSecond: u64 = WritesPerSecond::get() * 20000;288 pub const WeightPerGas: u64 = WEIGHT_PER_SECOND / GasPerSecond::get();289}290291292293294const EVM_DISPATCH_RATIO: Perbill = Perbill::from_percent(50);295parameter_types! {296 pub BlockGasLimit: U256 = U256::from(NORMAL_DISPATCH_RATIO * EVM_DISPATCH_RATIO * MAXIMUM_BLOCK_WEIGHT / WeightPerGas::get());297}298299pub enum FixedGasWeightMapping {}300impl GasWeightMapping for FixedGasWeightMapping {301 fn gas_to_weight(gas: u64) -> Weight {302 gas.saturating_mul(WeightPerGas::get())303 }304 fn weight_to_gas(weight: Weight) -> u64 {305 weight / WeightPerGas::get()306 }307}308309impl pallet_evm::Config for Runtime {310 type BlockGasLimit = BlockGasLimit;311 type FeeCalculator = FixedFee;312 type GasWeightMapping = FixedGasWeightMapping;313 type BlockHashMapping = pallet_ethereum::EthereumBlockHashMapping<Self>;314 type CallOrigin = EnsureAddressTruncated;315 type WithdrawOrigin = EnsureAddressTruncated;316 type AddressMapping = HashedAddressMapping<Self::Hashing>;317 type PrecompilesType = ();318 type PrecompilesValue = ();319 type Currency = Balances;320 type Event = Event;321 type OnMethodCall = (322 pallet_evm_migration::OnMethodCall<Self>,323 pallet_unique::UniqueErcSupport<Self>,324 pallet_evm_contract_helpers::HelpersOnMethodCall<Self>,325 );326 type OnCreate = pallet_evm_contract_helpers::HelpersOnCreate<Self>;327 type ChainId = ChainId;328 type Runner = pallet_evm::runner::stack::Runner<Self>;329 type OnChargeTransaction = pallet_evm_transaction_payment::OnChargeTransaction<Self>;330 type TransactionValidityHack = pallet_evm_transaction_payment::TransactionValidityHack<Self>;331 type FindAuthor = EthereumFindAuthor<Aura>;332}333334impl pallet_evm_migration::Config for Runtime {335 type WeightInfo = pallet_evm_migration::weights::SubstrateWeight<Self>;336}337338pub struct EthereumFindAuthor<F>(core::marker::PhantomData<F>);339impl<F: FindAuthor<u32>> FindAuthor<H160> for EthereumFindAuthor<F> {340 fn find_author<'a, I>(digests: I) -> Option<H160>341 where342 I: 'a + IntoIterator<Item = (ConsensusEngineId, &'a [u8])>,343 {344 if let Some(author_index) = F::find_author(digests) {345 let authority_id = Aura::authorities()[author_index as usize].clone();346 return Some(H160::from_slice(&authority_id.to_raw_vec()[4..24]));347 }348 None349 }350}351352impl pallet_ethereum::Config for Runtime {353 type Event = Event;354 type StateRoot = pallet_ethereum::IntermediateStateRoot;355}356357impl pallet_randomness_collective_flip::Config for Runtime {}358359impl frame_system::Config for Runtime {360 361 type AccountData = pallet_balances::AccountData<Balance>;362 363 type AccountId = AccountId;364 365 type BaseCallFilter = Everything;366 367 type BlockHashCount = BlockHashCount;368 369 type BlockLength = RuntimeBlockLength;370 371 type BlockNumber = BlockNumber;372 373 type BlockWeights = RuntimeBlockWeights;374 375 type Call = Call;376 377 type DbWeight = RocksDbWeight;378 379 type Event = Event;380 381 type Hash = Hash;382 383 type Hashing = BlakeTwo256;384 385 type Header = generic::Header<BlockNumber, BlakeTwo256>;386 387 type Index = Index;388 389 type Lookup = AccountIdLookup<AccountId, ()>;390 391 type OnKilledAccount = ();392 393 type OnNewAccount = ();394 type OnSetCode = cumulus_pallet_parachain_system::ParachainSetCode<Self>;395 396 type Origin = Origin;397 398 type PalletInfo = PalletInfo;399 400 type SS58Prefix = SS58Prefix;401 402 type SystemWeightInfo = frame_system::weights::SubstrateWeight<Self>;403 404 type Version = Version;405 type MaxConsumers = ConstU32<16>;406}407408parameter_types! {409 pub const MinimumPeriod: u64 = SLOT_DURATION / 2;410}411412impl pallet_timestamp::Config for Runtime {413 414 type Moment = u64;415 type OnTimestampSet = ();416 type MinimumPeriod = MinimumPeriod;417 type WeightInfo = ();418}419420parameter_types! {421 422 pub const ExistentialDeposit: u128 = 0;423 pub const MaxLocks: u32 = 50;424}425426impl pallet_balances::Config for Runtime {427 type MaxLocks = MaxLocks;428 type MaxReserves = ();429 type ReserveIdentifier = [u8; 8];430 431 type Balance = Balance;432 433 type Event = Event;434 type DustRemoval = Treasury;435 type ExistentialDeposit = ExistentialDeposit;436 type AccountStore = System;437 type WeightInfo = pallet_balances::weights::SubstrateWeight<Self>;438}439440pub const MICROUNIQUE: Balance = 1_000_000_000_000;441pub const MILLIUNIQUE: Balance = 1_000 * MICROUNIQUE;442pub const CENTIUNIQUE: Balance = 10 * MILLIUNIQUE;443pub const UNIQUE: Balance = 100 * CENTIUNIQUE;444445pub const fn deposit(items: u32, bytes: u32) -> Balance {446 items as Balance * 15 * CENTIUNIQUE + (bytes as Balance) * 6 * CENTIUNIQUE447}448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499parameter_types! {500 pub const TransactionByteFee: Balance = 501 * MICROUNIQUE; 501 502 503 pub const OperationalFeeMultiplier: u8 = 5;504}505506507pub struct LinearFee<T>(sp_std::marker::PhantomData<T>);508509impl<T> WeightToFeePolynomial for LinearFee<T>510where511 T: BaseArithmetic + From<u32> + Copy + Unsigned,512{513 type Balance = T;514515 fn polynomial() -> WeightToFeeCoefficients<Self::Balance> {516 smallvec!(WeightToFeeCoefficient {517 518 coeff_integer: 142_688_000u32.into(),519 coeff_frac: Perbill::zero(),520 negative: false,521 degree: 1,522 })523 }524}525526impl pallet_transaction_payment::Config for Runtime {527 type OnChargeTransaction = pallet_transaction_payment::CurrencyAdapter<Balances, DealWithFees>;528 type TransactionByteFee = TransactionByteFee;529 type OperationalFeeMultiplier = OperationalFeeMultiplier;530 type WeightToFee = LinearFee<Balance>;531 type FeeMultiplierUpdate = ();532}533534parameter_types! {535 pub const ProposalBond: Permill = Permill::from_percent(5);536 pub const ProposalBondMinimum: Balance = 1 * UNIQUE;537 pub const ProposalBondMaximum: Balance = 1000 * UNIQUE;538 pub const SpendPeriod: BlockNumber = 5 * MINUTES;539 pub const Burn: Permill = Permill::from_percent(0);540 pub const TipCountdown: BlockNumber = 1 * DAYS;541 pub const TipFindersFee: Percent = Percent::from_percent(20);542 pub const TipReportDepositBase: Balance = 1 * UNIQUE;543 pub const DataDepositPerByte: Balance = 1 * CENTIUNIQUE;544 pub const BountyDepositBase: Balance = 1 * UNIQUE;545 pub const BountyDepositPayoutDelay: BlockNumber = 1 * DAYS;546 pub const TreasuryModuleId: PalletId = PalletId(*b"py/trsry");547 pub const BountyUpdatePeriod: BlockNumber = 14 * DAYS;548 pub const MaximumReasonLength: u32 = 16384;549 pub const BountyCuratorDeposit: Permill = Permill::from_percent(50);550 pub const BountyValueMinimum: Balance = 5 * UNIQUE;551 pub const MaxApprovals: u32 = 100;552}553554impl pallet_treasury::Config for Runtime {555 type PalletId = TreasuryModuleId;556 type Currency = Balances;557 type ApproveOrigin = EnsureRoot<AccountId>;558 type RejectOrigin = EnsureRoot<AccountId>;559 type Event = Event;560 type OnSlash = ();561 type ProposalBond = ProposalBond;562 type ProposalBondMinimum = ProposalBondMinimum;563 type ProposalBondMaximum = ProposalBondMaximum;564 type SpendPeriod = SpendPeriod;565 type Burn = Burn;566 type BurnDestination = ();567 type SpendFunds = ();568 type WeightInfo = pallet_treasury::weights::SubstrateWeight<Self>;569 type MaxApprovals = MaxApprovals;570}571572impl pallet_sudo::Config for Runtime {573 type Event = Event;574 type Call = Call;575}576577pub struct RelayChainBlockNumberProvider<T>(sp_std::marker::PhantomData<T>);578579impl<T: cumulus_pallet_parachain_system::Config> BlockNumberProvider580 for RelayChainBlockNumberProvider<T>581{582 type BlockNumber = BlockNumber;583584 fn current_block_number() -> Self::BlockNumber {585 cumulus_pallet_parachain_system::Pallet::<T>::validation_data()586 .map(|d| d.relay_parent_number)587 .unwrap_or_default()588 }589}590591parameter_types! {592 pub const MinVestedTransfer: Balance = 10 * UNIQUE;593 pub const MaxVestingSchedules: u32 = 28;594}595596impl orml_vesting::Config for Runtime {597 type Event = Event;598 type Currency = pallet_balances::Pallet<Runtime>;599 type MinVestedTransfer = MinVestedTransfer;600 type VestedTransferOrigin = EnsureSigned<AccountId>;601 type WeightInfo = ();602 type MaxVestingSchedules = MaxVestingSchedules;603 type BlockNumberProvider = RelayChainBlockNumberProvider<Runtime>;604}605606parameter_types! {607 pub const ReservedDmpWeight: Weight = MAXIMUM_BLOCK_WEIGHT / 4;608 pub const ReservedXcmpWeight: Weight = MAXIMUM_BLOCK_WEIGHT / 4;609}610611impl cumulus_pallet_parachain_system::Config for Runtime {612 type Event = Event;613 type SelfParaId = parachain_info::Pallet<Self>;614 type OnSystemEvent = ();615 616 617 618 619 620 type OutboundXcmpMessageSource = XcmpQueue;621 type DmpMessageHandler = DmpQueue;622 type ReservedDmpWeight = ReservedDmpWeight;623 type ReservedXcmpWeight = ReservedXcmpWeight;624 type XcmpMessageHandler = XcmpQueue;625}626627impl parachain_info::Config for Runtime {}628629impl cumulus_pallet_aura_ext::Config for Runtime {}630631parameter_types! {632 pub const RelayLocation: MultiLocation = MultiLocation::parent();633 pub const RelayNetwork: NetworkId = NetworkId::Polkadot;634 pub RelayOrigin: Origin = cumulus_pallet_xcm::Origin::Relay.into();635 pub Ancestry: MultiLocation = Parachain(ParachainInfo::parachain_id().into()).into();636}637638639640641pub type LocationToAccountId = (642 643 ParentIsPreset<AccountId>,644 645 SiblingParachainConvertsVia<Sibling, AccountId>,646 647 AccountId32Aliases<RelayNetwork, AccountId>,648);649650pub struct OnlySelfCurrency;651impl<B: TryFrom<u128>> MatchesFungible<B> for OnlySelfCurrency {652 fn matches_fungible(a: &MultiAsset) -> Option<B> {653 match (&a.id, &a.fun) {654 (Concrete(_), XcmFungible(ref amount)) => CheckedConversion::checked_from(*amount),655 _ => None,656 }657 }658}659660661pub type LocalAssetTransactor = CurrencyAdapter<662 663 Balances,664 665 OnlySelfCurrency,666 667 LocationToAccountId,668 669 AccountId,670 671 (),672>;673674675676677pub type XcmOriginToTransactDispatchOrigin = (678 679 680 681 SovereignSignedViaLocation<LocationToAccountId, Origin>,682 683 684 RelayChainAsNative<RelayOrigin, Origin>,685 686 687 SiblingParachainAsNative<cumulus_pallet_xcm::Origin, Origin>,688 689 690 ParentAsSuperuser<Origin>,691 692 693 SignedAccountId32AsNative<RelayNetwork, Origin>,694 695 XcmPassthrough<Origin>,696);697698parameter_types! {699 700 pub UnitWeightCost: Weight = 1_000_000;701 702 pub const WeightPrice: (MultiLocation, u128) = (MultiLocation::parent(), 1_200 * UNIQUE);703 pub const MaxInstructions: u32 = 100;704 pub const MaxAuthorities: u32 = 100_000;705}706707match_type! {708 pub type ParentOrParentsUnitPlurality: impl Contains<MultiLocation> = {709 MultiLocation { parents: 1, interior: Here } |710 MultiLocation { parents: 1, interior: X1(Plurality { id: BodyId::Unit, .. }) }711 };712}713714pub type Barrier = (715 TakeWeightCredit,716 AllowTopLevelPaidExecutionFrom<Everything>,717 AllowUnpaidExecutionFrom<ParentOrParentsUnitPlurality>,718 719);720721pub struct UsingOnlySelfCurrencyComponents<722 WeightToFee: WeightToFeePolynomial<Balance = Currency::Balance>,723 AssetId: Get<MultiLocation>,724 AccountId,725 Currency: CurrencyT<AccountId>,726 OnUnbalanced: OnUnbalancedT<Currency::NegativeImbalance>,727>(728 Weight,729 Currency::Balance,730 PhantomData<(WeightToFee, AssetId, AccountId, Currency, OnUnbalanced)>,731);732impl<733 WeightToFee: WeightToFeePolynomial<Balance = Currency::Balance>,734 AssetId: Get<MultiLocation>,735 AccountId,736 Currency: CurrencyT<AccountId>,737 OnUnbalanced: OnUnbalancedT<Currency::NegativeImbalance>,738 > WeightTrader739 for UsingOnlySelfCurrencyComponents<WeightToFee, AssetId, AccountId, Currency, OnUnbalanced>740{741 fn new() -> Self {742 Self(0, Zero::zero(), PhantomData)743 }744745 fn buy_weight(&mut self, weight: Weight, payment: Assets) -> Result<Assets, XcmError> {746 let amount = WeightToFee::calc(&weight);747 let u128_amount: u128 = amount.try_into().map_err(|_| XcmError::Overflow)?;748749 750 let option1: xcm::v1::AssetId = Concrete(MultiLocation {751 parents: 1,752 interior: X1(Parachain(ParachainInfo::parachain_id().into())),753 });754 755 let option2: xcm::v1::AssetId = Concrete(MultiLocation {756 parents: 0,757 interior: Here,758 });759760 let required = if payment.fungible.contains_key(&option1) {761 (option1, u128_amount).into()762 } else if payment.fungible.contains_key(&option2) {763 (option2, u128_amount).into()764 } else {765 (Concrete(MultiLocation::default()), u128_amount).into()766 };767768 let unused = payment769 .checked_sub(required)770 .map_err(|_| XcmError::TooExpensive)?;771 self.0 = self.0.saturating_add(weight);772 self.1 = self.1.saturating_add(amount);773 Ok(unused)774 }775776 fn refund_weight(&mut self, weight: Weight) -> Option<MultiAsset> {777 let weight = weight.min(self.0);778 let amount = WeightToFee::calc(&weight);779 self.0 -= weight;780 self.1 = self.1.saturating_sub(amount);781 let amount: u128 = amount.saturated_into();782 if amount > 0 {783 Some((AssetId::get(), amount).into())784 } else {785 None786 }787 }788}789impl<790 WeightToFee: WeightToFeePolynomial<Balance = Currency::Balance>,791 AssetId: Get<MultiLocation>,792 AccountId,793 Currency: CurrencyT<AccountId>,794 OnUnbalanced: OnUnbalancedT<Currency::NegativeImbalance>,795 > Drop796 for UsingOnlySelfCurrencyComponents<WeightToFee, AssetId, AccountId, Currency, OnUnbalanced>797{798 fn drop(&mut self) {799 OnUnbalanced::on_unbalanced(Currency::issue(self.1));800 }801}802803pub struct XcmConfig;804impl Config for XcmConfig {805 type Call = Call;806 type XcmSender = XcmRouter;807 808 type AssetTransactor = LocalAssetTransactor;809 type OriginConverter = XcmOriginToTransactDispatchOrigin;810 type IsReserve = NativeAsset;811 type IsTeleporter = (); 812 type LocationInverter = LocationInverter<Ancestry>;813 type Barrier = Barrier;814 type Weigher = FixedWeightBounds<UnitWeightCost, Call, MaxInstructions>;815 type Trader = UsingOnlySelfCurrencyComponents<816 IdentityFee<Balance>,817 RelayLocation,818 AccountId,819 Balances,820 (),821 >;822 type ResponseHandler = (); 823 type SubscriptionService = PolkadotXcm;824825 type AssetTrap = PolkadotXcm;826 type AssetClaims = PolkadotXcm;827}828829830831832833834pub type LocalOriginToLocation = (SignedToAccountId32<Origin, AccountId, RelayNetwork>,);835836837838pub type XcmRouter = (839 840 cumulus_primitives_utility::ParentAsUmp<ParachainSystem, ()>,841 842 XcmpQueue,843);844845impl pallet_evm_coder_substrate::Config for Runtime {846 type EthereumTransactionSender = pallet_ethereum::Pallet<Self>;847 type GasWeightMapping = FixedGasWeightMapping;848}849850impl pallet_xcm::Config for Runtime {851 type Event = Event;852 type SendXcmOrigin = EnsureXcmOrigin<Origin, LocalOriginToLocation>;853 type XcmRouter = XcmRouter;854 type ExecuteXcmOrigin = EnsureXcmOrigin<Origin, LocalOriginToLocation>;855 type XcmExecuteFilter = Everything;856 type XcmExecutor = XcmExecutor<XcmConfig>;857 type XcmTeleportFilter = Everything;858 type XcmReserveTransferFilter = Everything;859 type Weigher = FixedWeightBounds<UnitWeightCost, Call, MaxInstructions>;860 type LocationInverter = LocationInverter<Ancestry>;861 type Origin = Origin;862 type Call = Call;863 const VERSION_DISCOVERY_QUEUE_SIZE: u32 = 100;864 type AdvertisedXcmVersion = pallet_xcm::CurrentXcmVersion;865}866867impl cumulus_pallet_xcm::Config for Runtime {868 type Event = Event;869 type XcmExecutor = XcmExecutor<XcmConfig>;870}871872impl cumulus_pallet_xcmp_queue::Config for Runtime {873 type Event = Event;874 type XcmExecutor = XcmExecutor<XcmConfig>;875 type ChannelInfo = ParachainSystem;876 type VersionWrapper = ();877 type ExecuteOverweightOrigin = frame_system::EnsureRoot<AccountId>;878 type ControllerOrigin = EnsureRoot<AccountId>;879 type ControllerOriginConverter = XcmOriginToTransactDispatchOrigin;880}881882impl cumulus_pallet_dmp_queue::Config for Runtime {883 type Event = Event;884 type XcmExecutor = XcmExecutor<XcmConfig>;885 type ExecuteOverweightOrigin = frame_system::EnsureRoot<AccountId>;886}887888impl pallet_aura::Config for Runtime {889 type AuthorityId = AuraId;890 type DisabledValidators = ();891 type MaxAuthorities = MaxAuthorities;892}893894parameter_types! {895 pub TreasuryAccountId: AccountId = TreasuryModuleId::get().into_account();896 pub const CollectionCreationPrice: Balance = 2 * UNIQUE;897}898899impl pallet_common::Config for Runtime {900 type Event = Event;901 type EvmBackwardsAddressMapping = up_evm_mapping::MapBackwardsAddressTruncated;902 type EvmAddressMapping = HashedAddressMapping<Self::Hashing>;903 type CrossAccountId = pallet_common::account::BasicCrossAccountId<Self>;904905 type Currency = Balances;906 type CollectionCreationPrice = CollectionCreationPrice;907 type TreasuryAccountId = TreasuryAccountId;908}909910impl pallet_fungible::Config for Runtime {911 type WeightInfo = pallet_fungible::weights::SubstrateWeight<Self>;912}913impl pallet_refungible::Config for Runtime {914 type WeightInfo = pallet_refungible::weights::SubstrateWeight<Self>;915}916impl pallet_nonfungible::Config for Runtime {917 type WeightInfo = pallet_nonfungible::weights::SubstrateWeight<Self>;918}919920impl pallet_unique::Config for Runtime {921 type Event = Event;922 type WeightInfo = pallet_unique::weights::SubstrateWeight<Self>;923}924925parameter_types! {926 pub const InflationBlockInterval: BlockNumber = 100; 927}928929930impl pallet_inflation::Config for Runtime {931 type Currency = Balances;932 type TreasuryAccountId = TreasuryAccountId;933 type InflationBlockInterval = InflationBlockInterval;934 type BlockNumberProvider = RelayChainBlockNumberProvider<Runtime>;935}936937938939940941942943type EvmSponsorshipHandler = (944 pallet_unique::UniqueEthSponsorshipHandler<Runtime>,945 pallet_evm_contract_helpers::HelpersContractSponsoring<Runtime>,946);947type SponsorshipHandler = (948 pallet_unique::UniqueSponsorshipHandler<Runtime>,949 950 pallet_evm_transaction_payment::BridgeSponsorshipHandler<Runtime>,951);952953954955956957958959960961962963964965impl pallet_evm_transaction_payment::Config for Runtime {966 type EvmSponsorshipHandler = EvmSponsorshipHandler;967 type Currency = Balances;968 type EvmAddressMapping = HashedAddressMapping<Self::Hashing>;969 type EvmBackwardsAddressMapping = up_evm_mapping::MapBackwardsAddressTruncated;970}971972impl pallet_charge_transaction::Config for Runtime {973 type SponsorshipHandler = SponsorshipHandler;974}975976977978979980parameter_types! {981 982 pub const HelpersContractAddress: H160 = H160([983 0x84, 0x28, 0x99, 0xec, 0xf3, 0x80, 0x55, 0x3e, 0x8a, 0x4d, 0xe7, 0x5b, 0xf5, 0x34, 0xcd, 0xf6, 0xfb, 0xf6, 0x40, 0x49,984 ]);985}986987impl pallet_evm_contract_helpers::Config for Runtime {988 type ContractAddress = HelpersContractAddress;989 type DefaultSponsoringRateLimit = DefaultSponsoringRateLimit;990}991992construct_runtime!(993 pub enum Runtime where994 Block = Block,995 NodeBlock = opaque::Block,996 UncheckedExtrinsic = UncheckedExtrinsic997 {998 ParachainSystem: cumulus_pallet_parachain_system::{Pallet, Call, Config, Storage, Inherent, Event<T>, ValidateUnsigned} = 20,999 ParachainInfo: parachain_info::{Pallet, Storage, Config} = 21,10001001 Aura: pallet_aura::{Pallet, Config<T>} = 22,1002 AuraExt: cumulus_pallet_aura_ext::{Pallet, Config} = 23,10031004 Balances: pallet_balances::{Pallet, Call, Storage, Config<T>, Event<T>} = 30,1005 RandomnessCollectiveFlip: pallet_randomness_collective_flip::{Pallet, Storage} = 31,1006 Timestamp: pallet_timestamp::{Pallet, Call, Storage, Inherent} = 32,1007 TransactionPayment: pallet_transaction_payment::{Pallet, Storage} = 33,1008 Treasury: pallet_treasury::{Pallet, Call, Storage, Config, Event<T>} = 34,1009 Sudo: pallet_sudo::{Pallet, Call, Storage, Config<T>, Event<T>} = 35,1010 System: frame_system::{Pallet, Call, Storage, Config, Event<T>} = 36,1011 Vesting: orml_vesting::{Pallet, Storage, Call, Event<T>, Config<T>} = 37,1012 1013 10141015 1016 XcmpQueue: cumulus_pallet_xcmp_queue::{Pallet, Call, Storage, Event<T>} = 50,1017 PolkadotXcm: pallet_xcm::{Pallet, Call, Event<T>, Origin} = 51,1018 CumulusXcm: cumulus_pallet_xcm::{Pallet, Call, Event<T>, Origin} = 52,1019 DmpQueue: cumulus_pallet_dmp_queue::{Pallet, Call, Storage, Event<T>} = 53,10201021 1022 Inflation: pallet_inflation::{Pallet, Call, Storage} = 60,1023 Unique: pallet_unique::{Pallet, Call, Storage, Event<T>} = 61,1024 1025 1026 Charging: pallet_charge_transaction::{Pallet, Call, Storage } = 64,1027 1028 Common: pallet_common::{Pallet, Storage, Event<T>} = 66,1029 Fungible: pallet_fungible::{Pallet, Storage} = 67,1030 Refungible: pallet_refungible::{Pallet, Storage} = 68,1031 Nonfungible: pallet_nonfungible::{Pallet, Storage} = 69,10321033 1034 EVM: pallet_evm::{Pallet, Config, Call, Storage, Event<T>} = 100,1035 Ethereum: pallet_ethereum::{Pallet, Config, Call, Storage, Event, Origin} = 101,10361037 EvmCoderSubstrate: pallet_evm_coder_substrate::{Pallet, Storage} = 150,1038 EvmContractHelpers: pallet_evm_contract_helpers::{Pallet, Storage} = 151,1039 EvmTransactionPayment: pallet_evm_transaction_payment::{Pallet} = 152,1040 EvmMigration: pallet_evm_migration::{Pallet, Call, Storage} = 153,1041 }1042);10431044pub struct TransactionConverter;10451046impl fp_rpc::ConvertTransaction<UncheckedExtrinsic> for TransactionConverter {1047 fn convert_transaction(&self, transaction: pallet_ethereum::Transaction) -> UncheckedExtrinsic {1048 UncheckedExtrinsic::new_unsigned(1049 pallet_ethereum::Call::<Runtime>::transact { transaction }.into(),1050 )1051 }1052}10531054impl fp_rpc::ConvertTransaction<opaque::UncheckedExtrinsic> for TransactionConverter {1055 fn convert_transaction(1056 &self,1057 transaction: pallet_ethereum::Transaction,1058 ) -> opaque::UncheckedExtrinsic {1059 let extrinsic = UncheckedExtrinsic::new_unsigned(1060 pallet_ethereum::Call::<Runtime>::transact { transaction }.into(),1061 );1062 let encoded = extrinsic.encode();1063 opaque::UncheckedExtrinsic::decode(&mut &encoded[..])1064 .expect("Encoded extrinsic is always valid")1065 }1066}106710681069pub type Address = sp_runtime::MultiAddress<AccountId, ()>;10701071pub type Header = generic::Header<BlockNumber, BlakeTwo256>;10721073pub type Block = generic::Block<Header, UncheckedExtrinsic>;10741075pub type SignedBlock = generic::SignedBlock<Block>;10761077pub type BlockId = generic::BlockId<Block>;10781079pub type SignedExtra = (1080 frame_system::CheckSpecVersion<Runtime>,1081 1082 frame_system::CheckGenesis<Runtime>,1083 frame_system::CheckEra<Runtime>,1084 frame_system::CheckNonce<Runtime>,1085 frame_system::CheckWeight<Runtime>,1086 pallet_charge_transaction::ChargeTransactionPayment<Runtime>,1087 1088);10891090pub type UncheckedExtrinsic =1091 fp_self_contained::UncheckedExtrinsic<Address, Call, Signature, SignedExtra>;10921093pub type CheckedExtrinsic = fp_self_contained::CheckedExtrinsic<AccountId, Call, SignedExtra, H160>;10941095pub type Executive = frame_executive::Executive<1096 Runtime,1097 Block,1098 frame_system::ChainContext<Runtime>,1099 Runtime,1100 AllPalletsReversedWithSystemFirst,1101>;11021103impl_opaque_keys! {1104 pub struct SessionKeys {1105 pub aura: Aura,1106 }1107}11081109impl fp_self_contained::SelfContainedCall for Call {1110 type SignedInfo = H160;11111112 fn is_self_contained(&self) -> bool {1113 match self {1114 Call::Ethereum(call) => call.is_self_contained(),1115 _ => false,1116 }1117 }11181119 fn check_self_contained(&self) -> Option<Result<Self::SignedInfo, TransactionValidityError>> {1120 match self {1121 Call::Ethereum(call) => call.check_self_contained(),1122 _ => None,1123 }1124 }11251126 fn validate_self_contained(&self, info: &Self::SignedInfo) -> Option<TransactionValidity> {1127 match self {1128 Call::Ethereum(call) => call.validate_self_contained(info),1129 _ => None,1130 }1131 }11321133 fn pre_dispatch_self_contained(1134 &self,1135 info: &Self::SignedInfo,1136 ) -> Option<Result<(), TransactionValidityError>> {1137 match self {1138 Call::Ethereum(call) => call.pre_dispatch_self_contained(info),1139 _ => None,1140 }1141 }11421143 fn apply_self_contained(1144 self,1145 info: Self::SignedInfo,1146 ) -> Option<sp_runtime::DispatchResultWithInfo<PostDispatchInfoOf<Self>>> {1147 match self {1148 call @ Call::Ethereum(pallet_ethereum::Call::transact { .. }) => Some(call.dispatch(1149 Origin::from(pallet_ethereum::RawOrigin::EthereumTransaction(info)),1150 )),1151 _ => None,1152 }1153 }1154}11551156macro_rules! dispatch_unique_runtime {1157 ($collection:ident.$method:ident($($name:ident),*)) => {{1158 use pallet_unique::dispatch::Dispatched;11591160 let collection = Dispatched::dispatch(<pallet_common::CollectionHandle<Runtime>>::try_get($collection)?);1161 let dispatch = collection.as_dyn();11621163 Ok(dispatch.$method($($name),*))1164 }};1165}1166impl_runtime_apis! {1167 impl up_rpc::UniqueApi<Block, CrossAccountId, AccountId>1168 for Runtime1169 {1170 fn account_tokens(collection: CollectionId, account: CrossAccountId) -> Result<Vec<TokenId>, DispatchError> {1171 dispatch_unique_runtime!(collection.account_tokens(account))1172 }1173 fn token_exists(collection: CollectionId, token: TokenId) -> Result<bool, DispatchError> {1174 dispatch_unique_runtime!(collection.token_exists(token))1175 }11761177 fn token_owner(collection: CollectionId, token: TokenId) -> Result<Option<CrossAccountId>, DispatchError> {1178 dispatch_unique_runtime!(collection.token_owner(token))1179 }1180 fn const_metadata(collection: CollectionId, token: TokenId) -> Result<Vec<u8>, DispatchError> {1181 dispatch_unique_runtime!(collection.const_metadata(token))1182 }1183 fn variable_metadata(collection: CollectionId, token: TokenId) -> Result<Vec<u8>, DispatchError> {1184 dispatch_unique_runtime!(collection.variable_metadata(token))1185 }11861187 fn collection_tokens(collection: CollectionId) -> Result<u32, DispatchError> {1188 dispatch_unique_runtime!(collection.collection_tokens())1189 }1190 fn account_balance(collection: CollectionId, account: CrossAccountId) -> Result<u32, DispatchError> {1191 dispatch_unique_runtime!(collection.account_balance(account))1192 }1193 fn balance(collection: CollectionId, account: CrossAccountId, token: TokenId) -> Result<u128, DispatchError> {1194 dispatch_unique_runtime!(collection.balance(account, token))1195 }1196 fn allowance(1197 collection: CollectionId,1198 sender: CrossAccountId,1199 spender: CrossAccountId,1200 token: TokenId,1201 ) -> Result<u128, DispatchError> {1202 dispatch_unique_runtime!(collection.allowance(sender, spender, token))1203 }12041205 fn eth_contract_code(account: H160) -> Option<Vec<u8>> {1206 <pallet_unique::UniqueErcSupport<Runtime>>::get_code(&account)1207 .or_else(|| <pallet_evm_migration::OnMethodCall<Runtime>>::get_code(&account))1208 .or_else(|| <pallet_evm_contract_helpers::HelpersOnMethodCall<Self>>::get_code(&account))1209 }1210 fn adminlist(collection: CollectionId) -> Result<Vec<CrossAccountId>, DispatchError> {1211 Ok(<pallet_common::Pallet<Runtime>>::adminlist(collection))1212 }1213 fn allowlist(collection: CollectionId) -> Result<Vec<CrossAccountId>, DispatchError> {1214 Ok(<pallet_common::Pallet<Runtime>>::allowlist(collection))1215 }1216 fn allowed(collection: CollectionId, user: CrossAccountId) -> Result<bool, DispatchError> {1217 Ok(<pallet_common::Pallet<Runtime>>::allowed(collection, user))1218 }1219 fn last_token_id(collection: CollectionId) -> Result<TokenId, DispatchError> {1220 dispatch_unique_runtime!(collection.last_token_id())1221 }1222 fn collection_by_id(collection: CollectionId) -> Result<Option<Collection<AccountId>>, DispatchError> {1223 Ok(<pallet_common::CollectionById<Runtime>>::get(collection))1224 }1225 fn collection_stats() -> Result<CollectionStats, DispatchError> {1226 Ok(<pallet_common::Pallet<Runtime>>::collection_stats())1227 }1228 }12291230 impl sp_api::Core<Block> for Runtime {1231 fn version() -> RuntimeVersion {1232 VERSION1233 }12341235 fn execute_block(block: Block) {1236 Executive::execute_block(block)1237 }12381239 fn initialize_block(header: &<Block as BlockT>::Header) {1240 Executive::initialize_block(header)1241 }1242 }12431244 impl sp_api::Metadata<Block> for Runtime {1245 fn metadata() -> OpaqueMetadata {1246 OpaqueMetadata::new(Runtime::metadata().into())1247 }1248 }12491250 impl sp_block_builder::BlockBuilder<Block> for Runtime {1251 fn apply_extrinsic(extrinsic: <Block as BlockT>::Extrinsic) -> ApplyExtrinsicResult {1252 Executive::apply_extrinsic(extrinsic)1253 }12541255 fn finalize_block() -> <Block as BlockT>::Header {1256 Executive::finalize_block()1257 }12581259 fn inherent_extrinsics(data: sp_inherents::InherentData) -> Vec<<Block as BlockT>::Extrinsic> {1260 data.create_extrinsics()1261 }12621263 fn check_inherents(1264 block: Block,1265 data: sp_inherents::InherentData,1266 ) -> sp_inherents::CheckInherentsResult {1267 data.check_extrinsics(&block)1268 }12691270 1271 1272 1273 }12741275 impl sp_transaction_pool::runtime_api::TaggedTransactionQueue<Block> for Runtime {1276 fn validate_transaction(1277 source: TransactionSource,1278 tx: <Block as BlockT>::Extrinsic,1279 hash: <Block as BlockT>::Hash,1280 ) -> TransactionValidity {1281 Executive::validate_transaction(source, tx, hash)1282 }1283 }12841285 impl sp_offchain::OffchainWorkerApi<Block> for Runtime {1286 fn offchain_worker(header: &<Block as BlockT>::Header) {1287 Executive::offchain_worker(header)1288 }1289 }12901291 impl fp_rpc::EthereumRuntimeRPCApi<Block> for Runtime {1292 fn chain_id() -> u64 {1293 <Runtime as pallet_evm::Config>::ChainId::get()1294 }12951296 fn account_basic(address: H160) -> EVMAccount {1297 EVM::account_basic(&address)1298 }12991300 fn gas_price() -> U256 {1301 <Runtime as pallet_evm::Config>::FeeCalculator::min_gas_price()1302 }13031304 fn account_code_at(address: H160) -> Vec<u8> {1305 EVM::account_codes(address)1306 }13071308 fn author() -> H160 {1309 <pallet_evm::Pallet<Runtime>>::find_author()1310 }13111312 fn storage_at(address: H160, index: U256) -> H256 {1313 let mut tmp = [0u8; 32];1314 index.to_big_endian(&mut tmp);1315 EVM::account_storages(address, H256::from_slice(&tmp[..]))1316 }13171318 #[allow(clippy::redundant_closure)]1319 fn call(1320 from: H160,1321 to: H160,1322 data: Vec<u8>,1323 value: U256,1324 gas_limit: U256,1325 max_fee_per_gas: Option<U256>,1326 max_priority_fee_per_gas: Option<U256>,1327 nonce: Option<U256>,1328 estimate: bool,1329 access_list: Option<Vec<(H160, Vec<H256>)>>,1330 ) -> Result<pallet_evm::CallInfo, sp_runtime::DispatchError> {1331 let config = if estimate {1332 let mut config = <Runtime as pallet_evm::Config>::config().clone();1333 config.estimate = true;1334 Some(config)1335 } else {1336 None1337 };13381339 <Runtime as pallet_evm::Config>::Runner::call(1340 from,1341 to,1342 data,1343 value,1344 gas_limit.low_u64(),1345 max_fee_per_gas,1346 max_priority_fee_per_gas,1347 nonce,1348 access_list.unwrap_or_default(),1349 config.as_ref().unwrap_or_else(|| <Runtime as pallet_evm::Config>::config()),1350 ).map_err(|err| err.into())1351 }13521353 #[allow(clippy::redundant_closure)]1354 fn create(1355 from: H160,1356 data: Vec<u8>,1357 value: U256,1358 gas_limit: U256,1359 max_fee_per_gas: Option<U256>,1360 max_priority_fee_per_gas: Option<U256>,1361 nonce: Option<U256>,1362 estimate: bool,1363 access_list: Option<Vec<(H160, Vec<H256>)>>,1364 ) -> Result<pallet_evm::CreateInfo, sp_runtime::DispatchError> {1365 let config = if estimate {1366 let mut config = <Runtime as pallet_evm::Config>::config().clone();1367 config.estimate = true;1368 Some(config)1369 } else {1370 None1371 };13721373 <Runtime as pallet_evm::Config>::Runner::create(1374 from,1375 data,1376 value,1377 gas_limit.low_u64(),1378 max_fee_per_gas,1379 max_priority_fee_per_gas,1380 nonce,1381 access_list.unwrap_or_default(),1382 config.as_ref().unwrap_or_else(|| <Runtime as pallet_evm::Config>::config()),1383 ).map_err(|err| err.into())1384 }13851386 fn current_transaction_statuses() -> Option<Vec<TransactionStatus>> {1387 Ethereum::current_transaction_statuses()1388 }13891390 fn current_block() -> Option<pallet_ethereum::Block> {1391 Ethereum::current_block()1392 }13931394 fn current_receipts() -> Option<Vec<pallet_ethereum::Receipt>> {1395 Ethereum::current_receipts()1396 }13971398 fn current_all() -> (1399 Option<pallet_ethereum::Block>,1400 Option<Vec<pallet_ethereum::Receipt>>,1401 Option<Vec<TransactionStatus>>1402 ) {1403 (1404 Ethereum::current_block(),1405 Ethereum::current_receipts(),1406 Ethereum::current_transaction_statuses()1407 )1408 }14091410 fn extrinsic_filter(xts: Vec<<Block as sp_api::BlockT>::Extrinsic>) -> Vec<pallet_ethereum::Transaction> {1411 xts.into_iter().filter_map(|xt| match xt.0.function {1412 Call::Ethereum(pallet_ethereum::Call::transact { transaction }) => Some(transaction),1413 _ => None1414 }).collect()1415 }14161417 fn elasticity() -> Option<Permill> {1418 None1419 }1420 }14211422 impl sp_session::SessionKeys<Block> for Runtime {1423 fn decode_session_keys(1424 encoded: Vec<u8>,1425 ) -> Option<Vec<(Vec<u8>, KeyTypeId)>> {1426 SessionKeys::decode_into_raw_public_keys(&encoded)1427 }14281429 fn generate_session_keys(seed: Option<Vec<u8>>) -> Vec<u8> {1430 SessionKeys::generate(seed)1431 }1432 }14331434 impl sp_consensus_aura::AuraApi<Block, AuraId> for Runtime {1435 fn slot_duration() -> sp_consensus_aura::SlotDuration {1436 sp_consensus_aura::SlotDuration::from_millis(Aura::slot_duration())1437 }14381439 fn authorities() -> Vec<AuraId> {1440 Aura::authorities().to_vec()1441 }1442 }14431444 impl cumulus_primitives_core::CollectCollationInfo<Block> for Runtime {1445 fn collect_collation_info(header: &<Block as BlockT>::Header) -> cumulus_primitives_core::CollationInfo {1446 ParachainSystem::collect_collation_info(header)1447 }1448 }14491450 impl frame_system_rpc_runtime_api::AccountNonceApi<Block, AccountId, Index> for Runtime {1451 fn account_nonce(account: AccountId) -> Index {1452 System::account_nonce(account)1453 }1454 }14551456 impl pallet_transaction_payment_rpc_runtime_api::TransactionPaymentApi<Block, Balance> for Runtime {1457 fn query_info(uxt: <Block as BlockT>::Extrinsic, len: u32) -> RuntimeDispatchInfo<Balance> {1458 TransactionPayment::query_info(uxt, len)1459 }1460 fn query_fee_details(uxt: <Block as BlockT>::Extrinsic, len: u32) -> FeeDetails<Balance> {1461 TransactionPayment::query_fee_details(uxt, len)1462 }1463 }14641465 14661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506 #[cfg(feature = "runtime-benchmarks")]1507 impl frame_benchmarking::Benchmark<Block> for Runtime {1508 fn benchmark_metadata(extra: bool) -> (1509 Vec<frame_benchmarking::BenchmarkList>,1510 Vec<frame_support::traits::StorageInfo>,1511 ) {1512 use frame_benchmarking::{list_benchmark, Benchmarking, BenchmarkList};1513 use frame_support::traits::StorageInfoTrait;15141515 let mut list = Vec::<BenchmarkList>::new();15161517 list_benchmark!(list, extra, pallet_evm_migration, EvmMigration);1518 list_benchmark!(list, extra, pallet_unique, Unique);1519 list_benchmark!(list, extra, pallet_inflation, Inflation);1520 list_benchmark!(list, extra, pallet_fungible, Fungible);1521 list_benchmark!(list, extra, pallet_refungible, Refungible);1522 list_benchmark!(list, extra, pallet_nonfungible, Nonfungible);1523 15241525 let storage_info = AllPalletsReversedWithSystemFirst::storage_info();15261527 return (list, storage_info)1528 }15291530 fn dispatch_benchmark(1531 config: frame_benchmarking::BenchmarkConfig1532 ) -> Result<Vec<frame_benchmarking::BenchmarkBatch>, sp_runtime::RuntimeString> {1533 use frame_benchmarking::{Benchmarking, BenchmarkBatch, add_benchmark, TrackedStorageKey};15341535 let allowlist: Vec<TrackedStorageKey> = vec![1536 1537 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef702a5c1b19ab7a04f536c519aca4983ac").to_vec().into(),1538 1539 hex_literal::hex!("c2261276cc9d1f8598ea4b6a74b15c2f57c875e4cff74148e4628f264b974c80").to_vec().into(),1540 1541 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef7ff553b5a9862a516939d82b3d3d8661a").to_vec().into(),1542 1543 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef70a98fdbe9ce6c55837576c60c7af3850").to_vec().into(),1544 1545 hex_literal::hex!("26aa394eea5630e07c48ae0c9558cef780d41e5e16056765bc8461851072c9d7").to_vec().into(),1546 ];15471548 let mut batches = Vec::<BenchmarkBatch>::new();1549 let params = (&config, &allowlist);15501551 add_benchmark!(params, batches, pallet_evm_migration, EvmMigration);1552 add_benchmark!(params, batches, pallet_unique, Unique);1553 add_benchmark!(params, batches, pallet_inflation, Inflation);1554 add_benchmark!(params, batches, pallet_fungible, Fungible);1555 add_benchmark!(params, batches, pallet_refungible, Refungible);1556 add_benchmark!(params, batches, pallet_nonfungible, Nonfungible);1557 15581559 if batches.is_empty() { return Err("Benchmark not found for this pallet.".into()) }1560 Ok(batches)1561 }1562 }1563}15641565struct CheckInherents;15661567impl cumulus_pallet_parachain_system::CheckInherents<Block> for CheckInherents {1568 fn check_inherents(1569 block: &Block,1570 relay_state_proof: &cumulus_pallet_parachain_system::RelayChainStateProof,1571 ) -> sp_inherents::CheckInherentsResult {1572 let relay_chain_slot = relay_state_proof1573 .read_slot()1574 .expect("Could not read the relay chain slot from the proof");15751576 let inherent_data =1577 cumulus_primitives_timestamp::InherentDataProvider::from_relay_chain_slot_and_duration(1578 relay_chain_slot,1579 sp_std::time::Duration::from_secs(6),1580 )1581 .create_inherent_data()1582 .expect("Could not create the timestamp inherent data");15831584 inherent_data.check_extrinsics(block)1585 }1586}15871588cumulus_pallet_parachain_system::register_validate_block!(1589 Runtime = Runtime,1590 BlockExecutor = cumulus_pallet_aura_ext::BlockExecutor::<Runtime, Executive>,1591 CheckInherents = CheckInherents,1592);