@curvefi/llamalend-api 2.0.7 → 2.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/utils.ts CHANGED
@@ -288,7 +288,7 @@ export const _getUsdRate = async function (this: Llamalend, assetId: string): Pr
288
288
  const pricesFromApi = await _getUsdPricesFromApi(this.constants.NETWORK_NAME);
289
289
  if (assetId.toLowerCase() in pricesFromApi) return pricesFromApi[assetId.toLowerCase()];
290
290
 
291
- if (assetId === 'USD' || (assetId.toLowerCase() === this.constants.COINS.am3crv.toLowerCase())) return 1
291
+ if (assetId === 'USD') return 1
292
292
 
293
293
  const chainName = {
294
294
  1: 'ethereum',