pub type Vesting<T: Config> = StorageMap<_GeneratedPrefixForStorageVesting<T>, Blake2_128Concat, T::AccountId, BoundedVec<VestingInfo<<<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance, BlockNumberFor<T>>, MaxVestingSchedulesGet<T>>>;Expand description
Information regarding the vesting of a given account.
Storage type is [StorageMap] with key type T :: AccountId and value type BoundedVec < VestingInfo < BalanceOf < T > , BlockNumberFor < T > > , MaxVestingSchedulesGet < T > >.
Aliased Type§
struct Vesting<T: Config>(/* private fields */);