changed interest rate vars OPTIMAL_RATE and MAX_RATE

This commit is contained in:
dd 2021-04-26 14:11:01 -04:00
parent 5496005868
commit 1de41048c9
1 changed files with 2 additions and 2 deletions

View File

@ -5,9 +5,9 @@ import BN from 'bn.js';
export const NUM_TOKENS = 3;
export const NUM_MARKETS = NUM_TOKENS - 1;
export const MANGO_GROUP_PADDING = 8 - (NUM_TOKENS + NUM_MARKETS) % 8;
export const MAX_RATE = 1.0
export const MAX_RATE = 3.0
export const OPTIMAL_UTIL = 0.7
export const OPTIMAL_RATE = 0.1
export const OPTIMAL_RATE = 0.2
class PublicKeyLayout extends Blob {
constructor(property) {