Type Definition pallet_vesting_mangata::pallet::Vesting

source ·
pub type Vesting<T: Config> = StorageDoubleMap<_GeneratedPrefixForStorageVesting<T>, Blake2_128Concat, T::AccountId, Blake2_128Concat, <<T as Config>::Tokens as MultiTokenCurrency<<T as Config>::AccountId>>::CurrencyId, BoundedVec<VestingInfo<<<T as Config>::Tokens as MultiTokenCurrency<<T as Config>::AccountId>>::Balance, BlockNumberFor<T>>, MaxVestingSchedulesGet<T>>>;
Expand description

Information regarding the vesting of a given account.

Storage type is StorageDoubleMap with key1 type T :: AccountId, key2 type TokenIdOf < T > and value type BoundedVec < VestingInfo < BalanceOf < T >, BlockNumberFor < T > >, MaxVestingSchedulesGet < T > >.