Skip to content

Commit 4b183de

Browse files
authored
Merge pull request #37 from curvefi/feat/enable-fetch-by-api
fix: fixed statsCapAndAvailable usage
2 parents d64af3c + e6dc29a commit 4b183de

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@curvefi/lending-api",
3-
"version": "2.3.1",
3+
"version": "2.3.2",
44
"description": "JavaScript library for Curve Lending",
55
"main": "lib/index.js",
66
"author": "Macket",

src/markets/OneWayMarketTemplate.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -650,8 +650,8 @@ export class OneWayMarketTemplate {
650650
return !('inflation_rate()' in gaugeContract || 'inflation_rate(uint256)' in gaugeContract);
651651
}
652652

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);
655655
const price = await _getUsdRate(this.addresses.borrowed_token);
656656

657657
return BN(cap).times(price).toFixed(6)
@@ -974,7 +974,7 @@ export class OneWayMarketTemplate {
974974
}
975975
}
976976

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}> {
978978
const _dReserves = parseUnits(dReserves, this.borrowed_token.decimals);
979979
const _dDebt = parseUnits(dDebt, this.borrowed_token.decimals);
980980
const _rate = await this._getFutureRate(_dReserves, _dDebt);
@@ -985,7 +985,7 @@ export class OneWayMarketTemplate {
985985
let lendApy = "0";
986986
const debt = Number(await this.statsTotalDebt()) + Number(dDebt);
987987
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);
989989
lendApr = toBN(_rate).times(365).times(86400).times(debt).div(cap).times(100).toString();
990990
// lendApy = (debt * e**(rate*365*86400) - debt) / cap
991991
const debtInAYearBN = BN(debt).times(2.718281828459 ** (toBN(_rate).times(365).times(86400)).toNumber());

0 commit comments

Comments
 (0)