From 9dd757bb585346f0627b72a6755b055f6a5f36b3 Mon Sep 17 00:00:00 2001 From: Marcel Ebert Date: Sun, 25 Jan 2026 15:43:45 +0000 Subject: [PATCH] Increase BUY limit to 13000 units --- apps/api/src/api/services/quote/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/api/src/api/services/quote/index.ts b/apps/api/src/api/services/quote/index.ts index 82c08be7a..b3c324ec9 100644 --- a/apps/api/src/api/services/quote/index.ts +++ b/apps/api/src/api/services/quote/index.ts @@ -197,8 +197,8 @@ export class QuoteService extends BaseRampService { throw new APIError({ message: QuoteError.FailedToCalculateQuote, status: httpStatus.INTERNAL_SERVER_ERROR }); } - // Temporary safeguard: Reject on-ramp quotes with output amount > 5000 units - if (ctx.isOnRamp && new Big(ctx.builtResponse.outputAmount).gt(8000)) { + // Temporary safeguard: Reject on-ramp quotes with output amount > 13000 units + if (ctx.isOnRamp && new Big(ctx.builtResponse.outputAmount).gt(13000)) { // Try to delete created quote as it shouldn't be used const quoteId = ctx.builtResponse.id; QuoteTicket.findByPk(quoteId).then(quoteTicket => {