Skip to content

Commit

Permalink
set default rate to 8% (#722)
Browse files Browse the repository at this point in the history
updating the default interest rate to 8% to better reflect current market connections
  • Loading branch information
ColinPlatt authored Jan 20, 2025
1 parent 02b87af commit f591ee5
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 = 4;
export const INTEREST_RATE_DEFAULT = 8;
export const INTEREST_RATE_INCREMENT = 0.1;

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

0 comments on commit f591ee5

Please sign in to comment.