1use crate::{Runtime, Event, Balances};2use up_common::types::AccountId;34impl pallet_foreing_assets::Config for Runtime {5 type Event = Event;6 type Currency = Balances;7 type RegisterOrigin = frame_system::EnsureRoot<AccountId>;8 type WeightInfo = ();9}