pub type AssetIdType<T: Config> = StorageMap<_GeneratedPrefixForStorageAssetIdType<T>, Blake2_128Concat, T::AssetId, T::ForeignAssetType>;
Expand description

Mapping from an asset id to asset type. This is mostly used when receiving transaction specifying an asset directly, like transferring an asset from this chain to another.

Storage type is [StorageMap] with key type T :: AssetId and value type T :: ForeignAssetType.

Aliased Type§

struct AssetIdType<T: Config>(/* private fields */);