Skip to content

Commit 0a2d269

Browse files
committed
Dashboard: Update faucet amount for injective testnet (#8368)
<!-- ## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes" If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000): ## Notes for the reviewer Anything important to call out? Be sure to also clarify these in your comments. ## How to test Unit tests, playground, etc. --> <!-- start pr-codex --> --- ## 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}` <!-- end pr-codex --> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit ## New Features * Added support for Injective testnet, enabling faucet claims on this network with customized claim amount configuration. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 3d996d1 commit 0a2d269

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

apps/dashboard/src/@/utils/faucet.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ const customClaimAmounts: Record<number, number> = {
77
531050104: 5,
88
// Arc testnet
99
5042002: 1,
10+
// Injective testnet
11+
1439: 1,
1012
};
1113

1214
const defaultClaimAmount = 0.01;

0 commit comments

Comments
 (0)