pub trait Config: Config + Config {
    type Event: From<Event<Self>> + IsType<<Self as Config>::Event>;
    type Currency: Currency<Self::AccountId>;
    type Escrowable: EscrowableCurrency<Self::AccountId, Moment = Self::BlockNumber>;
    type PrefundingConverter: TryConvert<LedgerBalance, u128> + TryConvert<<<Self as Config>::Currency as Currency<<Self as Config>::AccountId>>::Balance, LedgerBalance> + Convert<Vec<u8>, LockIdentifier> + Convert<u32, Self::BlockNumber> + Convert<<<Self as Config>::Currency as Currency<<Self as Config>::AccountId>>::Balance, u128> + TryConvert<LedgerBalance, <<<Self as Config>::Escrowable as EscrowableCurrency<<Self as Config>::AccountId>>::Currency as Currency<<Self as Config>::AccountId>>::Balance>;
    type Accounting: Posting<Self::AccountId, Self::Hash, Self::BlockNumber, <<Self as Config>::Currency as Currency<<Self as Config>::AccountId>>::Balance>;
}
Expand description

Configuration trait of this pallet.

Implement this type for a runtime in order to customize this pallet.

Associated Types

Implementors