From ee55d33e6a80b3ac569280ddf66dda9eddb52891 Mon Sep 17 00:00:00 2001 From: junderw Date: Sun, 31 May 2026 10:22:05 +0900 Subject: [PATCH] Deprecation warning to esplora fees --- backend/src/api/bitcoin/bitcoin.routes.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/src/api/bitcoin/bitcoin.routes.ts b/backend/src/api/bitcoin/bitcoin.routes.ts index c0fe41b7e..050af99fd 100644 --- a/backend/src/api/bitcoin/bitcoin.routes.ts +++ b/backend/src/api/bitcoin/bitcoin.routes.ts @@ -144,6 +144,7 @@ class BitcoinRoutes { const result = feeApi.getPreciseRecommendedFee(); res.json({ + 'warning': 'This endpoint is deprecated and will be removed in a future release. Please use /api/v1/fees/precise instead.', '1': result.fastestFee, '2': result.fastestFee, '3': result.halfHourFee,