@cfxlabsinc/b2b-services
    Preparing search index...
    Index
    • Parameters

      • args: {
            achBatchService: AchBatchService;
            customerQueryService: CustomerQueryService;
            depositAdminService: DepositAdminService;
            depositQuoteService: DepositQuoteService;
            entityService: EntityService;
            paymentInstrumentQueryService: PaymentInstrumentQueryService;
            productQuoteService: ProductQuoteService;
            routeFusionClient: RouteFusionClient;
            taskQueue: string;
            temporalClient: Client;
            victorAccountQueryService: VictorAccountQueryService;
            virtualAccountQueryService: VirtualAccountQueryService;
        }

      Returns AchDebitDepositQuoteService

    • Parameters

      • args: {
            customerId: string;
            entityId: string;
            idempotencyKey?: string;
            reference: string;
            sourceAmount: BigNumber;
            sourceCurrency: string;
            sourcePaymentInstrumentId: string;
            speed?: "same-day" | "next-day";
            targetCurrency: "MOVEUSD";
            walletAddress: Address;
            walletBlockchain: "SOLANA";
        }
        • customerId: string
        • entityId: string
        • OptionalidempotencyKey?: string

          Caller-supplied idempotency key (from the API Idempotency-Key header). Threaded into productQuoteService.quote() (dedupes the pinned engine quote) and depositQuoteService.create() (dedupes the deposit quote). Optional — internal callers don't supply one.

        • reference: string
        • sourceAmount: BigNumber
        • sourceCurrency: string
        • sourcePaymentInstrumentId: string
        • Optionalspeed?: "same-day" | "next-day"
        • targetCurrency: "MOVEUSD"
        • walletAddress: Address
        • walletBlockchain: "SOLANA"

      Returns Promise<
          | { ok: true; value: DepositQuote
          | null }
          | { error: ServiceError<string, object>; ok: false },
      >