From 0a2d269782ca2f700a22f24faa18d8581fc3a913 Mon Sep 17 00:00:00 2001 From: Yash094 <67926590+Yash094@users.noreply.github.com> Date: Thu, 6 Nov 2025 16:07:33 +0000 Subject: [PATCH] Dashboard: Update faucet amount for injective testnet (#8368) 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 `Injective testnet` in the `faucet.ts` file, indicating a change in the configuration for test networks. ### Detailed summary - Added a new entry for `Injective testnet` with a value of `1` in the configuration. - The existing entry for `Arc testnet` remains unchanged. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` ## Summary by CodeRabbit ## New Features * Added support for Injective testnet, enabling faucet claims on this network with customized claim amount configuration. --- 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 cdd73a7e987..23c44f6c647 100644 --- a/apps/dashboard/src/@/utils/faucet.ts +++ b/apps/dashboard/src/@/utils/faucet.ts @@ -7,6 +7,8 @@ const customClaimAmounts: Record = { 531050104: 5, // Arc testnet 5042002: 1, + // Injective testnet + 1439: 1, }; const defaultClaimAmount = 0.01;