From 3d235e218a9ef90dc775e95fbb1b66c332a2ca7b Mon Sep 17 00:00:00 2001 From: MananTank Date: Tue, 28 Oct 2025 17:53:36 +0000 Subject: [PATCH] Dashboard: Update faucet amount for arc testnet (#8326) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ## PR-Codex overview This PR adds a new entry for the `Arc testnet` in the `faucet.ts` file, enhancing the functionality to support an additional test network alongside the existing `Sophon testnet`. ### Detailed summary - Added a comment for `Arc testnet`. - Introduced a new entry `5042002: 1` for the `Arc testnet`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` ## Summary by CodeRabbit - **New Features** - Introduced faucet support for the Arc testnet, allowing users connected to this network to claim test funds. - The claim amount on Arc is set to 1, ensuring consistent and predictable claims on that network. - Existing networks and the default claim behavior remain unchanged, preserving current user flows while expanding testnet coverage. --- apps/dashboard/src/@/utils/faucet.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/dashboard/src/@/utils/faucet.ts b/apps/dashboard/src/@/utils/faucet.ts index 45675851046..cdd73a7e987 100644 --- a/apps/dashboard/src/@/utils/faucet.ts +++ b/apps/dashboard/src/@/utils/faucet.ts @@ -5,6 +5,8 @@ const customClaimAmounts: Record = { 631571: 0.1, // Sophon testnet 531050104: 5, + // Arc testnet + 5042002: 1, }; const defaultClaimAmount = 0.01;