pub trait PaymentHandler<T>where
    T: Config,
{ fn create_payment(
        from: &<T as Config>::AccountId,
        to: &<T as Config>::AccountId,
        amount: <<T as Config>::Currency as Currency<<T as Config>::AccountId>>::Balance,
        payment_state: PaymentState<T>,
        incentive_percentage: Percent,
        remark: Option<&[u8]>
    ) -> Result<PaymentDetail<T>, DispatchError>; fn reserve_payment_amount(
        from: &<T as Config>::AccountId,
        to: &<T as Config>::AccountId,
        payment: PaymentDetail<T>
    ) -> Result<(), DispatchError>; fn settle_payment(
        from: &<T as Config>::AccountId,
        to: &<T as Config>::AccountId,
        recipient_share: Percent
    ) -> Result<(), DispatchError>; fn get_payment_details(
        from: &<T as Config>::AccountId,
        to: &<T as Config>::AccountId
    ) -> Option<PaymentDetail<T>>; }
Expand description

trait that defines how to create/release payments for users

Required Methods§

Create a PaymentDetail from the given payment details Calculate the fee amount and store PaymentDetail in storage Possible reasons for failure include:

  • Payment already exists and cannot be overwritten

Attempt to reserve the amount from the caller If not possible then return Error. Possible reasons for failure include:

  • User does not have enough balance.
  • The payment does not exist
  • The unreserve operation fails
  • The transfer operation fails

Attempt to fetch the details of a payment from the given payment_id Possible reasons for failure include:

  • The payment does not exist

Implementors§