git.delta.rocks / unique-network / refs/commits / c652c1eecc65

difftreelog

source

runtime/common/config/pallets/foreign_asset.rs477 Bsourcehistory
1use frame_support::{parameter_types, PalletId};23use crate::{runtime_common::config::governance, Runtime, RuntimeEvent};45parameter_types! {6	pub ForeignAssetPalletId: PalletId = PalletId(*b"frgnasts");7}89impl pallet_foreign_assets::Config for Runtime {10	type RuntimeEvent = RuntimeEvent;11	type ForceRegisterOrigin = governance::RootOrTechnicalCommitteeMember;12	type PalletId = ForeignAssetPalletId;13	type WeightInfo = pallet_foreign_assets::weights::SubstrateWeight<Self>;14}