From 965f426817d614f08663882c1802b249cac8a7fa Mon Sep 17 00:00:00 2001 From: "James Morris, MS" <96435344+james-a-morris@users.noreply.github.com> Date: Wed, 11 Oct 2023 16:03:29 +0000 Subject: [PATCH] improve: align to new parameters --- api/_constants.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api/_constants.ts b/api/_constants.ts index 0cbe9f37e..e85dc7c0d 100644 --- a/api/_constants.ts +++ b/api/_constants.ts @@ -35,19 +35,19 @@ const defaultRelayerFeeCapitalCostConfig: { }, DAI: { lowerBound: ethers.utils.parseUnits("0.0001").toString(), - upperBound: ethers.utils.parseUnits("0.00075").toString(), + upperBound: ethers.utils.parseUnits("0.0004").toString(), cutoff: ethers.utils.parseUnits("1500000").toString(), decimals: 18, }, USDC: { lowerBound: ethers.utils.parseUnits("0.0001").toString(), - upperBound: ethers.utils.parseUnits("0.00075").toString(), + upperBound: ethers.utils.parseUnits("0.0004").toString(), cutoff: ethers.utils.parseUnits("1500000").toString(), decimals: 6, }, USDT: { lowerBound: ethers.utils.parseUnits("0.0001").toString(), - upperBound: ethers.utils.parseUnits("0.00075").toString(), + upperBound: ethers.utils.parseUnits("0.0004").toString(), cutoff: ethers.utils.parseUnits("1500000").toString(), decimals: 6, },