mirror of
https://github.com/pezkuwichain/pezkuwi-runtime-templates.git
synced 2026-04-22 03:17:56 +00:00
2bfcbf94d5
* init 2503 upgrade for evm template need to upgrade frontier forks * start upgrading frontier * wip upgrading tanssi deps and synchronizing deps therein * update tanssi wip * fix dep tree for evm template and move onto resolving errors * resolve 17 of 29 compilation errors 12 remaining most related to updating weight files * resolve weight related compilation errors and evm abstraction and proc macro require updates * impl DecodeWithMemTracking for custom origins 5 errors left requiring changes to astractions * update evm abstraction runtime compiles * node in progress frontier txpool requires more changes * update txpool for node and node release compiles * remove unused code commented out * fix tanssi registrar benchmarking compilation * fix pallet registrar benchmarks and unit tests * update tanssi runtime apis to have benchmark features * clean and fix some errors tests are recently requiring benchmark hidden impls oddly * combine ci steps for running test and checking benchmark compilation to see if output changes * update xcm core buyer 2412 dep to 2503 release ty @KitHat * rm conditional compilation for runtime benchmarks inside a few declarative macro definitions * apply clippy fix * move runtime benchmarks declarations for referenda conviction voting and assets common into the runtime not sure why only those require explicit feature declaration * break build but apply suggestions from @KitHat * fix build * fix toml sort * fix tanssi build
107 lines
3.6 KiB
Rust
107 lines
3.6 KiB
Rust
mod xcm_config;
|
|
use core::marker::PhantomData;
|
|
|
|
use evm_runtime_template::configs::xcm_config::SignedToAccountId20;
|
|
use frame_support::{
|
|
construct_runtime, derive_impl, parameter_types,
|
|
traits::{ConstU128, ContainsPair, Disabled, Everything, Nothing},
|
|
weights::{constants::WEIGHT_REF_TIME_PER_SECOND, Weight},
|
|
};
|
|
use frame_system::EnsureRoot;
|
|
use sp_core::ConstU32;
|
|
use sp_runtime::traits::{Get, IdentityLookup};
|
|
use xcm::latest::prelude::*;
|
|
use xcm_builder::EnsureXcmOrigin;
|
|
pub use xcm_config::*;
|
|
use xcm_executor::XcmExecutor;
|
|
use xcm_simulator::mock_message_queue;
|
|
|
|
pub type AccountId = fp_account::AccountId20;
|
|
pub type Balance = u128;
|
|
|
|
parameter_types! {
|
|
pub const BlockHashCount: u64 = 250;
|
|
}
|
|
|
|
#[derive_impl(frame_system::config_preludes::TestDefaultConfig)]
|
|
impl frame_system::Config for Runtime {
|
|
type AccountData = pallet_balances::AccountData<Balance>;
|
|
type AccountId = AccountId;
|
|
type Block = Block;
|
|
type Lookup = IdentityLookup<Self::AccountId>;
|
|
}
|
|
|
|
#[derive_impl(pallet_balances::config_preludes::TestDefaultConfig)]
|
|
impl pallet_balances::Config for Runtime {
|
|
type AccountStore = System;
|
|
type Balance = Balance;
|
|
type ExistentialDeposit = ConstU128<1>;
|
|
}
|
|
|
|
parameter_types! {
|
|
pub const ReservedXcmpWeight: Weight = Weight::from_parts(WEIGHT_REF_TIME_PER_SECOND.saturating_div(4), 0);
|
|
pub const ReservedDmpWeight: Weight = Weight::from_parts(WEIGHT_REF_TIME_PER_SECOND.saturating_div(4), 0);
|
|
}
|
|
|
|
impl mock_message_queue::Config for Runtime {
|
|
type RuntimeEvent = RuntimeEvent;
|
|
type XcmExecutor = XcmExecutor<XcmConfig>;
|
|
}
|
|
|
|
pub type LocalOriginToLocation =
|
|
SignedToAccountId20<RuntimeOrigin, AccountId, constants::RelayNetwork>;
|
|
|
|
pub struct TrustedLockerCase<T>(PhantomData<T>);
|
|
impl<T: Get<(Location, AssetFilter)>> ContainsPair<Location, Asset> for TrustedLockerCase<T> {
|
|
fn contains(origin: &Location, asset: &Asset) -> bool {
|
|
let (o, a) = T::get();
|
|
a.matches(asset) && &o == origin
|
|
}
|
|
}
|
|
|
|
parameter_types! {
|
|
pub RelayTokenForRelay: (Location, AssetFilter) = (Parent.into(), Wild(AllOf { id: AssetId(Parent.into()), fun: WildFungible }));
|
|
}
|
|
|
|
pub type TrustedLockers = TrustedLockerCase<RelayTokenForRelay>;
|
|
|
|
impl pallet_xcm::Config for Runtime {
|
|
type AdminOrigin = EnsureRoot<AccountId>;
|
|
type AdvertisedXcmVersion = pallet_xcm::CurrentXcmVersion;
|
|
// Aliasing is disabled: xcm_executor::Config::Aliasers is set to `Nothing`.
|
|
type AuthorizedAliasConsideration = Disabled;
|
|
type Currency = Balances;
|
|
type CurrencyMatcher = ();
|
|
type ExecuteXcmOrigin = EnsureXcmOrigin<RuntimeOrigin, LocalOriginToLocation>;
|
|
type MaxLockers = ConstU32<8>;
|
|
type MaxRemoteLockConsumers = ConstU32<0>;
|
|
type RemoteLockConsumerIdentifier = ();
|
|
type RuntimeCall = RuntimeCall;
|
|
type RuntimeEvent = RuntimeEvent;
|
|
type RuntimeOrigin = RuntimeOrigin;
|
|
type SendXcmOrigin = EnsureXcmOrigin<RuntimeOrigin, LocalOriginToLocation>;
|
|
type SovereignAccountOf = location_converter::LocationConverter;
|
|
type TrustedLockers = TrustedLockers;
|
|
type UniversalLocation = constants::UniversalLocation;
|
|
type Weigher = weigher::Weigher;
|
|
type WeightInfo = pallet_xcm::TestWeightInfo;
|
|
type XcmExecuteFilter = Everything;
|
|
type XcmExecutor = XcmExecutor<XcmConfig>;
|
|
type XcmReserveTransferFilter = Everything;
|
|
type XcmRouter = XcmRouter;
|
|
type XcmTeleportFilter = Nothing;
|
|
|
|
const VERSION_DISCOVERY_QUEUE_SIZE: u32 = 100;
|
|
}
|
|
|
|
type Block = frame_system::mocking::MockBlock<Runtime>;
|
|
|
|
construct_runtime!(
|
|
pub struct Runtime {
|
|
System: frame_system,
|
|
Balances: pallet_balances,
|
|
MsgQueue: mock_message_queue,
|
|
PolkadotXcm: pallet_xcm,
|
|
}
|
|
);
|