Type Alias pallet_xcm_weight_trader::pallet::SupportedAssets
source · pub type SupportedAssets<T: Config> = StorageMap<_GeneratedPrefixForStorageSupportedAssets<T>, Blake2_128Concat, Location, (bool, u128)>;
Expand description
Stores all supported assets per XCM Location. The u128 is the asset price relative to native asset with 18 decimals The boolean specify if the support for this asset is active
Storage type is [StorageMap
] with key type Location
and value type (bool, u128)
.
Aliased Type§
struct SupportedAssets<T: Config>(/* private fields */);