pub trait PaymentHandler<T: Config> {
    fn create_payment(
        from: &T::AccountId,
        to: &T::AccountId,
        amount: BalanceOf<T>,
        payment_state: PaymentState<T>,
        incentive_percentage: Percent,
        remark: Option<&[u8]>
    ) -> Result<PaymentDetail<T>, DispatchError>; fn reserve_payment_amount(
        from: &T::AccountId,
        to: &T::AccountId,
        payment: PaymentDetail<T>
    ) -> DispatchResult; fn settle_payment(
        from: &T::AccountId,
        to: &T::AccountId,
        recipient_share: Percent
    ) -> DispatchResult; fn get_payment_details(
        from: &T::AccountId,
        to: &T::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§