@cfxlabsinc/b2b-services
    Preparing search index...

    Hierarchy

    • AchCreditWithdrawalQuoteQueryService
      • AchCreditWithdrawalQuoteService
    Index

    Constructors

    Methods

    Constructors

    Methods

    • Parameters

      • args: Pick<
            AchCreditWithdrawalQuote,
            "deviceIpAddress"
            | "deviceLocation"
            | "entityId",
        > & {
            customerId: string;
            speed?: "same-day" | "next-day";
            targetAchPaymentInstrument: string;
        } & (
            ({ sourceAccountId: string; } | { sourceWalletAddress: string; }) & ({ sourceAmount: BigNumber; } | { targetAmount: BigNumber; })
        )

      Returns Promise<
          | { ok: true; value: AchCreditWithdrawalQuote }
          | {
              error:
                  | ServiceError<"LIMIT_EXCEEDED", ProductLimitViolation>
                  | ServiceError<
                      "PRODUCT_BLOCKED"
                      | "PRODUCT_INACTIVE"
                      | "NO_ELIGIBLE_ROUTE",
                  >
                  | ServiceError<"ENTITY_NOT_FOUND" | "ENTITY_CANNOT_TRANSACT">
                  | ServiceError<QuoteInvariantViolation>
                  | ServiceError<
                      "INSUFFICIENT_FUNDS",
                      { balance: { amount: BigNumber; currency: string } },
                  >
                  | ServiceError<"SPEED_NOT_SUPPORTED">;
              ok: false;
          },
      >