From 243c661929257cb640b40a8522f35c0444fb757d Mon Sep 17 00:00:00 2001 From: kumaryash90 Date: Wed, 21 May 2025 16:07:00 +0000 Subject: [PATCH] Update deploy config (#7111) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ## PR-Codex overview This PR focuses on updating the value of `DEFAULT_FEE_BPS_NEW` in the `addresses.ts` file to reflect a new default fee setting. ### Detailed summary - Updated the value of `DEFAULT_FEE_BPS_NEW` from `150` to `200` in `apps/dashboard/src/constants/addresses.ts`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` ## Summary by CodeRabbit - **Chores** - Updated the default fee value from 150 to 200. --- apps/dashboard/src/constants/addresses.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dashboard/src/constants/addresses.ts b/apps/dashboard/src/constants/addresses.ts index 42b94a80456..a110deea2ca 100644 --- a/apps/dashboard/src/constants/addresses.ts +++ b/apps/dashboard/src/constants/addresses.ts @@ -8,4 +8,4 @@ export const DEFAULT_FEE_RECIPIENT = "0x1af20c6b23373350ad464700b5965ce4b0d2ad94"; export const DEFAULT_FEE_BPS = 250; -export const DEFAULT_FEE_BPS_NEW = 150; +export const DEFAULT_FEE_BPS_NEW = 200;