From eaaac0f26bb035283c09468ffab7744d4ae36d20 Mon Sep 17 00:00:00 2001 From: Daniel Schiavini Date: Wed, 25 Sep 2024 17:23:43 +0200 Subject: [PATCH 1/2] maxAge fix --- src/router.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/router.ts b/src/router.ts index 1ab41a5a..900bf9e2 100644 --- a/src/router.ts +++ b/src/router.ts @@ -67,7 +67,7 @@ const _buildRouteGraph = memoize(async (): Promise>> = }, { promise: true, - maxAge: 5 * 1000, // 5m + maxAge: 5 * 60 * 1000, // 5m }); const _findRoutes = async (inputCoinAddress: string, outputCoinAddress: string): Promise => { From 2ed3670150cf0133cbb7a0f8fff9309b47ce47a9 Mon Sep 17 00:00:00 2001 From: Daniel Schiavini Date: Fri, 27 Sep 2024 14:59:35 +0200 Subject: [PATCH 2/2] build: v2.63.6 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index bf9fc5fc..2aa3c577 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@curvefi/api", - "version": "2.63.5", + "version": "2.63.6", "description": "JavaScript library for curve.fi", "main": "lib/index.js", "author": "Macket",