referrerpolicy=no-referrer-when-downgrade

Type Alias Freezes

Source
pub type Freezes<T: Config<I>, I: 'static = ()> = StorageDoubleMap<_GeneratedPrefixForStorageFreezes<T, I>, Blake2_128Concat, T::AssetId, Blake2_128Concat, T::AccountId, BoundedVec<IdAmount<T::RuntimeFreezeReason, T::Balance>, VariantCountOf<T::RuntimeFreezeReason>>, ValueQuery>;
Expand description

A map that stores freezes applied on an account for a given AssetId.

Storage type is [StorageDoubleMap] with key1 type T :: AssetId, key2 type T :: AccountId and value type BoundedVec < IdAmount < T :: RuntimeFreezeReason, T :: Balance > , VariantCountOf < T :: RuntimeFreezeReason > , >.

Aliased Type§

struct Freezes<T: Config<I>, I: 'static = ()>(/* private fields */);