From 33873257faecea9a29df8ab8b26f2bb4abf9cffb Mon Sep 17 00:00:00 2001 From: Jon Tzeng Date: Tue, 20 Jan 2026 14:55:19 -0800 Subject: [PATCH] Enable Infinite buy support --- CHANGELOG.md | 3 ++- src/plugins/ramps/rampConstraints.ts | 5 ----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee5c84566e8..fa747944292 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,11 +6,12 @@ - added: Pass OS and app version details to core context for v2/coreRollup endpoint - added: EdgeSpend feature for gift card purchase via Phaze - changed: Append chain names to token codes in RampCreateScene +- changed: ramps: Infinite buy support enabled ## 4.42.0 (staging) - added: Zcash buy/sell support with Banxa -- changed: ramps: Infinite buy support according to new API (disabled temporarily) +- changed: ramps: Infinite buy support according to new API - changed: Optimize login performance. - changed: Update Monero LWS server name to "Edge LWS" - fixed: Light account/backup reminder notification banner sometimes missing on login diff --git a/src/plugins/ramps/rampConstraints.ts b/src/plugins/ramps/rampConstraints.ts index 4c2ed9a674b..37c76da714a 100644 --- a/src/plugins/ramps/rampConstraints.ts +++ b/src/plugins/ramps/rampConstraints.ts @@ -107,9 +107,4 @@ export function* constraintGenerator( if (params.rampPluginId === 'banxa') { yield params.paymentType !== 'ach' } - - if (params.rampPluginId === 'infinite') { - // Disable Infinite completely - yield false - } }