pub type Asset<T: Config<I>, I: 'static = ()> = StorageMap<_GeneratedPrefixForStorageAsset<T, I>, Blake2_128Concat, T::AssetId, AssetDetails<T::Balance, T::AccountId, DepositBalanceOf<T, I>>>;
Expand description
Details of an asset.
Storage type is [StorageMap
] with key type T :: AssetId
and value type AssetDetails < T :: Balance, T :: AccountId, DepositBalanceOf < T, I > >
.
Aliased Type§
struct Asset<T: Config<I>, I: 'static = ()>(/* private fields */);