Skip to content

Commit

Permalink
Move default rate to 10% constants.ts (#735)
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinPlatt authored Jan 21, 2025
1 parent 204a3de commit bebe47b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/app/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const MAX_ANNUAL_INTEREST_RATE = dn.from(2.5, 18); // 250% see contracts/

export const INTEREST_RATE_MIN = 0.5; // 0.5% annualized
export const INTEREST_RATE_MAX = 25; // 25% annualized
export const INTEREST_RATE_DEFAULT = 8;
export const INTEREST_RATE_DEFAULT = 10;
export const INTEREST_RATE_INCREMENT = 0.1;

export const ONE_DAY_IN_SECONDS = 24n * 60n * 60n;
Expand Down

0 comments on commit bebe47b

Please sign in to comment.