Type Alias pallet_nfts::ItemDepositOf
source · pub type ItemDepositOf<T, I> = ItemDeposit<DepositBalanceOf<T, I>, <T as SystemConfig>::AccountId>;
Expand description
A type that holds the deposit for a single item.
Aliased Type§
struct ItemDepositOf<T, I> {
pub account: <T as Config>::AccountId,
pub amount: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance,
}
Fields§
§account: <T as Config>::AccountId
A depositor account.
amount: <<T as Config<I>>::Currency as Currency<<T as Config>::AccountId>>::Balance
An amount that gets reserved.