@@ -650,8 +650,8 @@ export class OneWayMarketTemplate {
650
650
return ! ( 'inflation_rate()' in gaugeContract || 'inflation_rate(uint256)' in gaugeContract ) ;
651
651
}
652
652
653
- private async vaultTotalLiquidity ( ) : Promise < string > {
654
- const { cap } = await this . statsCapAndAvailable ( ) ;
653
+ private async vaultTotalLiquidity ( useAPI = true ) : Promise < string > {
654
+ const { cap } = await this . statsCapAndAvailable ( true , useAPI ) ;
655
655
const price = await _getUsdRate ( this . addresses . borrowed_token ) ;
656
656
657
657
return BN ( cap ) . times ( price ) . toFixed ( 6 )
@@ -974,7 +974,7 @@ export class OneWayMarketTemplate {
974
974
}
975
975
}
976
976
977
- private async statsFutureRates ( dReserves : TAmount , dDebt : TAmount ) : Promise < { borrowApr : string , lendApr : string , borrowApy : string , lendApy : string } > {
977
+ private async statsFutureRates ( dReserves : TAmount , dDebt : TAmount , useAPI = true ) : Promise < { borrowApr : string , lendApr : string , borrowApy : string , lendApy : string } > {
978
978
const _dReserves = parseUnits ( dReserves , this . borrowed_token . decimals ) ;
979
979
const _dDebt = parseUnits ( dDebt , this . borrowed_token . decimals ) ;
980
980
const _rate = await this . _getFutureRate ( _dReserves , _dDebt ) ;
@@ -985,7 +985,7 @@ export class OneWayMarketTemplate {
985
985
let lendApy = "0" ;
986
986
const debt = Number ( await this . statsTotalDebt ( ) ) + Number ( dDebt ) ;
987
987
if ( Number ( debt ) > 0 ) {
988
- const cap = Number ( ( await this . statsCapAndAvailable ( ) ) . cap ) + Number ( dReserves ) ;
988
+ const cap = Number ( ( await this . statsCapAndAvailable ( true , useAPI ) ) . cap ) + Number ( dReserves ) ;
989
989
lendApr = toBN ( _rate ) . times ( 365 ) . times ( 86400 ) . times ( debt ) . div ( cap ) . times ( 100 ) . toString ( ) ;
990
990
// lendApy = (debt * e**(rate*365*86400) - debt) / cap
991
991
const debtInAYearBN = BN ( debt ) . times ( 2.718281828459 ** ( toBN ( _rate ) . times ( 365 ) . times ( 86400 ) ) . toNumber ( ) ) ;
0 commit comments