@cashlab/common
    Preparing search index...

    Type Alias PayoutFixedAmountRule

    PayoutFixedAmountRule: PayoutRuleCommon & {
        amount: bigint | FixedPayoutRuleApplyMinAmountType;
        token?: { amount: bigint; token_id: string };
        type: FIXED;
    }

    Type declaration

    • amount: bigint | FixedPayoutRuleApplyMinAmountType

      A fixed bch amount or a min amount

    • Optionaltoken?: { amount: bigint; token_id: string }
      • amount: bigint

        A fixed token amount

      • token_id: string

        The subject token id (category)

    • type: FIXED