git.delta.rocks / unique-network / refs/commits / 90ad566cc7e8

difftreelog

source

runtime/common/config/pallets/foreign_asset.rs328 Bsourcehistory
1use up_common::types::AccountId;23use crate::{Balances, Runtime, RuntimeEvent};45impl pallet_foreign_assets::Config for Runtime {6	type RuntimeEvent = RuntimeEvent;7	type Currency = Balances;8	type RegisterOrigin = frame_system::EnsureRoot<AccountId>;9	type WeightInfo = pallet_foreign_assets::weights::SubstrateWeight<Self>;10}